Bump version to 2.13.2.7

This commit is contained in:
Michel van Kessel
2020-11-24 22:22:29 +01:00
parent 524dddedb2
commit 4e1e6e83fa
4 changed files with 13 additions and 3 deletions

View File

@@ -1,4 +1,14 @@
# Changelog # Changelog
## v2.13.2.7 (2020-11-24)
- Dust mitigation in mempool (by JJ12880 from Radium Core)
- Compile on MacOS Catalina
- Cross-compile MacOS with Xcode 11.3.1
- Updated dependencies for Win64, Linux64, MacOS, arm64, armv7
- Sign/Verify compatibility with Legacy clients
- Disable Stake Cache (for now)
- Changed dbcache to 450MB (for txindex)
- Add 100 mature inputs during coinstake.
- Updated fix seeds for main and testnet.
## v2.13.2.6 (2020-07-21) ## v2.13.2.6 (2020-07-21)
- Fix staking memory leak (by JJ12880 from Radium Core) - Fix staking memory leak (by JJ12880 from Radium Core)

View File

@@ -3,7 +3,7 @@ AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 2) define(_CLIENT_VERSION_MAJOR, 2)
define(_CLIENT_VERSION_MINOR, 13) define(_CLIENT_VERSION_MINOR, 13)
define(_CLIENT_VERSION_REVISION, 2) define(_CLIENT_VERSION_REVISION, 2)
define(_CLIENT_VERSION_BUILD, 6) define(_CLIENT_VERSION_BUILD, 7)
define(_CLIENT_VERSION_IS_RELEASE, true) define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2020) define(_COPYRIGHT_YEAR, 2020)
define(_COPYRIGHT_HOLDERS,[The %s developers]) define(_COPYRIGHT_HOLDERS,[The %s developers])

View File

@@ -34,7 +34,7 @@ PROJECT_NAME = "Blackcoin More"
# This could be handy for archiving the generated documentation or # This could be handy for archiving the generated documentation or
# if some version control system is used. # if some version control system is used.
PROJECT_NUMBER = 2.13.2.6 PROJECT_NUMBER = 2.13.2.7
# Using the PROJECT_BRIEF tag one can provide an optional one line description # 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 # for a project that appears at the top of each page and should give viewer

View File

@@ -17,7 +17,7 @@
#define CLIENT_VERSION_MAJOR 2 #define CLIENT_VERSION_MAJOR 2
#define CLIENT_VERSION_MINOR 13 #define CLIENT_VERSION_MINOR 13
#define CLIENT_VERSION_REVISION 2 #define CLIENT_VERSION_REVISION 2
#define CLIENT_VERSION_BUILD 6 #define CLIENT_VERSION_BUILD 7
//! Set to true for release, false for prerelease or test build //! Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE true #define CLIENT_VERSION_IS_RELEASE true