From fe3ebef7dfa47eb3311be37795fa753fedb2246a Mon Sep 17 00:00:00 2001 From: Phillip Mienk Date: Thu, 17 Aug 2023 13:12:24 -0700 Subject: [PATCH] Regenerate with updated version to 3.8.0. --- builds/cmake/CMakeLists.txt | 4 ++-- configure.ac | 14 +++++++------- include/bitcoin/network/version.hpp | 4 ++-- libbitcoin-network.pc.in | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/builds/cmake/CMakeLists.txt b/builds/cmake/CMakeLists.txt index 454faabb1..dd1e3d976 100644 --- a/builds/cmake/CMakeLists.txt +++ b/builds/cmake/CMakeLists.txt @@ -32,7 +32,7 @@ else () set( libdir "\${exec_prefix}/lib" ) set( includedir "\${exec_prefix}/include" ) - set( PACKAGE_VERSION "3.7.0" ) + set( PACKAGE_VERSION "3.8.0" ) set( VERSION "${PACKAGE_VERSION}" ) endif () @@ -161,7 +161,7 @@ set( boost_LDFLAGS "-L${Boost_LIBRARY_DIR}" ) # Find bitcoin-system #------------------------------------------------------------------------------ -find_package( Bitcoin-System 3.7.0 REQUIRED ) +find_package( Bitcoin-System 3.8.0 REQUIRED ) # Define project common includes directories #------------------------------------------------------------------------------ diff --git a/configure.ac b/configure.ac index e23f84a74..113bf7268 100644 --- a/configure.ac +++ b/configure.ac @@ -13,7 +13,7 @@ AC_PREREQ([2.65]) # Process command-line arguments and perform initialization and verification. -AC_INIT([libbitcoin-network], [3.7.0], [eric@voskuil.org]) +AC_INIT([libbitcoin-network], [3.8.0], [eric@voskuil.org]) # Do compilation tests. AC_LANG(C++) @@ -247,13 +247,13 @@ AS_CASE([${with_tests}], [yes], AC_MSG_NOTICE([boost_unit_test_framework_LIBS : ${boost_unit_test_framework_LIBS}])], [AC_SUBST([boost_unit_test_framework_LIBS], [])]) -# Require bitcoin-system of at least version 3.7.0 and output ${bitcoin_system_CPPFLAGS/LIBS/PKG}. +# Require bitcoin-system of at least version 3.8.0 and output ${bitcoin_system_CPPFLAGS/LIBS/PKG}. #------------------------------------------------------------------------------ -PKG_CHECK_MODULES([bitcoin_system], [libbitcoin-system >= 3.7.0], - [bitcoin_system_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libbitcoin-system >= 3.7.0" 2>/dev/null`" - bitcoin_system_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libbitcoin-system >= 3.7.0" 2>/dev/null`"], - [AC_MSG_ERROR([libbitcoin-system >= 3.7.0 is required but was not found.])]) -AC_SUBST([bitcoin_system_PKG], ['libbitcoin-system >= 3.7.0']) +PKG_CHECK_MODULES([bitcoin_system], [libbitcoin-system >= 3.8.0], + [bitcoin_system_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libbitcoin-system >= 3.8.0" 2>/dev/null`" + bitcoin_system_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libbitcoin-system >= 3.8.0" 2>/dev/null`"], + [AC_MSG_ERROR([libbitcoin-system >= 3.8.0 is required but was not found.])]) +AC_SUBST([bitcoin_system_PKG], ['libbitcoin-system >= 3.8.0']) AC_SUBST([bitcoin_system_CPPFLAGS], [${bitcoin_system_CFLAGS}]) AS_IF([test x${bitcoin_system_INCLUDEDIR} != "x"], [AC_SUBST([bitcoin_system_ISYS_CPPFLAGS], ["-isystem${bitcoin_system_INCLUDEDIR} ${bitcoin_system_OTHER_CFLAGS}"])], diff --git a/include/bitcoin/network/version.hpp b/include/bitcoin/network/version.hpp index 0d95e9735..91c55bd62 100644 --- a/include/bitcoin/network/version.hpp +++ b/include/bitcoin/network/version.hpp @@ -12,9 +12,9 @@ * For interpretation of the versioning scheme see: http://semver.org */ -#define LIBBITCOIN_NETWORK_VERSION "3.7.0" +#define LIBBITCOIN_NETWORK_VERSION "3.8.0" #define LIBBITCOIN_NETWORK_MAJOR_VERSION 3 -#define LIBBITCOIN_NETWORK_MINOR_VERSION 7 +#define LIBBITCOIN_NETWORK_MINOR_VERSION 8 #define LIBBITCOIN_NETWORK_PATCH_VERSION 0 #endif diff --git a/libbitcoin-network.pc.in b/libbitcoin-network.pc.in index 435b96b0b..9364d3321 100644 --- a/libbitcoin-network.pc.in +++ b/libbitcoin-network.pc.in @@ -25,7 +25,7 @@ Version: @PACKAGE_VERSION@ #============================================================================== # Dependencies that publish package configuration. #------------------------------------------------------------------------------ -Requires: libbitcoin-system >= 3.7.0 +Requires: libbitcoin-system >= 3.8.0 # Include directory and any other required compiler flags. #------------------------------------------------------------------------------