Skip to content

Commit

Permalink
Bump master branch from v3.0.0 to v4.0.0 and build consensus from mas…
Browse files Browse the repository at this point in the history
…ter.
  • Loading branch information
evoskuil committed Feb 9, 2017
1 parent 0d3241d commit f3e0315
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions build.cmd
Expand Up @@ -25,9 +25,9 @@ IF %ERRORLEVEL% NEQ 0 (
call :failure "Initializing repository libbitcoin libbitcoin master failed."
exit /b 1
)
call :init libbitcoin libbitcoin-consensus version2
call :init libbitcoin libbitcoin-consensus master
IF %ERRORLEVEL% NEQ 0 (
call :failure "Initializing repository libbitcoin libbitcoin-consensus version2 failed."
call :failure "Initializing repository libbitcoin libbitcoin-consensus master failed."
exit /b 1
)
call :init libbitcoin libbitcoin-database master
Expand Down
14 changes: 7 additions & 7 deletions configure.ac
Expand Up @@ -13,7 +13,7 @@
AC_PREREQ([2.65])

# Process command-line arguments and perform initialization and verification.
AC_INIT([libbitcoin-server], [3.0.0], [eric@voskuil.org])
AC_INIT([libbitcoin-server], [4.0.0], [eric@voskuil.org])

# Do compilation tests.
AC_LANG(C++)
Expand Down Expand Up @@ -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-node of at least version 3.0.0 and output ${bitcoin_node_CPPFLAGS/LIBS/PKG}.
# Require bitcoin-node of at least version 4.0.0 and output ${bitcoin_node_CPPFLAGS/LIBS/PKG}.
#------------------------------------------------------------------------------
PKG_CHECK_MODULES([bitcoin_node], [libbitcoin-node >= 3.0.0])
AC_SUBST([bitcoin_node_PKG], ['libbitcoin-node >= 3.0.0'])
PKG_CHECK_MODULES([bitcoin_node], [libbitcoin-node >= 4.0.0])
AC_SUBST([bitcoin_node_PKG], ['libbitcoin-node >= 4.0.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}])

# Require bitcoin-protocol of at least version 3.0.0 and output ${bitcoin_protocol_CPPFLAGS/LIBS/PKG}.
# Require bitcoin-protocol of at least version 4.0.0 and output ${bitcoin_protocol_CPPFLAGS/LIBS/PKG}.
#------------------------------------------------------------------------------
PKG_CHECK_MODULES([bitcoin_protocol], [libbitcoin-protocol >= 3.0.0])
AC_SUBST([bitcoin_protocol_PKG], ['libbitcoin-protocol >= 3.0.0'])
PKG_CHECK_MODULES([bitcoin_protocol], [libbitcoin-protocol >= 4.0.0])
AC_SUBST([bitcoin_protocol_PKG], ['libbitcoin-protocol >= 4.0.0'])
AC_SUBST([bitcoin_protocol_CPPFLAGS], [${bitcoin_protocol_CFLAGS}])
AC_MSG_NOTICE([bitcoin_protocol_CPPFLAGS : ${bitcoin_protocol_CPPFLAGS}])
AC_MSG_NOTICE([bitcoin_protocol_LIBS : ${bitcoin_protocol_LIBS}])
Expand Down
4 changes: 2 additions & 2 deletions include/bitcoin/server/version.hpp
Expand Up @@ -12,8 +12,8 @@
* For interpretation of the versioning scheme see: http://semver.org
*/

#define LIBBITCOIN_SERVER_VERSION "3.0.0"
#define LIBBITCOIN_SERVER_MAJOR_VERSION 3
#define LIBBITCOIN_SERVER_VERSION "4.0.0"
#define LIBBITCOIN_SERVER_MAJOR_VERSION 4
#define LIBBITCOIN_SERVER_MINOR_VERSION 0
#define LIBBITCOIN_SERVER_PATCH_VERSION 0

Expand Down
2 changes: 1 addition & 1 deletion install.sh
Expand Up @@ -718,7 +718,7 @@ build_all()
build_from_github zeromq libzmq master $PARALLEL ${ZMQ_OPTIONS[@]} "$@"
build_from_github libbitcoin secp256k1 version4 $PARALLEL ${SECP256K1_OPTIONS[@]} "$@"
build_from_github libbitcoin libbitcoin master $PARALLEL ${BITCOIN_OPTIONS[@]} "$@"
build_from_github libbitcoin libbitcoin-consensus version2 $PARALLEL ${BITCOIN_CONSENSUS_OPTIONS[@]} "$@"
build_from_github libbitcoin libbitcoin-consensus master $PARALLEL ${BITCOIN_CONSENSUS_OPTIONS[@]} "$@"
build_from_github libbitcoin libbitcoin-database master $PARALLEL ${BITCOIN_DATABASE_OPTIONS[@]} "$@"
build_from_github libbitcoin libbitcoin-blockchain master $PARALLEL ${BITCOIN_BLOCKCHAIN_OPTIONS[@]} "$@"
build_from_github libbitcoin libbitcoin-network master $PARALLEL ${BITCOIN_NETWORK_OPTIONS[@]} "$@"
Expand Down
2 changes: 1 addition & 1 deletion libbitcoin-server.pc.in
Expand Up @@ -25,7 +25,7 @@ Version: @PACKAGE_VERSION@
#==============================================================================
# Dependencies that publish package configuration.
#------------------------------------------------------------------------------
Requires: libbitcoin-protocol >= 3.0.0 libbitcoin-node >= 3.0.0
Requires: libbitcoin-protocol >= 4.0.0 libbitcoin-node >= 4.0.0

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

0 comments on commit f3e0315

Please sign in to comment.