Skip to content

Commit d12b3a1

Browse files
committed
Prepare for release 0.11.1.
1 parent 58fa972 commit d12b3a1

File tree

3 files changed

+36
-2
lines changed

3 files changed

+36
-2
lines changed

CHANGES

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,40 @@ User visible changes for btcd
33
A full-node bitcoin implementation written in Go
44
============================================================================
55

6+
Changes in 0.11.1 (Wed May 27 2015)
7+
- Protocol and network related changes:
8+
- Use correct sub-command in reject message for rejected transactions
9+
(#436, #437)
10+
- Add a new parameter --torisolation which forces new circuits for each
11+
connection when using tor (#430)
12+
- Transaction relay (memory pool) changes:
13+
- Reduce the default number max number of allowed orphan transactions
14+
to 1000 (#419)
15+
- Add a new parameter --maxorphantx which allows the maximum number of
16+
orphan transactions stored in the mempool to be specified (#419)
17+
- RPC changes:
18+
- Modify listtransactions result to include the 'involveswatchonly' and
19+
'vout' fields (#427)
20+
- Update getrawtransaction result to omit the 'confirmations' field
21+
when it is 0 (#420, #422)
22+
- Update signrawtransaction result to include errors (#423)
23+
- btcctl utility changes:
24+
- Add gettxoutproof command (#428)
25+
- Add verifytxoutproof command (#428)
26+
- Notable developer-related package changes:
27+
- The btcec package now provides the ability to perform ECDH
28+
encryption and decryption (#375)
29+
- The block and header validation in the blockchain package has been
30+
split to help pave the way toward concurrent downloads (#386)
31+
- Misc changes:
32+
- Minor peer optimization (#433)
33+
- Contributors (alphabetical order):
34+
- Dave Collins
35+
- David Hill
36+
- Federico Bond
37+
- Ishbir Singh
38+
- Josh Rickmar
39+
640
Changes in 0.11.0 (Wed May 06 2015)
741
- Protocol and network related changes:
842
- **IMPORTANT: Update is required due to the following point**

cmd/btcctl/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
1818
const (
1919
appMajor uint = 0
2020
appMinor uint = 11
21-
appPatch uint = 0
21+
appPatch uint = 1
2222

2323
// appPreRelease MUST only contain characters from semanticAlphabet
2424
// per the semantic versioning spec.

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
1818
const (
1919
appMajor uint = 0
2020
appMinor uint = 11
21-
appPatch uint = 0
21+
appPatch uint = 1
2222

2323
// appPreRelease MUST only contain characters from semanticAlphabet
2424
// per the semantic versioning spec.

0 commit comments

Comments
 (0)