diff --git a/CMakeLists.txt b/CMakeLists.txt --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12) project(bitcoin-abc - VERSION 0.20.7 + VERSION 0.20.8 DESCRIPTION "Bitcoin ABC is a full node implementation of the Bitcoin Cash protocol." HOMEPAGE_URL "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, 7) +define(_CLIENT_VERSION_REVISION, 8) 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,16 +1,8 @@ -Bitcoin ABC version 0.20.7 is now available from: +Bitcoin ABC version 0.20.8 is now available from: - + This release includes the following features and fixes: - - The new RPC `scantxoutset` can be used to scan the UTXO set for entries - that match certain output descriptors. Refer to the [output descriptors - reference documentation](/doc/descriptors.md) for more details. This call - is similar to `listunspent` but does not use a wallet, meaning that the - wallet can be disabled at compile or run time. This call is experimental, - as such, is subject to changes or removal in future releases. - - The new RPC `getzmqnotifications` returns information about active ZMQ - notifications. - When running bitcoind without `-daemon`, logging to stdout is now the default behavior. Setting `-printtoconsole=1` no longer implicitly disables logging to debug.log. Instead, logging to file can be explicitly disabled by diff --git a/doc/release-notes.md b/doc/release-notes/release-notes-0.20.7.md copy from doc/release-notes.md copy to doc/release-notes/release-notes-0.20.7.md --- a/doc/release-notes.md +++ b/doc/release-notes/release-notes-0.20.7.md @@ -11,7 +11,3 @@ as such, is subject to changes or removal in future releases. - The new RPC `getzmqnotifications` returns information about active ZMQ notifications. - - When running bitcoind without `-daemon`, logging to stdout is now the - default behavior. Setting `-printtoconsole=1` no longer implicitly disables - logging to debug.log. Instead, logging to file can be explicitly disabled by - setting `-debuglogfile=0`.