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, 19) -define(_CLIENT_VERSION_REVISION, 9) +define(_CLIENT_VERSION_REVISION, 10) define(_CLIENT_VERSION_BUILD, 0) define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2019) diff --git a/doc/Doxyfile b/doc/Doxyfile --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -38,7 +38,7 @@ # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.19.9 +PROJECT_NUMBER = 0.19.10 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a 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,5 @@ -Bitcoin ABC version 0.19.9 is now available from: +Bitcoin ABC version 0.19.10 is now available from: - + This release includes the following features and fixes: - - Return amounts from `decoderawtransaction` are padded to 8 decimal places. - - Deprecated 'softforks' information from `getblockchaininfo` RPC call, which - had only been reporting on some very old upgrades. To keep this information, - start bitcoind with the '-deprecatedrpc=getblockchaininfo' option. - - A new `-avoidpartialspends` flag has been added (default=false). If enabled, - the wallet will try to spend UTXO's that point at the same destination together. - This is a privacy increase, as there will no longer be cases where a wallet will - inadvertently spend only parts of the coins sent to the same address (note that - if someone were to send coins to that address after it was used, those coins - will still be included in future coin selections). - - Add the `minrelaytxfee` output to the `getmempoolinfo` RPC. \ No newline at end of file diff --git a/doc/release-notes.md b/doc/release-notes/release-notes-0.19.9.md copy from doc/release-notes.md copy to doc/release-notes/release-notes-0.19.9.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) set(CLIENT_VERSION_MINOR 19) -set(CLIENT_VERSION_REVISION 9) +set(CLIENT_VERSION_REVISION 10) set(CLIENT_VERSION_BUILD 0) option(CLIENT_VERSION_IS_RELEASE "Build a release version" OFF)