Skip to content

Commit c28bd64

Browse files
Merge pull request #422 from thecodefactory/build-update
Regenerate build artifacts.
2 parents 3fb757a + 7df8d71 commit c28bd64

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY
55
#
66
###############################################################################
7-
version: 3.4.0.{build}-{branch}
7+
version: 3.6.0.{build}-{branch}
88

99
image: Visual Studio 2013
1010

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ matrix:
3535
sources:
3636
- sourceline: 'ppa:h-rayflood/llvm'
3737
packages:
38-
- clang-3.4
38+
- clang-5.0
3939
- os: linux
4040
compiler: gcc
4141
env: LINK=dynamic
@@ -71,7 +71,7 @@ install:
7171

7272
# Export CC/CXX to control compiler/version.
7373
- if [[ $OSX && $CLANG && $STATIC ]]; then export CC=clang; export CXX=clang++; fi
74-
- if [[ $LINUX && $CLANG && $STATIC ]]; then export CC=clang-3.4; export CXX=clang++-3.4; fi
74+
- if [[ $LINUX && $CLANG && $STATIC ]]; then export CC=clang-5.0; export CXX=clang++-5.0; fi
7575
- if [[ $LINUX && $GCC && $STATIC ]]; then export CC=gcc; export CXX=g++; fi
7676
- if [[ $OSX && $CLANG && $DYNAMIC ]]; then export CC=clang; export CXX=clang++; fi
7777
- if [[ $LINUX && $CLANG && $DYNAMIC ]]; then export CC=clang; export CXX=clang++; fi

configure.ac

Lines changed: 11 additions & 11 deletions
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-node], [3.4.0], [[email protected]])
16+
AC_INIT([libbitcoin-node], [3.6.0], [[email protected]])
1717

1818
# Do compilation tests.
1919
AC_LANG(C++)
@@ -197,14 +197,14 @@ AS_CASE([${enable_isystem}],[yes],
197197

198198
AC_MSG_NOTICE([bash_completion_BUILD_CPPFLAGS : ${bash_completion_BUILD_CPPFLAGS}])
199199

200-
# Require bitcoin-blockchain of at least version 3.4.0 and output ${bitcoin_blockchain_CPPFLAGS/LIBS/PKG}.
200+
# Require bitcoin-blockchain of at least version 3.6.0 and output ${bitcoin_blockchain_CPPFLAGS/LIBS/PKG}.
201201
#------------------------------------------------------------------------------
202-
PKG_CHECK_MODULES([bitcoin_blockchain], [libbitcoin-blockchain >= 3.4.0],
203-
[bitcoin_blockchain_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libbitcoin-blockchain >= 3.4.0" 2>/dev/null`"
204-
bitcoin_blockchain_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libbitcoin-blockchain >= 3.4.0" 2>/dev/null`"],
202+
PKG_CHECK_MODULES([bitcoin_blockchain], [libbitcoin-blockchain >= 3.6.0],
203+
[bitcoin_blockchain_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libbitcoin-blockchain >= 3.6.0" 2>/dev/null`"
204+
bitcoin_blockchain_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libbitcoin-blockchain >= 3.6.0" 2>/dev/null`"],
205205
[bitcoin_blockchain_INCLUDEDIR=""
206206
bitcoin_blockchain_OTHER_CFLAGS=""])
207-
AC_SUBST([bitcoin_blockchain_PKG], ['libbitcoin-blockchain >= 3.4.0'])
207+
AC_SUBST([bitcoin_blockchain_PKG], ['libbitcoin-blockchain >= 3.6.0'])
208208
AC_SUBST([bitcoin_blockchain_CPPFLAGS], [${bitcoin_blockchain_CFLAGS}])
209209
AS_IF([test x${bitcoin_blockchain_INCLUDEDIR} != "x"],
210210
[AC_SUBST([bitcoin_blockchain_ISYS_CPPFLAGS], ["-isystem${bitcoin_blockchain_INCLUDEDIR} ${bitcoin_blockchain_OTHER_CFLAGS}"])],
@@ -221,14 +221,14 @@ AS_CASE([${enable_isystem}],[yes],
221221

222222
AC_MSG_NOTICE([bitcoin_blockchain_BUILD_CPPFLAGS : ${bitcoin_blockchain_BUILD_CPPFLAGS}])
223223

224-
# Require bitcoin-network of at least version 3.4.0 and output ${bitcoin_network_CPPFLAGS/LIBS/PKG}.
224+
# Require bitcoin-network of at least version 3.6.0 and output ${bitcoin_network_CPPFLAGS/LIBS/PKG}.
225225
#------------------------------------------------------------------------------
226-
PKG_CHECK_MODULES([bitcoin_network], [libbitcoin-network >= 3.4.0],
227-
[bitcoin_network_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libbitcoin-network >= 3.4.0" 2>/dev/null`"
228-
bitcoin_network_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libbitcoin-network >= 3.4.0" 2>/dev/null`"],
226+
PKG_CHECK_MODULES([bitcoin_network], [libbitcoin-network >= 3.6.0],
227+
[bitcoin_network_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libbitcoin-network >= 3.6.0" 2>/dev/null`"
228+
bitcoin_network_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libbitcoin-network >= 3.6.0" 2>/dev/null`"],
229229
[bitcoin_network_INCLUDEDIR=""
230230
bitcoin_network_OTHER_CFLAGS=""])
231-
AC_SUBST([bitcoin_network_PKG], ['libbitcoin-network >= 3.4.0'])
231+
AC_SUBST([bitcoin_network_PKG], ['libbitcoin-network >= 3.6.0'])
232232
AC_SUBST([bitcoin_network_CPPFLAGS], [${bitcoin_network_CFLAGS}])
233233
AS_IF([test x${bitcoin_network_INCLUDEDIR} != "x"],
234234
[AC_SUBST([bitcoin_network_ISYS_CPPFLAGS], ["-isystem${bitcoin_network_INCLUDEDIR} ${bitcoin_network_OTHER_CFLAGS}"])],

include/bitcoin/node/version.hpp

Lines changed: 2 additions & 2 deletions
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_NODE_VERSION "3.4.0"
15+
#define LIBBITCOIN_NODE_VERSION "3.6.0"
1616
#define LIBBITCOIN_NODE_MAJOR_VERSION 3
17-
#define LIBBITCOIN_NODE_MINOR_VERSION 4
17+
#define LIBBITCOIN_NODE_MINOR_VERSION 6
1818
#define LIBBITCOIN_NODE_PATCH_VERSION 0
1919

2020
#endif

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ initialize_boost_icu_configuration()
556556
BOOST_ICU_POSIX="off"
557557

558558
# Extract ICU libs from package config variables and augment with -ldl.
559-
ICU_LIBS=( `pkg-config icu-i18n --libs` "-ldl" )
559+
ICU_LIBS="`pkg-config icu-i18n --libs` -ldl"
560560

561561
# This is a hack for boost m4 scripts that fail with ICU dependency.
562562
# See custom edits in ax-boost-locale.m4 and ax_boost_regex.m4.

libbitcoin-node.pc.in

Lines changed: 1 addition & 1 deletion
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-blockchain >= 3.4.0 libbitcoin-network >= 3.4.0
28+
Requires: libbitcoin-blockchain >= 3.6.0 libbitcoin-network >= 3.6.0
2929

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

0 commit comments

Comments
 (0)