diff --git a/doc/release-notes.md b/doc/release-notes.md index 9fa8721..b3e139e 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -2,24 +2,60 @@ ***************************** -## Release v1.0.1 - 20 Feb 2022 +## Release [v1.0.2](https://github.com/torus-economy/torus-core/releases/tag/v1.0.2) - 26 Mar 2022 -#### New Features +#### Added + +- Added QR code support + - [`#73065ec`](https://github.com/torus-economy/torus-core/commit/73065ec2b3990509e488c5dbd8fe4d78bc970b5b) +- Logged LevelDB version + - [`#f3f2ff9`](https://github.com/torus-economy/torus-core/commit/f3f2ff9da192106622306790b987bafb25d9457e) +- Zipped release artifacts + - [`#8e3fba4`](https://github.com/torus-economy/torus-core/commit/8e3fba42ac411e13b818e52d077b89cec32b5357) + +#### Changed + +- Minimized wallet on app close + - [`#dbf4f17`](https://github.com/torus-economy/torus-core/commit/dbf4f17f6b08be439e8a8089fa00ee5c69992ad2) +- Improved CI builds with prebuilt images + - [`#1a7f2db`](https://github.com/torus-economy/torus-core/commit/1a7f2db29ada228420b57e58417406004fc2f23d) + - [`#6cdaff7`](https://github.com/torus-economy/torus-core/commit/6cdaff7eaf726a4aedf0201b4c95e7347a246f42) +- Updated documentation + +#### Removed + +- Removed custom wallet theme + - [`#3ac29c1`](https://github.com/torus-economy/torus-core/commit/3ac29c1b360e73af7e63e2561aece8c91cc89b57) + +#### Fixed + +- Fixed wallet style and tray icon + - [`#9378a68`](https://github.com/torus-economy/torus-core/commit/9378a6850b17fbc0151bf70ae7ac4c45fb734432) + +***************************** + +## Release [v1.0.1](https://github.com/torus-economy/torus-core/releases/tag/v1.0.1) - 20 Feb 2022 + +#### Added - 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) + - [`#afedd4c`](https://github.com/torus-economy/torus-core/commit/afedd4cfa5f253478b364f4ef7fe27ba8dcc5bc5) - Supported multiplatform builds and CI pipeline + - [`#4231267`](https://github.com/torus-economy/torus-core/commit/42312672c6257dbb0e801e4bfc94c4304ea0296b) - Improved documentation -#### Bug Fixes +#### Changed + +- Enabled UPnP in TORUS-Qt + - [`#300c2b2`](https://github.com/torus-economy/torus-core/commit/300c2b28cf00b3d5ba5e48db3de7feb1484a2234) + +#### Fixed - Removed duplicate key from RPC wallet - - [#19ce246](https://github.com/torus-economy/torus-core/commit/19ce246f2ff9a1a54ba81edd7d4153840b27a6e7) + - [`#19ce246`](https://github.com/torus-economy/torus-core/commit/19ce246f2ff9a1a54ba81edd7d4153840b27a6e7) ***************************** -## Release v1.0.0 - 06 Dec 2021 +## Release [v1.0.0](https://github.com/torus-economy/torus-core/releases/tag/v1.0.0) - 06 Dec 2021 -**MAINNET LAUNCH** +**MAINNET LAUNCHED** diff --git a/src/clientversion.h b/src/clientversion.h index dd91748..eee081f 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 1 +#define CLIENT_VERSION_REVISION 2 #define CLIENT_VERSION_BUILD 0 // Converts the parameter X to a string after macro replacement on X has been performed.