Skip to content

Commit d6f66c9

Browse files
Regenerate build artifacts.
1 parent 159783c commit d6f66c9

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Diff for: .appveyor.yml

+1-1
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

Diff for: .travis.yml

+2-2
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
@@ -66,7 +66,7 @@ install:
6666

6767
# Export CC/CXX to control compiler/version.
6868
- if [[ $OSX && $CLANG && $STATIC ]]; then export CC=clang; export CXX=clang++; fi
69-
- if [[ $LINUX && $CLANG && $STATIC ]]; then export CC=clang-3.4; export CXX=clang++-3.4; fi
69+
- if [[ $LINUX && $CLANG && $STATIC ]]; then export CC=clang-5.0; export CXX=clang++-5.0; fi
7070
- if [[ $LINUX && $GCC && $STATIC ]]; then export CC=gcc; export CXX=g++; fi
7171
- if [[ $OSX && $CLANG && $DYNAMIC ]]; then export CC=clang; export CXX=clang++; fi
7272
- if [[ $LINUX && $CLANG && $DYNAMIC ]]; then export CC=clang; export CXX=clang++; fi

Diff for: configure.ac

+1-1
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], [3.4.0], [[email protected]])
16+
AC_INIT([libbitcoin], [3.6.0], [[email protected]])
1717

1818
# Do compilation tests.
1919
AC_LANG(C++)

Diff for: include/bitcoin/bitcoin/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_VERSION "3.4.0"
15+
#define LIBBITCOIN_VERSION "3.6.0"
1616
#define LIBBITCOIN_MAJOR_VERSION 3
17-
#define LIBBITCOIN_MINOR_VERSION 4
17+
#define LIBBITCOIN_MINOR_VERSION 6
1818
#define LIBBITCOIN_PATCH_VERSION 0
1919

2020
#endif

Diff for: install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ initialize_boost_icu_configuration()
609609
BOOST_ICU_POSIX="off"
610610

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

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

0 commit comments

Comments
 (0)