Browse Source

Merge branch 'master' into develop

pull/737/head
Ethan Buchman 7 years ago
parent
commit
27245ce6f6
2 changed files with 15 additions and 2 deletions
  1. +13
    -0
      CHANGELOG.md
  2. +2
    -2
      version/version.go

+ 13
- 0
CHANGELOG.md View File

@ -28,6 +28,19 @@ 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)
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
- consensus: fix wal autofile via https://github.com/tendermint/tmlibs/blob/master/CHANGELOG.md#032-october-2-2017
## 0.11.0 (September 22, 2017)
BREAKING:


+ 2
- 2
version/version.go View File

@ -2,11 +2,11 @@ package version
const Maj = "0"
const Min = "11"
const Fix = "0"
const Fix = "1"
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


Loading…
Cancel
Save