Skip to content

Commit

Permalink
versioning as pre-release update
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelusCH committed Jul 24, 2022
1 parent ccd58f5 commit 03aad9c
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 19 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BitcoinZ 2.0.7-10
# BitcoinZ 2.0.8-RC1
**Keep running wallet to strengthen the BitcoinZ network. Backup your wallet in many locations & keep your coins wallet offline.**

### Ports:
Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ 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, 7)
define(_CLIENT_VERSION_BUILD, 60)
define(_CLIENT_VERSION_REVISION, 8)
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)
define(_CLIENT_VERSION_IS_RELEASE, false)
define(_COPYRIGHT_YEAR, 2022)
AC_INIT([BitcoinZ],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_SUFFIX(_ZC_BUILD_VAL)],[https://github.com/btcz/bitcoinz/issues],[BitcoinZ])
AC_CONFIG_SRCDIR([src/main.cpp])
Expand Down
6 changes: 6 additions & 0 deletions contrib/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
bitcoinz (2.0.8-RC1) stable; urgency=low

* 2.0.8-RC1 release.

-- The BitcoinZ Community <[email protected]> Jul 2022

bitcoinz (2.0.7-10) stable; urgency=medium

* 2.0.7-10 release.
Expand Down
2 changes: 1 addition & 1 deletion contrib/gitian-descriptors/gitian-linux.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "bitcoinz-2.0.7-10"
name: "bitcoinz-2.0.8-RC1"
enable_cache: true
distro: "debian"
suites:
Expand Down
6 changes: 3 additions & 3 deletions doc/man/bitcoinz-cli.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
.TH BITCOINZ-CLI "1" "May 2022" "bitcoinz-cli v2.0.7-10" "User Commands"
.TH BITCOINZ-CLI "1" "Jul 2022" "bitcoinz-cli v2.0.8-RC1" "User Commands"
.SH NAME
bitcoinz-cli \- manual page for bitcoinz-cli v2.0.7-10
bitcoinz-cli \- manual page for bitcoinz-cli v2.0.8-RC1
.SH DESCRIPTION
BitcoinZ RPC client version v2.0.7-10
BitcoinZ RPC client version v2.0.8-RC1
.PP
In order to ensure you are adequately protecting your privacy when using
BitcoinZ, please see <https://z.cash/support/security/index.html>.
Expand Down
6 changes: 3 additions & 3 deletions doc/man/bitcoinz-tx.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
.TH BITCOINZ-TX "1" "May 2022" "bitcoinz-tx v2.0.7-10" "User Commands"
.TH BITCOINZ-TX "1" "Jul 2022" "bitcoinz-tx v2.0.8-RC1" "User Commands"
.SH NAME
bitcoinz-tx \- manual page for bitcoinz-tx v2.0.7-10
bitcoinz-tx \- manual page for bitcoinz-tx v2.0.8-RC1
.SH DESCRIPTION
BitcoinZ bitcoinz\-tx utility version v2.0.7-10
BitcoinZ bitcoinz\-tx utility version v2.0.8-RC1
.SS "Usage:"
.TP
bitcoinz\-tx [options] <hex\-tx> [commands]
Expand Down
6 changes: 3 additions & 3 deletions doc/man/bitcoinzd.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
.TH BITCOINZD "1" "May 2022" "bitcoinzd v2.0.7-10" "User Commands"
.TH BITCOINZD "1" "Jul 2022" "bitcoinzd v2.0.8-RC1" "User Commands"
.SH NAME
bitcoinzd \- manual page for bitcoinzd v2.0.7-10
bitcoinzd \- manual page for bitcoinzd v2.0.8-RC1
.SH DESCRIPTION
BitcoinZ Daemon version v2.0.7-10
BitcoinZ Daemon version v2.0.8-RC1
.PP
In order to ensure you are adequately protecting your privacy when using
BitcoinZ, please see <https://z.cash/support/security/>.
Expand Down
2 changes: 2 additions & 0 deletions doc/release-notes/release-notes-2.0.8-RC1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Notable changes
===============
2 changes: 1 addition & 1 deletion src/clientversion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const std::string CLIENT_NAME("YODA");
/**
* Client version number
*/
#define CLIENT_VERSION_SUFFIX ""
#define CLIENT_VERSION_SUFFIX "1"


/**
Expand Down
6 changes: 3 additions & 3 deletions src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
//! 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 7
#define CLIENT_VERSION_BUILD 60
#define CLIENT_VERSION_REVISION 8
#define CLIENT_VERSION_BUILD 25

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

/**
* Copyright year (2009-this)
Expand Down
2 changes: 1 addition & 1 deletion src/metrics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ void ThreadShowMetricsScreen()
std::cout << std::endl;

// Thank you text
std::cout << _("BTCZ Node Version 2.0.7-10 (YODA) - Protocol 770008") << std::endl;
std::cout << _("BTCZ Node Version 2.0.8-RC1 (YODA) - Protocol 770008") << std::endl;
std::cout << _("Thank you for running a BitcoinZ node!") << std::endl;
std::cout << _("You're helping to strengthen the network and contributing to a social good :)") << std::endl;
}
Expand Down

0 comments on commit 03aad9c

Please sign in to comment.