update versions and manpages

This commit is contained in:
Jonathan "Duke" Leto
2019-10-17 07:08:30 -07:00
parent 61917057d7
commit ee5b2481ae
5 changed files with 16 additions and 16 deletions

View File

@@ -1,9 +1,9 @@
dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 3)
define(_CLIENT_VERSION_MINOR, 1)
define(_CLIENT_VERSION_MINOR, 2)
define(_CLIENT_VERSION_REVISION, 0)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_BUILD, 50)
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)

View File

@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
.TH KOMODO-CLI "1" "June 2019" "komodo-cli v3.0.0" "User Commands"
.TH KOMODO-CLI "1" "October 2019" "komodo-cli v3.2.0" "User Commands"
.SH NAME
komodo-cli \- manual page for komodo-cli v3.0.0
komodo-cli \- manual page for komodo-cli v3.2.0
.SH DESCRIPTION
Komodo RPC client version v3.0.0\-beta2\-ab9d87166\-dirty
Komodo RPC client version v3.2.0\-61917057d\-dirty
.PP
In order to ensure you are adequately protecting your privacy when using Hush,
please see <https://myhush.org/security/>.

View File

@@ -1,15 +1,15 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
.TH KOMODO-TX "1" "June 2019" "komodo-tx v3.0.0" "User Commands"
.TH KOMODO-TX "1" "October 2019" "komodo-tx v3.2.0" "User Commands"
.SH NAME
komodo-tx \- manual page for komodo-tx v3.0.0
komodo-tx \- manual page for komodo-tx v3.2.0
.SH DESCRIPTION
Zcash zcash\-tx utility version v3.0.0\-beta2\-ab9d87166\-dirty
Hush komodo\-tx utility version v3.2.0\-61917057d\-dirty
.SS "Usage:"
.TP
zcash\-tx [options] <hex\-tx> [commands]
komodo\-tx [options] <hex\-tx> [commands]
Update hex\-encoded zcash transaction
.TP
zcash\-tx [options] \fB\-create\fR [commands]
komodo\-tx [options] \fB\-create\fR [commands]
Create hex\-encoded zcash transaction
.SH OPTIONS
.HP

View File

@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
.TH KOMODOD "1" "June 2019" "komodod v3.0.0" "User Commands"
.TH KOMODOD "1" "October 2019" "komodod v3.2.0" "User Commands"
.SH NAME
komodod \- manual page for komodod v3.0.0
komodod \- manual page for komodod v3.2.0
.SH DESCRIPTION
Komodo Daemon version v3.0.0\-beta2\-ab9d87166\-dirty
Komodo Daemon version v3.2.0\-61917057d\-dirty
.PP
In order to ensure you are adequately protecting your privacy when using Hush,
please see <https://myhush.org/security/>.

View File

@@ -33,9 +33,9 @@
//! These need to be macros, as clientversion.cpp's and bitcoin*-res.rc's voodoo requires it
// Must be kept in sync with configure.ac !
#define CLIENT_VERSION_MAJOR 3
#define CLIENT_VERSION_MINOR 1
#define CLIENT_VERSION_MINOR 2
#define CLIENT_VERSION_REVISION 0
#define CLIENT_VERSION_BUILD 0
#define CLIENT_VERSION_BUILD 50
//! Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE true
@@ -56,7 +56,7 @@
#define DO_STRINGIZE(X) #X
//! Copyright string used in Windows .rc files
#define COPYRIGHT_STR "2009-" STRINGIZE(COPYRIGHT_YEAR) " The Bitcoin Core Developers, The Zcash developers, Komodo developers, and Verus developers"
#define COPYRIGHT_STR "2009-" STRINGIZE(COPYRIGHT_YEAR) " The Bitcoin Core Developers, The Zcash developers, Komodo developers, Hush developers and Verus developers"
/**
* bitcoind-res.rc includes this file, but it cannot cope with real c++ code.