From 3b025b23529d6c34d78f274f967b5b4c1903b601 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Tue, 22 Oct 2013 16:40:51 -0500 Subject: [PATCH] Prepare for release 0.3.2. --- CHANGES | 22 ++++++++++++++++++++++ version.go | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 245816d4..2121035a 100644 --- a/CHANGES +++ b/CHANGES @@ -3,6 +3,28 @@ User visible changes for btcd A full-node bitcoin implementation written in Go ============================================================================ +Changes in 0.3.2 (Tue Oct 22 2013) + - Fix an issue that could cause the download of the block chain to stall + (https://github.com/conformal/btcd/issues/12) + - Remove deprecated sqlite as an available database backend + - Close sqlite compile issue as sqlite has now been removed + (https://github.com/conformal/btcd/issues/11) + - Change default RPC ports to 8334 (mainnet) and 18334 (testnet) + - Continue cleanup and work on implementing RPC API calls + - Add support for the following RPC calls: getrawmempool, + getbestblockhash, decoderawtransaction, getdifficulty, + getconnectioncount, getpeerinfo, and addnode + - Improve the btcctl utility that is used to issue JSON-RPC commands + - Fix an issue preventing btcd from cleanly shutting down with the RPC + stop command + - Add a number of database interface tests to ensure backends implement + the expected interface + - Expose some additional information from btcscript to be used for + identifying "standard"" transactions + - Add support for plan9 - thanks @mischief + (https://github.com/conformal/btcd/pull/19) + - Other minor bug fixes and general code cleanup + Changes in 0.3.1-alpha (Tue Oct 15 2013) - Change default database to leveldb NOTE: This does mean you will have to redownload the block chain. Since we diff --git a/version.go b/version.go index 12c48daa..6c0ee628 100644 --- a/version.go +++ b/version.go @@ -18,7 +18,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr const ( appMajor uint = 0 appMinor uint = 3 - appPatch uint = 1 + appPatch uint = 2 // appPreRelease MUST only contain characters from semanticAlphabet // per the semantic versioning spec.