Prepare for release 0.2.1.
This commit is contained in:
parent
6f022e23cc
commit
f82ca754ca
2 changed files with 5 additions and 1 deletions
4
CHANGES
4
CHANGES
|
@ -3,6 +3,10 @@ User visible changes for btcwallet
|
||||||
A wallet daemon for btcd, written in Go
|
A wallet daemon for btcd, written in Go
|
||||||
============================================================================
|
============================================================================
|
||||||
|
|
||||||
|
Changes in 0.2.1 (Thu Jan 10 2014)
|
||||||
|
- Fix a mutex isssue which caused btcwallet to lockup on all
|
||||||
|
RPC requests needing to read or write an account
|
||||||
|
|
||||||
Changes in 0.2.0 (Thu Jan 09 2014)
|
Changes in 0.2.0 (Thu Jan 09 2014)
|
||||||
- Enable mainnet support (disabled by default, use --mainnet to enable)
|
- Enable mainnet support (disabled by default, use --mainnet to enable)
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
|
||||||
const (
|
const (
|
||||||
appMajor uint = 0
|
appMajor uint = 0
|
||||||
appMinor uint = 2
|
appMinor uint = 2
|
||||||
appPatch uint = 0
|
appPatch uint = 1
|
||||||
|
|
||||||
// appPreRelease MUST only contain characters from semanticAlphabet
|
// appPreRelease MUST only contain characters from semanticAlphabet
|
||||||
// per the semantic versioning spec.
|
// per the semantic versioning spec.
|
||||||
|
|
Loading…
Reference in a new issue