build: Bump version to 22.0.0rc1

Tree-SHA512: 1bc98f4a6d15d8f810fa6d2ee26c495a8da08dff3efd3d2ec6bbc6bd8091751a21436efc39f04fb68c5279312644ff9a63bcbc3c4df02e0bf89cd1cd8473bac5
This commit is contained in:
W. J. van der Laan 2021-07-20 15:18:52 +02:00
parent 42af9596ce
commit f277b1782c
No known key found for this signature in database
GPG key ID: 1E4AED62986CD25D
2 changed files with 10 additions and 10 deletions

View file

@ -12,13 +12,13 @@
#define CLIENT_VERSION_BUILD 0 #define CLIENT_VERSION_BUILD 0
/* Version is release */ /* Version is release */
#define CLIENT_VERSION_IS_RELEASE false #define CLIENT_VERSION_IS_RELEASE true
/* Major version */ /* Major version */
#define CLIENT_VERSION_MAJOR 21 #define CLIENT_VERSION_MAJOR 22
/* Minor version */ /* Minor version */
#define CLIENT_VERSION_MINOR 99 #define CLIENT_VERSION_MINOR 0
/* Copyright holder(s) before %s replacement */ /* Copyright holder(s) before %s replacement */
#define COPYRIGHT_HOLDERS "The %s developers" #define COPYRIGHT_HOLDERS "The %s developers"
@ -30,7 +30,7 @@
#define COPYRIGHT_HOLDERS_SUBSTITUTION "Bitcoin Core" #define COPYRIGHT_HOLDERS_SUBSTITUTION "Bitcoin Core"
/* Copyright year */ /* Copyright year */
#define COPYRIGHT_YEAR 2019 #define COPYRIGHT_YEAR 2021
/* Define to 1 to enable wallet functions */ /* Define to 1 to enable wallet functions */
#define ENABLE_WALLET 1 #define ENABLE_WALLET 1
@ -254,7 +254,7 @@
#define PACKAGE_NAME "Bitcoin Core" #define PACKAGE_NAME "Bitcoin Core"
/* Define to the full name and version of this package. */ /* Define to the full name and version of this package. */
#define PACKAGE_STRING "Bitcoin Core 21.99.0" #define PACKAGE_STRING "Bitcoin Core 22.0.0"
/* Define to the one symbol short name of this package. */ /* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "bitcoin" #define PACKAGE_TARNAME "bitcoin"
@ -263,7 +263,7 @@
#define PACKAGE_URL "https://bitcoincore.org/" #define PACKAGE_URL "https://bitcoincore.org/"
/* Define to the version of this package. */ /* Define to the version of this package. */
#define PACKAGE_VERSION "21.99.0" #define PACKAGE_VERSION "22.0.0"
/* Define to necessary symbol if this constant uses a non-standard name on /* Define to necessary symbol if this constant uses a non-standard name on
your system. */ your system. */

View file

@ -1,9 +1,9 @@
AC_PREREQ([2.69]) AC_PREREQ([2.69])
define(_CLIENT_VERSION_MAJOR, 21) define(_CLIENT_VERSION_MAJOR, 22)
define(_CLIENT_VERSION_MINOR, 99) define(_CLIENT_VERSION_MINOR, 0)
define(_CLIENT_VERSION_BUILD, 0) define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_RC, 0) define(_CLIENT_VERSION_RC, 1)
define(_CLIENT_VERSION_IS_RELEASE, false) define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2021) define(_COPYRIGHT_YEAR, 2021)
define(_COPYRIGHT_HOLDERS,[The %s developers]) define(_COPYRIGHT_HOLDERS,[The %s developers])
define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[Bitcoin Core]]) define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[Bitcoin Core]])