diff --git a/configure.ac b/configure.ac --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ([2.60]) define(_CLIENT_VERSION_MAJOR, 0) define(_CLIENT_VERSION_MINOR, 20) -define(_CLIENT_VERSION_REVISION, 0) +define(_CLIENT_VERSION_REVISION, 1) define(_CLIENT_VERSION_BUILD, 0) define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2019) diff --git a/doc/release-notes.md b/doc/release-notes.md --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -1,11 +1,5 @@ -Bitcoin ABC version 0.20.0 is now available from: +Bitcoin ABC version 0.20.1 is now available from: - + This release includes the following features and fixes: - - Support for Nov 2019 upgrade features, as detailed at https://github.com/bitcoincashorg/bitcoincash.org/blob/master/spec/2019-11-15-upgrade.md - - Schnorr signatures for OP_CHECKMULTISIG(VERIFY): https://github.com/bitcoincashorg/bitcoincash.org/blob/master/spec/2019-11-15-schnorrmultisig.md - - Enforce MINIMALDATA in script: https://github.com/bitcoincashorg/bitcoincash.org/blob/master/spec/2019-11-15-minimaldata.md - - Bump automatic replay protection to May 2020 upgrade. - - Searching by transaction ID is now available in bitcoin-qt. - - Minor bug fixes. diff --git a/doc/release-notes.md b/doc/release-notes/release-notes-0.20.0.md copy from doc/release-notes.md copy to doc/release-notes/release-notes-0.20.0.md diff --git a/src/config/CMakeLists.txt b/src/config/CMakeLists.txt --- a/src/config/CMakeLists.txt +++ b/src/config/CMakeLists.txt @@ -13,7 +13,7 @@ # Version set(CLIENT_VERSION_MAJOR 0 CACHE STRING "Major version number") set(CLIENT_VERSION_MINOR 20 CACHE STRING "Minor version number") -set(CLIENT_VERSION_REVISION 0 CACHE STRING "Revision version number") +set(CLIENT_VERSION_REVISION 1 CACHE STRING "Revision version number") set(CLIENT_VERSION_BUILD 0 CACHE STRING "Build version number") option(CLIENT_VERSION_IS_RELEASE "Build a release version" OFF)