diff --git a/configure.ac b/configure.ac
index 38d891bed..88872aad8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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)
diff --git a/doc/man/komodo-cli.1 b/doc/man/komodo-cli.1
index 4c20f0fde..c8e0052ff 100644
--- a/doc/man/komodo-cli.1
+++ b/doc/man/komodo-cli.1
@@ -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 .
diff --git a/doc/man/komodo-tx.1 b/doc/man/komodo-tx.1
index 899b0ce93..6a98d0604 100644
--- a/doc/man/komodo-tx.1
+++ b/doc/man/komodo-tx.1
@@ -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] [commands]
+komodo\-tx [options] [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
diff --git a/doc/man/komodod.1 b/doc/man/komodod.1
index 9a8dd439a..0c298cd46 100644
--- a/doc/man/komodod.1
+++ b/doc/man/komodod.1
@@ -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 .
diff --git a/src/clientversion.h b/src/clientversion.h
index 64e0e6f65..75504940a 100644
--- a/src/clientversion.h
+++ b/src/clientversion.h
@@ -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.