diff --git a/CMakeLists.txt b/CMakeLists.txt --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5) project(bitcoin-abc - VERSION 0.20.4 + VERSION 0.20.5 # TODO add description and homepage when CMake > 3.12 is enforced. # DESCRIPTION "Bitcoin ABC is a full node implementation of the Bitcoin Cash protocol." # HOMEPAGE "https://www.bitcoinabc.org" 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, 4) +define(_CLIENT_VERSION_REVISION, 5) define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2019) define(_COPYRIGHT_HOLDERS,[The %s developers]) diff --git a/doc/release-notes.md b/doc/release-notes.md --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -1,23 +1,5 @@ -Bitcoin ABC version 0.20.4 is now available from: +Bitcoin ABC version 0.20.5 is now available from: - + This release includes the following features and fixes: - - Minor bug fixes and improvements. - - New `fees` field introduced in `getrawmempool`, `getmempoolancestors`, - `getmempooldescendants` and `getmempoolentry` when verbosity is set to - `true` with sub-fields `ancestor`, `base`, `modified` and `descendant` - denominated in BCH. This new field deprecates previous fee fields, such a - `fee`, `modifiedfee`, `ancestorfee` and `descendantfee`. - -Dynamic creation of wallets ---------------------------------------- - - Previously, wallets could only be loaded or created at startup, by - specifying `-wallet` parameters on the command line or in the bitcoin.conf - file. It is now possible to create wallets dynamically at runtime: - - - New wallets can be created (and loaded) by calling the `createwallet` RPC. - The provided name must not match a wallet file in the `walletdir` directory - or the name of a wallet that is currently loaded. - - - This feature is currently only available through the RPC interface. diff --git a/doc/release-notes.md b/doc/release-notes/release-notes-0.20.4 copy from doc/release-notes.md copy to doc/release-notes/release-notes-0.20.4