From cc8a180025be47a62a72579e89fbffad2e476c13 Mon Sep 17 00:00:00 2001 From: Nathan Bass Date: Thu, 2 Jul 2015 09:52:11 -0500 Subject: [PATCH] Update release version and add release notes for 0.3.0.2 --- doc/README.md | 2 +- doc/README_windows.md | 2 +- doc/README_windows.txt | 2 +- doc/release-notes/release-notes-0.3.0.2.md | 87 ++++++++++++++++++++++ paycoin.pro | 2 +- share/setup.nsi | 2 +- src/version.h | 2 +- 7 files changed, 93 insertions(+), 6 deletions(-) create mode 100644 doc/release-notes/release-notes-0.3.0.2.md diff --git a/doc/README.md b/doc/README.md index 58518993..8d8ec642 100644 --- a/doc/README.md +++ b/doc/README.md @@ -1,4 +1,4 @@ -Paycoin 0.3.0.1 +Paycoin 0.3.0.2 =============== Copyright (c) 2014 Paycoin developers diff --git a/doc/README_windows.md b/doc/README_windows.md index 00d13748..6928da3d 100644 --- a/doc/README_windows.md +++ b/doc/README_windows.md @@ -1,4 +1,4 @@ -Paycoin 0.3.0.1 +Paycoin 0.3.0.2 Copyright (c) 2014 Paycoin developers Distributed under the MIT software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index 00d13748..6928da3d 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Paycoin 0.3.0.1 +Paycoin 0.3.0.2 Copyright (c) 2014 Paycoin developers Distributed under the MIT software license, see the accompanying diff --git a/doc/release-notes/release-notes-0.3.0.2.md b/doc/release-notes/release-notes-0.3.0.2.md new file mode 100644 index 00000000..5e6c5ed0 --- /dev/null +++ b/doc/release-notes/release-notes-0.3.0.2.md @@ -0,0 +1,87 @@ +Paycoin version 0.3.0.2 is now available from: + + https://github.com/PaycoinFoundation/paycoin/releases + +This is a mandatory update, including a modification to the primenode stake +rate and many bug fixes. + +Please report bugs using the issue tracker at github: + + https://github.com/PaycoinFoundation/paycoin/issues + +Upgrading and downgrading +========================= + +How to Upgrade +-------------- + +If you are running an older version, shut it down. Wait until it has completely +shut down (this could take a few minutes), then run the installer (on Windows) +or just copy over /Applications/Paycoin-Qt (on Mac) or paycoind/paycoin-qt (on Linux). + +If you encounter any issues starting the new wallet it is recommended that you delete and resync the blockchain. To delete the blockchain look in the +Paycoin data directory (listed below) and delete everything except the wallet.dat and paycoin.conf + +Linux : ~/.paycoin/ + +Windows : %appdata%\Paycoin + +Mac : ~/Library/Application Support/Paycoin + +It is highly recommended that if you do not have a backup of your wallet.dat +to go ahead and make one before deleting the blockchain. + +The listed directories are the defaults, if using the datadir flag make sure to +look in the assigned directory. + +If after the blockchain is synced you find your balance is incorrect please run: + +repairwallet + +If using the daemon this can be done the same as any other command, for QT users +please proceed to help > debug window > console and enter the command from there +(you may press escape to close out of the console). + +Downgrading warning +--------------------- + +Non-primenodes can safely be downgraded to version 0.3.0.1 without issues. +Downgrading a primenode will cause it to fail to stake. + +Notable changes +=============== + +Resolved staking on primenodes. +--------------------- + +Removed reserve on primenodes as this causes coins that are part of the same +transaction as the reserve to fail to stake. + +0.3.0.2 Change log +=================== + +Detailed release notes follow. + +GUI: +- `e857686` Minor Splashscreen Fix +- `f9b2fc4` XPY Icon Size Fix + +Validation / Staking: +- `d4e1e00` Revert "Disable compound staking on primenodes." + +Miscellaneous: +- `63445fd` Fix some misspellings + +Credits +======= + +Thanks to everyone who contributed to this release: + +- Nathan Bass +- Mitchell Cash +- Victor Vargas + +The following were instrumental in planning and release preparation: + +- Jason Sponaugle +- Matthew Eden diff --git a/paycoin.pro b/paycoin.pro index 77ffd5d7..76497a8e 100644 --- a/paycoin.pro +++ b/paycoin.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = paycoin-qt -VERSION = 0.3.0.1 +VERSION = 0.3.0.2 INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE USE_IPV6 CONFIG += no_include_pwd diff --git a/share/setup.nsi b/share/setup.nsi index 26c98a6e..b8a957ce 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.3.0.1 +!define VERSION 0.3.0.2 !define COMPANY "Paycoin project" !define URL https://github.com/PaycoinFoundation/paycoin/ diff --git a/src/version.h b/src/version.h index 7f95ace0..a0baad34 100644 --- a/src/version.h +++ b/src/version.h @@ -18,7 +18,7 @@ #define PEERUNITY_VERSION_MAJOR 0 #define PEERUNITY_VERSION_MINOR 3 #define PEERUNITY_VERSION_REVISION 0 -#define PEERUNITY_VERSION_BUILD 1 +#define PEERUNITY_VERSION_BUILD 2 static const int PEERUNITY_VERSION = 1000000 * PEERUNITY_VERSION_MAJOR