Skip to content

Commit 227a5b5

Browse files
authored
Merge pull request #296 from pmienk/version3
Regenerate with updated version to 3.8.0.
2 parents d42bfbc + 3d14364 commit 227a5b5

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

builds/cmake/CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ else ()
3232
set( libdir "\${exec_prefix}/lib" )
3333
set( includedir "\${exec_prefix}/include" )
3434

35-
set( PACKAGE_VERSION "3.7.0" )
35+
set( PACKAGE_VERSION "3.8.0" )
3636
set( VERSION "${PACKAGE_VERSION}" )
3737
endif ()
3838

@@ -165,11 +165,11 @@ set( boost_LDFLAGS "-L${Boost_LIBRARY_DIR}" )
165165

166166
# Find bitcoin-system
167167
#------------------------------------------------------------------------------
168-
find_package( Bitcoin-System 3.7.0 REQUIRED )
168+
find_package( Bitcoin-System 3.8.0 REQUIRED )
169169

170170
# Find bitcoin-protocol
171171
#------------------------------------------------------------------------------
172-
find_package( Bitcoin-Protocol 3.7.0 REQUIRED )
172+
find_package( Bitcoin-Protocol 3.8.0 REQUIRED )
173173

174174
# Define project common includes directories
175175
#------------------------------------------------------------------------------

configure.ac

+13-13
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
AC_PREREQ([2.65])
1414

1515
# Process command-line arguments and perform initialization and verification.
16-
AC_INIT([libbitcoin-client], [3.7.0], [[email protected]])
16+
AC_INIT([libbitcoin-client], [3.8.0], [[email protected]])
1717

1818
# Do compilation tests.
1919
AC_LANG(C++)
@@ -258,13 +258,13 @@ AS_CASE([${with_tests}], [yes],
258258
AC_MSG_NOTICE([boost_unit_test_framework_LIBS : ${boost_unit_test_framework_LIBS}])],
259259
[AC_SUBST([boost_unit_test_framework_LIBS], [])])
260260

261-
# Require bitcoin-system of at least version 3.7.0 and output ${bitcoin_system_CPPFLAGS/LIBS/PKG}.
261+
# Require bitcoin-system of at least version 3.8.0 and output ${bitcoin_system_CPPFLAGS/LIBS/PKG}.
262262
#------------------------------------------------------------------------------
263-
PKG_CHECK_MODULES([bitcoin_system], [libbitcoin-system >= 3.7.0],
264-
[bitcoin_system_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libbitcoin-system >= 3.7.0" 2>/dev/null`"
265-
bitcoin_system_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libbitcoin-system >= 3.7.0" 2>/dev/null`"],
266-
[AC_MSG_ERROR([libbitcoin-system >= 3.7.0 is required but was not found.])])
267-
AC_SUBST([bitcoin_system_PKG], ['libbitcoin-system >= 3.7.0'])
263+
PKG_CHECK_MODULES([bitcoin_system], [libbitcoin-system >= 3.8.0],
264+
[bitcoin_system_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libbitcoin-system >= 3.8.0" 2>/dev/null`"
265+
bitcoin_system_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libbitcoin-system >= 3.8.0" 2>/dev/null`"],
266+
[AC_MSG_ERROR([libbitcoin-system >= 3.8.0 is required but was not found.])])
267+
AC_SUBST([bitcoin_system_PKG], ['libbitcoin-system >= 3.8.0'])
268268
AC_SUBST([bitcoin_system_CPPFLAGS], [${bitcoin_system_CFLAGS}])
269269
AS_IF([test x${bitcoin_system_INCLUDEDIR} != "x"],
270270
[AC_SUBST([bitcoin_system_ISYS_CPPFLAGS], ["-isystem${bitcoin_system_INCLUDEDIR} ${bitcoin_system_OTHER_CFLAGS}"])],
@@ -281,13 +281,13 @@ AS_CASE([${enable_isystem}],[yes],
281281

282282
AC_MSG_NOTICE([bitcoin_system_BUILD_CPPFLAGS : ${bitcoin_system_BUILD_CPPFLAGS}])
283283

284-
# Require bitcoin-protocol of at least version 3.7.0 and output ${bitcoin_protocol_CPPFLAGS/LIBS/PKG}.
284+
# Require bitcoin-protocol of at least version 3.8.0 and output ${bitcoin_protocol_CPPFLAGS/LIBS/PKG}.
285285
#------------------------------------------------------------------------------
286-
PKG_CHECK_MODULES([bitcoin_protocol], [libbitcoin-protocol >= 3.7.0],
287-
[bitcoin_protocol_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libbitcoin-protocol >= 3.7.0" 2>/dev/null`"
288-
bitcoin_protocol_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libbitcoin-protocol >= 3.7.0" 2>/dev/null`"],
289-
[AC_MSG_ERROR([libbitcoin-protocol >= 3.7.0 is required but was not found.])])
290-
AC_SUBST([bitcoin_protocol_PKG], ['libbitcoin-protocol >= 3.7.0'])
286+
PKG_CHECK_MODULES([bitcoin_protocol], [libbitcoin-protocol >= 3.8.0],
287+
[bitcoin_protocol_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libbitcoin-protocol >= 3.8.0" 2>/dev/null`"
288+
bitcoin_protocol_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libbitcoin-protocol >= 3.8.0" 2>/dev/null`"],
289+
[AC_MSG_ERROR([libbitcoin-protocol >= 3.8.0 is required but was not found.])])
290+
AC_SUBST([bitcoin_protocol_PKG], ['libbitcoin-protocol >= 3.8.0'])
291291
AC_SUBST([bitcoin_protocol_CPPFLAGS], [${bitcoin_protocol_CFLAGS}])
292292
AS_IF([test x${bitcoin_protocol_INCLUDEDIR} != "x"],
293293
[AC_SUBST([bitcoin_protocol_ISYS_CPPFLAGS], ["-isystem${bitcoin_protocol_INCLUDEDIR} ${bitcoin_protocol_OTHER_CFLAGS}"])],

include/bitcoin/client/version.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
* For interpretation of the versioning scheme see: http://semver.org
1313
*/
1414

15-
#define LIBBITCOIN_CLIENT_VERSION "3.7.0"
15+
#define LIBBITCOIN_CLIENT_VERSION "3.8.0"
1616
#define LIBBITCOIN_CLIENT_MAJOR_VERSION 3
17-
#define LIBBITCOIN_CLIENT_MINOR_VERSION 7
17+
#define LIBBITCOIN_CLIENT_MINOR_VERSION 8
1818
#define LIBBITCOIN_CLIENT_PATCH_VERSION 0
1919

2020
#endif

libbitcoin-client.pc.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Version: @PACKAGE_VERSION@
2525
#==============================================================================
2626
# Dependencies that publish package configuration.
2727
#------------------------------------------------------------------------------
28-
Requires: libbitcoin-system >= 3.7.0 libbitcoin-protocol >= 3.7.0
28+
Requires: libbitcoin-system >= 3.8.0 libbitcoin-protocol >= 3.8.0
2929

3030
# Include directory and any other required compiler flags.
3131
#------------------------------------------------------------------------------

0 commit comments

Comments
 (0)