diff --git a/builds/msvc/resource.rc b/builds/msvc/resource.rc index 92314cad..f6f573e4 100644 Binary files a/builds/msvc/resource.rc and b/builds/msvc/resource.rc differ diff --git a/configure.ac b/configure.ac index 3e2dab6b..83ec3fbd 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-node], [3.1.0], [eric@voskuil.org]) +AC_INIT([libbitcoin-node], [3.2.0], [eric@voskuil.org]) # Do compilation tests. AC_LANG(C++) @@ -157,18 +157,18 @@ AS_CASE([${bash_completiondir}], [yes], AC_MSG_NOTICE([bash_completion_LIBS : ${bash_completion_LIBS}])], [AC_SUBST([bash_completion_PKG], [])]) -# Require bitcoin-blockchain of at least version 3.1.0 and output ${bitcoin_blockchain_CPPFLAGS/LIBS/PKG}. +# Require bitcoin-blockchain of at least version 3.2.0 and output ${bitcoin_blockchain_CPPFLAGS/LIBS/PKG}. #------------------------------------------------------------------------------ -PKG_CHECK_MODULES([bitcoin_blockchain], [libbitcoin-blockchain >= 3.1.0]) -AC_SUBST([bitcoin_blockchain_PKG], ['libbitcoin-blockchain >= 3.1.0']) +PKG_CHECK_MODULES([bitcoin_blockchain], [libbitcoin-blockchain >= 3.2.0]) +AC_SUBST([bitcoin_blockchain_PKG], ['libbitcoin-blockchain >= 3.2.0']) AC_SUBST([bitcoin_blockchain_CPPFLAGS], [${bitcoin_blockchain_CFLAGS}]) AC_MSG_NOTICE([bitcoin_blockchain_CPPFLAGS : ${bitcoin_blockchain_CPPFLAGS}]) AC_MSG_NOTICE([bitcoin_blockchain_LIBS : ${bitcoin_blockchain_LIBS}]) -# Require bitcoin-network of at least version 3.1.0 and output ${bitcoin_network_CPPFLAGS/LIBS/PKG}. +# Require bitcoin-network of at least version 3.2.0 and output ${bitcoin_network_CPPFLAGS/LIBS/PKG}. #------------------------------------------------------------------------------ -PKG_CHECK_MODULES([bitcoin_network], [libbitcoin-network >= 3.1.0]) -AC_SUBST([bitcoin_network_PKG], ['libbitcoin-network >= 3.1.0']) +PKG_CHECK_MODULES([bitcoin_network], [libbitcoin-network >= 3.2.0]) +AC_SUBST([bitcoin_network_PKG], ['libbitcoin-network >= 3.2.0']) AC_SUBST([bitcoin_network_CPPFLAGS], [${bitcoin_network_CFLAGS}]) AC_MSG_NOTICE([bitcoin_network_CPPFLAGS : ${bitcoin_network_CPPFLAGS}]) AC_MSG_NOTICE([bitcoin_network_LIBS : ${bitcoin_network_LIBS}]) diff --git a/include/bitcoin/node/version.hpp b/include/bitcoin/node/version.hpp index 630ea1d4..83bf8ee6 100644 --- a/include/bitcoin/node/version.hpp +++ b/include/bitcoin/node/version.hpp @@ -12,9 +12,9 @@ * For interpretation of the versioning scheme see: http://semver.org */ -#define LIBBITCOIN_NODE_VERSION "3.1.0" +#define LIBBITCOIN_NODE_VERSION "3.2.0" #define LIBBITCOIN_NODE_MAJOR_VERSION 3 -#define LIBBITCOIN_NODE_MINOR_VERSION 1 +#define LIBBITCOIN_NODE_MINOR_VERSION 2 #define LIBBITCOIN_NODE_PATCH_VERSION 0 #endif diff --git a/libbitcoin-node.pc.in b/libbitcoin-node.pc.in index 6466ef52..d0552840 100644 --- a/libbitcoin-node.pc.in +++ b/libbitcoin-node.pc.in @@ -25,7 +25,7 @@ Version: @PACKAGE_VERSION@ #============================================================================== # Dependencies that publish package configuration. #------------------------------------------------------------------------------ -Requires: libbitcoin-blockchain >= 3.1.0 libbitcoin-network >= 3.1.0 +Requires: libbitcoin-blockchain >= 3.2.0 libbitcoin-network >= 3.2.0 # Include directory and any other required compiler flags. #------------------------------------------------------------------------------