Skip to content

Commit 0cabb00

Browse files
committedOct 14, 2018
make-release.py: Versioning changes for 2.0.1.
1 parent 3332fb0 commit 0cabb00

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Zcash 2.0.1-rc1
1+
Zcash 2.0.1
22
<img align="right" width="120" height="80" src="doc/imgs/logo.png">
33
===========
44

‎configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ AC_PREREQ([2.60])
33
define(_CLIENT_VERSION_MAJOR, 2)
44
define(_CLIENT_VERSION_MINOR, 0)
55
define(_CLIENT_VERSION_REVISION, 1)
6-
define(_CLIENT_VERSION_BUILD, 25)
6+
define(_CLIENT_VERSION_BUILD, 50)
77
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)))
88
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)))
99
define(_CLIENT_VERSION_IS_RELEASE, true)

‎contrib/gitian-descriptors/gitian-linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: "zcash-2.0.1-rc1"
2+
name: "zcash-2.0.1"
33
enable_cache: true
44
distro: "debian"
55
suites:

‎src/clientversion.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#define CLIENT_VERSION_MAJOR 2
1919
#define CLIENT_VERSION_MINOR 0
2020
#define CLIENT_VERSION_REVISION 1
21-
#define CLIENT_VERSION_BUILD 25
21+
#define CLIENT_VERSION_BUILD 50
2222

2323
//! Set to true for release, false for prerelease or test build
2424
#define CLIENT_VERSION_IS_RELEASE true

‎src/deprecation.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// Deprecation policy:
99
// * Shut down 16 weeks' worth of blocks after the estimated release block height.
1010
// * A warning is shown during the 2 weeks' worth of blocks prior to shut down.
11-
static const int APPROX_RELEASE_HEIGHT = 407600;
11+
static const int APPROX_RELEASE_HEIGHT = 411500;
1212
static const int WEEKS_UNTIL_DEPRECATION = 16;
1313
static const int DEPRECATION_HEIGHT = APPROX_RELEASE_HEIGHT + (WEEKS_UNTIL_DEPRECATION * 7 * 24 * 24);
1414

0 commit comments

Comments
 (0)
Please sign in to comment.