From a8c94c18df56c816d73bc76876e61879809e9df7 Mon Sep 17 00:00:00 2001 From: Patrick Lodder Date: Thu, 8 Aug 2024 20:37:34 -0400 Subject: [PATCH] update version info to 1.14.99 for master the .99 makes sure that code in master is never mistaken for release code, and is always a higher version than the last minor release Also set the last release date to match 1.14.8 instead of 1.14.7 --- configure.ac | 6 +++--- src/clientversion.h | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 52df661b2..0200117f6 100644 --- a/configure.ac +++ b/configure.ac @@ -1,14 +1,14 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N) AC_PREREQ([2.60]) define(_CLIENT_VERSION_MAJOR, 1) -define(_CLIENT_VERSION_MINOR, 15) -define(_CLIENT_VERSION_REVISION, 0) +define(_CLIENT_VERSION_MINOR, 14) +define(_CLIENT_VERSION_REVISION, 99) define(_CLIENT_VERSION_BUILD, 0) define(_CLIENT_VERSION_IS_RELEASE, false) define(_COPYRIGHT_YEAR, 2024) define(_COPYRIGHT_HOLDERS,[The %s developers]) define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[Bitcoin Core and Dogecoin Core]]) -define(_CURRENT_RELEASE_DATE,[[2024-02-27]]) +define(_CURRENT_RELEASE_DATE,[[2024-08-03]]) define(_EXPECTED_DAYS_TO_NEXT_RELEASE,[270]) AC_INIT([Dogecoin Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[https://github.com/dogecoin/dogecoin/issues],[dogecoin],[https://dogecoin.com/]) AC_CONFIG_SRCDIR([src/validation.cpp]) diff --git a/src/clientversion.h b/src/clientversion.h index b6b2c7026..6e01ce1f1 100644 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -16,8 +16,8 @@ //! These need to be macros, as clientversion.cpp's and bitcoin*-res.rc's voodoo requires it #define CLIENT_VERSION_MAJOR 1 -#define CLIENT_VERSION_MINOR 15 -#define CLIENT_VERSION_REVISION 0 +#define CLIENT_VERSION_MINOR 14 +#define CLIENT_VERSION_REVISION 99 #define CLIENT_VERSION_BUILD 0 //! Set to true for release, false for prerelease or test build