From 338c7115740536c0382970f145704ba153fac93d Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Fri, 6 Mar 2015 12:16:25 -0500 Subject: [PATCH] Prepare for release 0.5.1. --- CHANGES | 14 ++++++++++++++ version.go | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 6440f17b4e..872b01d893 100644 --- a/CHANGES +++ b/CHANGES @@ -3,6 +3,20 @@ User visible changes for btcwallet A wallet daemon for btcd, written in Go ============================================================================ +Changes in 0.5.1 (Fri Mar 06 2015) + - New features: + - Add flag (--createtemp) to create a temporary simnet wallet + + - Bug fixes: + - Mark newly received transactions confirmed when the wallet is initially + created or opened with no addresses + + - Notable developer-related changes: + - Refactor the address manager database upgrade paths for easier future + upgrades + - Private key zeroing functions consolidated into the internal zero package + and optimized + Changes in 0.5.0 (Tue Mar 03 2015) - New features: - Add a new address manager package (waddrmgr) to replace the previous diff --git a/version.go b/version.go index b77a14a179..fb6a7ec0c9 100644 --- a/version.go +++ b/version.go @@ -30,7 +30,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr const ( appMajor uint = 0 appMinor uint = 5 - appPatch uint = 0 + appPatch uint = 1 // appPreRelease MUST only contain characters from semanticAlphabet // per the semantic versioning spec.