From d12b3a144c08994734107a57dfe6462a66b0f495 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Wed, 27 May 2015 11:06:52 -0500 Subject: [PATCH] Prepare for release 0.11.1. --- CHANGES | 34 ++++++++++++++++++++++++++++++++++ cmd/btcctl/version.go | 2 +- version.go | 2 +- 3 files changed, 36 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 7af3507a..ba3be7c3 100644 --- a/CHANGES +++ b/CHANGES @@ -3,6 +3,40 @@ User visible changes for btcd A full-node bitcoin implementation written in Go ============================================================================ +Changes in 0.11.1 (Wed May 27 2015) + - Protocol and network related changes: + - Use correct sub-command in reject message for rejected transactions + (#436, #437) + - Add a new parameter --torisolation which forces new circuits for each + connection when using tor (#430) + - Transaction relay (memory pool) changes: + - Reduce the default number max number of allowed orphan transactions + to 1000 (#419) + - Add a new parameter --maxorphantx which allows the maximum number of + orphan transactions stored in the mempool to be specified (#419) + - RPC changes: + - Modify listtransactions result to include the 'involveswatchonly' and + 'vout' fields (#427) + - Update getrawtransaction result to omit the 'confirmations' field + when it is 0 (#420, #422) + - Update signrawtransaction result to include errors (#423) + - btcctl utility changes: + - Add gettxoutproof command (#428) + - Add verifytxoutproof command (#428) + - Notable developer-related package changes: + - The btcec package now provides the ability to perform ECDH + encryption and decryption (#375) + - The block and header validation in the blockchain package has been + split to help pave the way toward concurrent downloads (#386) + - Misc changes: + - Minor peer optimization (#433) + - Contributors (alphabetical order): + - Dave Collins + - David Hill + - Federico Bond + - Ishbir Singh + - Josh Rickmar + Changes in 0.11.0 (Wed May 06 2015) - Protocol and network related changes: - **IMPORTANT: Update is required due to the following point** diff --git a/cmd/btcctl/version.go b/cmd/btcctl/version.go index f63e10e6..12a27ab5 100644 --- a/cmd/btcctl/version.go +++ b/cmd/btcctl/version.go @@ -18,7 +18,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr const ( appMajor uint = 0 appMinor uint = 11 - appPatch uint = 0 + appPatch uint = 1 // appPreRelease MUST only contain characters from semanticAlphabet // per the semantic versioning spec. diff --git a/version.go b/version.go index a3fa84e7..c9a7a3d3 100644 --- a/version.go +++ b/version.go @@ -18,7 +18,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr const ( appMajor uint = 0 appMinor uint = 11 - appPatch uint = 0 + appPatch uint = 1 // appPreRelease MUST only contain characters from semanticAlphabet // per the semantic versioning spec.