Skip to content

Commit

Permalink
Bump to 5.0.1 and release notes (#711)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex v committed Jun 8, 2020
1 parent 74d643a commit 7cbb0de
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -2,7 +2,7 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 5)
define(_CLIENT_VERSION_MINOR, 0)
define(_CLIENT_VERSION_REVISION, 0)
define(_CLIENT_VERSION_REVISION, 1)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_CLIENT_BUILD_IS_TEST_RELEASE, false)
Expand Down
2 changes: 1 addition & 1 deletion doc/Doxyfile
Expand Up @@ -34,7 +34,7 @@ PROJECT_NAME = NavCoin
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = 5.0.0
PROJECT_NUMBER = 5.0.1

# 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
Expand Down
44 changes: 44 additions & 0 deletions doc/release-notes/release-notes-5.0.1.md
@@ -0,0 +1,44 @@
# NavCoin v5.0.1 Release Notes

## Fix getaddressbalance for address reuse

<[Pull Request 691](https://github.com/navcoin/navcoin-core/pull/691)>

## Updated the message that RPC call returns after encrypting wallet

<[Pull Request 708](https://github.com/navcoin/navcoin-core/pull/708)>

## Added more progress indicators during wallet start up

<[Pull Request 702](https://github.com/navcoin/navcoin-core/pull/702)>

## Added a password step to setup wizard

<[Pull Request 700](https://github.com/navcoin/navcoin-core/pull/700)>

## Fix for crash when voting for payment request

<[Pull Request 706](https://github.com/navcoin/navcoin-core/pull/706)>

## Added new show/dump mnemonic UI, similar to the dumpmnemonic RPC call

<[Pull Request 692](https://github.com/navcoin/navcoin-core/pull/692)>

## Fixed qa/rpc-tests/dao-consultation-consensus.py

<[Pull Request 703](https://github.com/navcoin/navcoin-core/pull/703)>

## Updated the encrypt wallet logic to not replace master key

<[Pull Request 697](https://github.com/navcoin/navcoin-core/pull/697)>

## Fixed some functional tests that were checking for state == 0 for expired proposals or prequests

<[Pull Request 698](https://github.com/navcoin/navcoin-core/pull/698)>

## Updated price update timer to respect shutdown request

<[Pull Request 696](https://github.com/navcoin/navcoin-core/pull/696)>

For additional information about new features, check [https://navcoin.org/en/notices/](https://navcoin.org/en/notices/)

2 changes: 1 addition & 1 deletion src/clientversion.h
Expand Up @@ -16,7 +16,7 @@
//! These need to be macros, as clientversion.cpp's and navcoin*-res.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 5
#define CLIENT_VERSION_MINOR 0
#define CLIENT_VERSION_REVISION 0
#define CLIENT_VERSION_REVISION 1
#define CLIENT_VERSION_BUILD 0

//! Set to true for release, false for prerelease or test build
Expand Down

0 comments on commit 7cbb0de

Please sign in to comment.