diff --git a/README.md b/README.md index 9bc8595..2f2563c 100644 --- a/README.md +++ b/README.md @@ -87,3 +87,7 @@ Official DNS seed servers: ### Build from source In order to build from source, check out [docs](doc). + +## Release notes + +To see release notes check out this [file](doc/release-notes.md). diff --git a/doc/release-notes.md b/doc/release-notes.md new file mode 100644 index 0000000..9a91a98 --- /dev/null +++ b/doc/release-notes.md @@ -0,0 +1,25 @@ +# TORUS Release Notes + +***************************** + +## Release v1.0.1 - 20 Feb 2022 + +#### New Features + +- Added official DNS seed servers + - [afedd4c](https://github.com/torus-economy/torus-core/commit/afedd4cfa5f253478b364f4ef7fe27ba8dcc5bc5) +- Enabled UPnP in TORUS-Qt + - [300c2b2](https://github.com/torus-economy/torus-core/commit/300c2b28cf00b3d5ba5e48db3de7feb1484a2234) +- Supported multiplatform builds and CI pipeline +- Improved documentation + +#### Bug Fixes + +- Removed duplicate key from RPC wallet + - [19ce246](https://github.com/torus-economy/torus-core/commit/19ce246f2ff9a1a54ba81edd7d4153840b27a6e7) + +***************************** + +## Release v1.0.0 - 06 Dec 2021 + +**MAINNET LAUNCH** diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index 4ab61ca..4de8164 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -27,6 +27,8 @@ namespace Checkpoints ( 0, hashGenesisBlock ) ( 1, uint256("0x00000179bb84389b12f54ab6af07cb4aa3dc66f716930b2b041e99f6f89d9f43") ) ( 500, uint256("0x0000000065527f5a4cd868c1f70a28da97d50765ca23007540c85c38b96e5100") ) + ( 10000, uint256("0x31dce3378ab51aa1aa216832a70e0a66b24e8b0f56b34e4e80db0b0741907051") ) + ( 53900, uint256("0xdb0e5b2a23dfdd7b9846f3598820bf5168e13c7459fdb4f31658071bcdfaa0d7") ) ; // TestNet has no checkpoints diff --git a/src/clientversion.h b/src/clientversion.h index 94d53c2..dd91748 100644 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -8,7 +8,7 @@ // These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it #define CLIENT_VERSION_MAJOR 1 #define CLIENT_VERSION_MINOR 0 -#define CLIENT_VERSION_REVISION 0 +#define CLIENT_VERSION_REVISION 1 #define CLIENT_VERSION_BUILD 0 // Converts the parameter X to a string after macro replacement on X has been performed. diff --git a/src/kernel.cpp b/src/kernel.cpp index 0848156..86060c1 100644 --- a/src/kernel.cpp +++ b/src/kernel.cpp @@ -17,6 +17,8 @@ static std::map mapStakeModifierCheckpoints = ( 0, 0x0e00670b ) ( 1, 0xbc4b99b6 ) ( 500, 0xcd5271c0 ) + ( 10000, 0xb37f55e1 ) + ( 53900, 0x769710d9 ) ; // Hard checkpoints of stake modifiers to ensure they are deterministic (testNet)