Skip to content

Commit

Permalink
Merge pull request #296 from pmienk/version3
Browse files Browse the repository at this point in the history
Regenerate with updated version to 3.8.0.
  • Loading branch information
pmienk committed Aug 18, 2023
2 parents d42bfbc + 3d14364 commit 227a5b5
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
6 changes: 3 additions & 3 deletions builds/cmake/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 ()

Expand Down Expand Up @@ -165,11 +165,11 @@ 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 )

# Find bitcoin-protocol
#------------------------------------------------------------------------------
find_package( Bitcoin-Protocol 3.7.0 REQUIRED )
find_package( Bitcoin-Protocol 3.8.0 REQUIRED )

# Define project common includes directories
#------------------------------------------------------------------------------
Expand Down
26 changes: 13 additions & 13 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-client], [3.7.0], [[email protected]])
AC_INIT([libbitcoin-client], [3.8.0], [[email protected]])

# Do compilation tests.
AC_LANG(C++)
Expand Down Expand Up @@ -258,13 +258,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}"])],
Expand All @@ -281,13 +281,13 @@ AS_CASE([${enable_isystem}],[yes],

AC_MSG_NOTICE([bitcoin_system_BUILD_CPPFLAGS : ${bitcoin_system_BUILD_CPPFLAGS}])

# Require bitcoin-protocol of at least version 3.7.0 and output ${bitcoin_protocol_CPPFLAGS/LIBS/PKG}.
# Require bitcoin-protocol of at least version 3.8.0 and output ${bitcoin_protocol_CPPFLAGS/LIBS/PKG}.
#------------------------------------------------------------------------------
PKG_CHECK_MODULES([bitcoin_protocol], [libbitcoin-protocol >= 3.7.0],
[bitcoin_protocol_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libbitcoin-protocol >= 3.7.0" 2>/dev/null`"
bitcoin_protocol_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libbitcoin-protocol >= 3.7.0" 2>/dev/null`"],
[AC_MSG_ERROR([libbitcoin-protocol >= 3.7.0 is required but was not found.])])
AC_SUBST([bitcoin_protocol_PKG], ['libbitcoin-protocol >= 3.7.0'])
PKG_CHECK_MODULES([bitcoin_protocol], [libbitcoin-protocol >= 3.8.0],
[bitcoin_protocol_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libbitcoin-protocol >= 3.8.0" 2>/dev/null`"
bitcoin_protocol_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libbitcoin-protocol >= 3.8.0" 2>/dev/null`"],
[AC_MSG_ERROR([libbitcoin-protocol >= 3.8.0 is required but was not found.])])
AC_SUBST([bitcoin_protocol_PKG], ['libbitcoin-protocol >= 3.8.0'])
AC_SUBST([bitcoin_protocol_CPPFLAGS], [${bitcoin_protocol_CFLAGS}])
AS_IF([test x${bitcoin_protocol_INCLUDEDIR} != "x"],
[AC_SUBST([bitcoin_protocol_ISYS_CPPFLAGS], ["-isystem${bitcoin_protocol_INCLUDEDIR} ${bitcoin_protocol_OTHER_CFLAGS}"])],
Expand Down
4 changes: 2 additions & 2 deletions include/bitcoin/client/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_CLIENT_VERSION "3.7.0"
#define LIBBITCOIN_CLIENT_VERSION "3.8.0"
#define LIBBITCOIN_CLIENT_MAJOR_VERSION 3
#define LIBBITCOIN_CLIENT_MINOR_VERSION 7
#define LIBBITCOIN_CLIENT_MINOR_VERSION 8
#define LIBBITCOIN_CLIENT_PATCH_VERSION 0

#endif
2 changes: 1 addition & 1 deletion libbitcoin-client.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-system >= 3.7.0 libbitcoin-protocol >= 3.7.0
Requires: libbitcoin-system >= 3.8.0 libbitcoin-protocol >= 3.8.0

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

0 comments on commit 227a5b5

Please sign in to comment.