diff options
author | Wladimir J. van der Laan <laanwj@protonmail.com> | 2020-12-10 20:22:54 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@protonmail.com> | 2020-12-10 20:24:22 +0100 |
commit | 5f2f304cbec9b8103c8a03fe6b6e55cb22865398 (patch) | |
tree | 73c8cb032c553130448aa2ce0c60296b795d564e | |
parent | 5baaea4410a1cafb4381c2bf95b5ae9e465a7214 (diff) |
build: Bump version to 0.19.2rc1
Tree-SHA512: 9757dac49e31ef8f52225e0b101d9d3751773ce95555a3a1a2f291f360d06d7ba99cc08c4b3fd6cfc531e9f737b54ca5bbf484966895650acd72d0b6688bb378
-rw-r--r-- | build_msvc/bitcoin_config.h | 6 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/build_msvc/bitcoin_config.h b/build_msvc/bitcoin_config.h index 2ec7cd41ef..86a0516570 100644 --- a/build_msvc/bitcoin_config.h +++ b/build_msvc/bitcoin_config.h @@ -17,7 +17,7 @@ #define CLIENT_VERSION_MINOR 19 /* Build revision */ -#define CLIENT_VERSION_REVISION 1 +#define CLIENT_VERSION_REVISION 2 /* Copyright holder(s) before %s replacement */ #define COPYRIGHT_HOLDERS "The %s developers" @@ -346,7 +346,7 @@ #define PACKAGE_NAME "Bitcoin Core" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "Bitcoin Core 0.18.99" +#define PACKAGE_STRING "Bitcoin Core 0.19.2" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "bitcoin" @@ -355,7 +355,7 @@ #define PACKAGE_URL "https://bitcoincore.org/" /* Define to the version of this package. */ -#define PACKAGE_VERSION "0.18.99" +#define PACKAGE_VERSION "0.19.2" /* Define to necessary symbol if this constant uses a non-standard name on your system. */ diff --git a/configure.ac b/configure.ac index dd49c2f672..92cc663826 100644 --- a/configure.ac +++ b/configure.ac @@ -2,9 +2,9 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N) AC_PREREQ([2.60]) define(_CLIENT_VERSION_MAJOR, 0) define(_CLIENT_VERSION_MINOR, 19) -define(_CLIENT_VERSION_REVISION, 1) +define(_CLIENT_VERSION_REVISION, 2) define(_CLIENT_VERSION_BUILD, 0) -define(_CLIENT_VERSION_RC, 0) +define(_CLIENT_VERSION_RC, 1) define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2019) define(_COPYRIGHT_HOLDERS,[The %s developers]) |