From 4bd4d59af5dec5732299a60ecb6411056bbd0f92 Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Tue, 10 Oct 2017 01:14:00 +0400 Subject: [PATCH 1/5] update changelog [ci skip] --- CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e911e073..aa7731b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,22 @@ BUG FIXES: - Graceful handling/recovery for apps that have non-determinism or fail to halt - Graceful handling/recovery for violations of safety, or liveness +## 0.11.1 (October 10, 2017) + +BREAKING CHANGES: + - p2p: removed IPRangeCount* functions + +IMPROVEMENTS: + - blockchain/reactor: respondWithNoResponseMessage for missing height + +BUG FIXES: + - rpc: fixed client WebSocket timeout + - rpc: client now resubscribes on reconnection + - types: fixed out of range error in VoteSet.addVote + +DEPENDENCIES: + - tmlibs: https://github.com/tendermint/tmlibs/blob/master/CHANGELOG.md#032-october-2-2017 + ## 0.11.0 (September 22, 2017) BREAKING: From 99c4e48038d02dc2867a08c85e36da2d6faa2e69 Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Tue, 10 Oct 2017 01:14:42 +0400 Subject: [PATCH 2/5] return missing package declaration --- rpc/lib/doc.go | 1 + 1 file changed, 1 insertion(+) diff --git a/rpc/lib/doc.go b/rpc/lib/doc.go index 9b13e230..0ea4e5c6 100644 --- a/rpc/lib/doc.go +++ b/rpc/lib/doc.go @@ -100,3 +100,4 @@ Each route is available as a GET request, as a JSONRPCv2 POST request, and via J * [Tendermint](https://github.com/tendermint/tendermint/blob/master/rpc/core/routes.go) * [tm-monitor](https://github.com/tendermint/tools/blob/master/tm-monitor/rpc.go) */ +package rpc From 90a23352672206ff49ec56e89198f90323a41603 Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Tue, 10 Oct 2017 01:18:33 +0400 Subject: [PATCH 3/5] bump version to 0.11.1 --- version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.go b/version/version.go index 504aee68..e44a662a 100644 --- a/version/version.go +++ b/version/version.go @@ -6,7 +6,7 @@ const Fix = "0" var ( // The full version string - Version = "0.11.0" + Version = "0.11.1" // GitCommit is set with --ldflags "-X main.gitCommit=$(git rev-parse HEAD)" GitCommit string From 33565447064b466ef6b604c1dd9bea83923e7e78 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Tue, 10 Oct 2017 11:10:48 -0400 Subject: [PATCH 4/5] update changelog --- CHANGELOG.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa7731b9..c48d0850 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,19 +30,16 @@ BUG FIXES: ## 0.11.1 (October 10, 2017) -BREAKING CHANGES: - - p2p: removed IPRangeCount* functions - IMPROVEMENTS: - blockchain/reactor: respondWithNoResponseMessage for missing height BUG FIXES: - rpc: fixed client WebSocket timeout - rpc: client now resubscribes on reconnection + - rpc: fix panics on missing params + - rpc: fix `/dump_consensus_state` to have normal json output (NOTE: technically breaking, but worth a bug fix label) - types: fixed out of range error in VoteSet.addVote - -DEPENDENCIES: - - tmlibs: https://github.com/tendermint/tmlibs/blob/master/CHANGELOG.md#032-october-2-2017 + - consensus: fix wal autofile via https://github.com/tendermint/tmlibs/blob/master/CHANGELOG.md#032-october-2-2017 ## 0.11.0 (September 22, 2017) From 8c08fc671c28cf16921378fdb7717167253a6d0b Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Tue, 10 Oct 2017 18:47:28 -0400 Subject: [PATCH 5/5] fix version --- version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.go b/version/version.go index e44a662a..b874accc 100644 --- a/version/version.go +++ b/version/version.go @@ -2,7 +2,7 @@ package version const Maj = "0" const Min = "11" -const Fix = "0" +const Fix = "1" var ( // The full version string