Skip to content

Commit

Permalink
Bump version to v3.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoskuil committed May 1, 2017
1 parent 78f9579 commit 63e44b6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Binary file modified builds/msvc/resource.rc
Binary file not shown.
8 changes: 4 additions & 4 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
AC_PREREQ([2.65])

# Process command-line arguments and perform initialization and verification.
AC_INIT([libbitcoin-explorer], [3.1.0], [eric@voskuil.org])
AC_INIT([libbitcoin-explorer], [3.2.0], [eric@voskuil.org])

# Do compilation tests.
AC_LANG(C++)
Expand Down Expand Up @@ -165,10 +165,10 @@ AC_SUBST([bitcoin_client_CPPFLAGS], [${bitcoin_client_CFLAGS}])
AC_MSG_NOTICE([bitcoin_client_CPPFLAGS : ${bitcoin_client_CPPFLAGS}])
AC_MSG_NOTICE([bitcoin_client_LIBS : ${bitcoin_client_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}])
Expand Down
4 changes: 2 additions & 2 deletions include/bitcoin/explorer/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
* For interpretation of the versioning scheme see: http://semver.org
*/

#define LIBBITCOIN_EXPLORER_VERSION "3.1.0"
#define LIBBITCOIN_EXPLORER_VERSION "3.2.0"
#define LIBBITCOIN_EXPLORER_MAJOR_VERSION 3
#define LIBBITCOIN_EXPLORER_MINOR_VERSION 1
#define LIBBITCOIN_EXPLORER_MINOR_VERSION 2
#define LIBBITCOIN_EXPLORER_PATCH_VERSION 0

#endif
2 changes: 1 addition & 1 deletion libbitcoin-explorer.pc.in
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Version: @PACKAGE_VERSION@
#==============================================================================
# Dependencies that publish package configuration.
#------------------------------------------------------------------------------
Requires: libbitcoin-client >= 3.1.0 libbitcoin-network >= 3.1.0
Requires: libbitcoin-client >= 3.1.0 libbitcoin-network >= 3.2.0

# Include directory and any other required compiler flags.
#------------------------------------------------------------------------------
Expand Down

0 comments on commit 63e44b6

Please sign in to comment.