Skip to content

Commit

Permalink
Release v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sskender committed Feb 20, 2022
1 parent e23160d commit 0572f20
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
25 changes: 25 additions & 0 deletions doc/release-notes.md
Original file line number Diff line number Diff line change
@@ -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**
2 changes: 2 additions & 0 deletions src/checkpoints.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ namespace Checkpoints
( 0, hashGenesisBlock )
( 1, uint256("0x00000179bb84389b12f54ab6af07cb4aa3dc66f716930b2b041e99f6f89d9f43") )
( 500, uint256("0x0000000065527f5a4cd868c1f70a28da97d50765ca23007540c85c38b96e5100") )
( 10000, uint256("0x31dce3378ab51aa1aa216832a70e0a66b24e8b0f56b34e4e80db0b0741907051") )
( 53900, uint256("0xdb0e5b2a23dfdd7b9846f3598820bf5168e13c7459fdb4f31658071bcdfaa0d7") )
;

// TestNet has no checkpoints
Expand Down
2 changes: 1 addition & 1 deletion src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 2 additions & 0 deletions src/kernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ static std::map<int, unsigned int> mapStakeModifierCheckpoints =
( 0, 0x0e00670b )
( 1, 0xbc4b99b6 )
( 500, 0xcd5271c0 )
( 10000, 0xb37f55e1 )
( 53900, 0x769710d9 )
;

// Hard checkpoints of stake modifiers to ensure they are deterministic (testNet)
Expand Down

0 comments on commit 0572f20

Please sign in to comment.