From f3bfb67aabf7c48685aa7bc4039708db6784f27b Mon Sep 17 00:00:00 2001 From: evoskuil Date: Thu, 14 Jan 2016 15:02:58 -0800 Subject: [PATCH] Update version to 2.3.0. --- configure.ac | 8 ++++---- include/bitcoin/server/version.hpp | 4 ++-- libbitcoin-server.pc.in | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index b6b96ae6..4984b60a 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ AC_PREREQ([2.65]) # Process command-line arguments and perform initialization and verification. -AC_INIT([libbitcoin-server], [2.2.0], [genjix@riseup.net]) +AC_INIT([libbitcoin-server], [2.3.0], [genjix@riseup.net]) # Do compilation tests. AC_LANG(C++) @@ -182,10 +182,10 @@ AC_SUBST([czmq___CPPFLAGS], [${czmq___CFLAGS}]) AC_MSG_NOTICE([czmq___CPPFLAGS : ${czmq___CPPFLAGS}]) AC_MSG_NOTICE([czmq___LIBS : ${czmq___LIBS}]) -# Require bitcoin-node of at least version 2.2.0 and output ${bitcoin_node_CPPFLAGS/LIBS/PKG}. +# Require bitcoin-node of at least version 2.3.0 and output ${bitcoin_node_CPPFLAGS/LIBS/PKG}. #------------------------------------------------------------------------------ -PKG_CHECK_MODULES([bitcoin_node], [libbitcoin-node >= 2.2.0]) -AC_SUBST([bitcoin_node_PKG], ['libbitcoin-node >= 2.2.0']) +PKG_CHECK_MODULES([bitcoin_node], [libbitcoin-node >= 2.3.0]) +AC_SUBST([bitcoin_node_PKG], ['libbitcoin-node >= 2.3.0']) AC_SUBST([bitcoin_node_CPPFLAGS], [${bitcoin_node_CFLAGS}]) AC_MSG_NOTICE([bitcoin_node_CPPFLAGS : ${bitcoin_node_CPPFLAGS}]) AC_MSG_NOTICE([bitcoin_node_LIBS : ${bitcoin_node_LIBS}]) diff --git a/include/bitcoin/server/version.hpp b/include/bitcoin/server/version.hpp index b3f64cc2..44a1dcfb 100644 --- a/include/bitcoin/server/version.hpp +++ b/include/bitcoin/server/version.hpp @@ -12,9 +12,9 @@ * For interpretation of the versioning scheme see: http://semver.org */ -#define LIBBITCOIN_SERVER_VERSION "2.2.0" +#define LIBBITCOIN_SERVER_VERSION "2.3.0" #define LIBBITCOIN_SERVER_MAJOR_VERSION 2 -#define LIBBITCOIN_SERVER_MINOR_VERSION 2 +#define LIBBITCOIN_SERVER_MINOR_VERSION 3 #define LIBBITCOIN_SERVER_PATCH_VERSION 0 #endif diff --git a/libbitcoin-server.pc.in b/libbitcoin-server.pc.in index 97a5f82d..e01d8339 100644 --- a/libbitcoin-server.pc.in +++ b/libbitcoin-server.pc.in @@ -25,7 +25,7 @@ Version: @PACKAGE_VERSION@ #============================================================================== # Dependencies that publish package configuration. #------------------------------------------------------------------------------ -Requires: libbitcoin-node >= 2.2.0 libsodium >= 1.0.0 libczmq++ >= 1.1.0 +Requires: libbitcoin-node >= 2.3.0 libsodium >= 1.0.0 libczmq++ >= 1.1.0 # Include directory and any other required compiler flags. #------------------------------------------------------------------------------