Prepare for release 0.5.1.

This commit is contained in:
Josh Rickmar 2015-03-06 12:16:25 -05:00
parent cec3dc3e83
commit 338c711574
2 changed files with 15 additions and 1 deletions

14
CHANGES
View file

@ -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

View file

@ -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.