]> Git Repo - VerusCoin.git/commitdiff
make-release.py: Versioning changes for 2.0.2-rc1.
authormdr0id <[email protected]>
Sun, 18 Nov 2018 18:11:46 +0000 (10:11 -0800)
committermdr0id <[email protected]>
Sun, 18 Nov 2018 18:11:46 +0000 (10:11 -0800)
README.md
configure.ac
contrib/gitian-descriptors/gitian-linux.yml
src/clientversion.h
src/deprecation.h

index 036c9f0f195a19f1b0c51f50847b535429b447ea..f38e5016aeeed854a3bd8a979bf2eea8b662d2bd 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-Zcash 2.0.1
+Zcash 2.0.2-rc1
 <img align="right" width="120" height="80" src="doc/imgs/logo.png">
 ===========
 
index ed4eaeed84acfeb948a38265c0edb3214604fce8..2209f1ae0ba1d74a47aabaabd7d2a3879bb910c4 100644 (file)
@@ -2,8 +2,8 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
 AC_PREREQ([2.60])
 define(_CLIENT_VERSION_MAJOR, 2)
 define(_CLIENT_VERSION_MINOR, 0)
-define(_CLIENT_VERSION_REVISION, 1)
-define(_CLIENT_VERSION_BUILD, 50)
+define(_CLIENT_VERSION_REVISION, 2)
+define(_CLIENT_VERSION_BUILD, 25)
 define(_ZC_BUILD_VAL, m4_if(m4_eval(_CLIENT_VERSION_BUILD < 25), 1, m4_incr(_CLIENT_VERSION_BUILD), m4_eval(_CLIENT_VERSION_BUILD < 50), 1, m4_eval(_CLIENT_VERSION_BUILD - 24), m4_eval(_CLIENT_VERSION_BUILD == 50), 1, , m4_eval(_CLIENT_VERSION_BUILD - 50)))
 define(_CLIENT_VERSION_SUFFIX, m4_if(m4_eval(_CLIENT_VERSION_BUILD < 25), 1, _CLIENT_VERSION_REVISION-beta$1, m4_eval(_CLIENT_VERSION_BUILD < 50), 1, _CLIENT_VERSION_REVISION-rc$1, m4_eval(_CLIENT_VERSION_BUILD == 50), 1, _CLIENT_VERSION_REVISION, _CLIENT_VERSION_REVISION-$1)))
 define(_CLIENT_VERSION_IS_RELEASE, true)
index c619cf27050b886b2f4fd8216fb633585f42cc9a..507f7a493815f2e6498adb6df99664eff837aefb 100644 (file)
@@ -1,5 +1,5 @@
 ---
-name: "zcash-2.0.1"
+name: "zcash-2.0.2-rc1"
 enable_cache: true
 distro: "debian"
 suites:
index 111a4051aab98e4b0aa7853628c8aadfb3cc94e2..8ff720c250350f86cbe5345c6a1a4aaf0af2dc59 100644 (file)
@@ -17,8 +17,8 @@
 //! These need to be macros, as clientversion.cpp's and bitcoin*-res.rc's voodoo requires it
 #define CLIENT_VERSION_MAJOR 2
 #define CLIENT_VERSION_MINOR 0
-#define CLIENT_VERSION_REVISION 1
-#define CLIENT_VERSION_BUILD 50
+#define CLIENT_VERSION_REVISION 2
+#define CLIENT_VERSION_BUILD 25
 
 //! Set to true for release, false for prerelease or test build
 #define CLIENT_VERSION_IS_RELEASE true
index 91d853908fb87f91e3486e59d6a6cbf34e51efef..736e805f467b480fd91f2863d909ed935debf877 100644 (file)
@@ -8,7 +8,7 @@
 // Deprecation policy:
 // * Shut down 16 weeks' worth of blocks after the estimated release block height.
 // * A warning is shown during the 2 weeks' worth of blocks prior to shut down.
-static const int APPROX_RELEASE_HEIGHT = 411500;
+static const int APPROX_RELEASE_HEIGHT = 431247;
 static const int WEEKS_UNTIL_DEPRECATION = 16;
 static const int DEPRECATION_HEIGHT = APPROX_RELEASE_HEIGHT + (WEEKS_UNTIL_DEPRECATION * 7 * 24 * 24);
 
This page took 0.031971 seconds and 4 git commands to generate.