build: Bump version to 0.21.1rc1

This commit is contained in:
W. J. van der Laan
2021-04-16 13:23:58 +02:00
parent ab20518191
commit e85dfdbf31
2 changed files with 5 additions and 5 deletions

View File

@@ -21,7 +21,7 @@
#define CLIENT_VERSION_MINOR 21 #define CLIENT_VERSION_MINOR 21
/* Build revision */ /* Build revision */
#define CLIENT_VERSION_REVISION 0 #define CLIENT_VERSION_REVISION 1
/* Copyright holder(s) before %s replacement */ /* Copyright holder(s) before %s replacement */
#define COPYRIGHT_HOLDERS "The %s developers" #define COPYRIGHT_HOLDERS "The %s developers"
@@ -253,7 +253,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 0.21.0" #define PACKAGE_STRING "Bitcoin Core 0.21.1"
/* 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"
@@ -262,7 +262,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 "0.21.0" #define PACKAGE_VERSION "0.21.1"
/* 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, 0) define(_CLIENT_VERSION_MAJOR, 0)
define(_CLIENT_VERSION_MINOR, 21) define(_CLIENT_VERSION_MINOR, 21)
define(_CLIENT_VERSION_REVISION, 0) define(_CLIENT_VERSION_REVISION, 1)
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, true) define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2020) define(_COPYRIGHT_YEAR, 2020)
define(_COPYRIGHT_HOLDERS,[The %s developers]) define(_COPYRIGHT_HOLDERS,[The %s developers])