diff --git a/CHANGELOG.md b/CHANGELOG.md index a288d7404..f19c543d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,12 @@ # Changelog -## 0.20.0 +## 0.19.7 BREAKING: - [libs/pubsub] TagMap#Get returns a string value - [libs/pubsub] NewTagMap accepts a map of strings -## 0.19.6 - FEATURES - [rpc] the RPC documentation is now published to https://tendermint.github.io/slate @@ -19,6 +17,14 @@ IMPROVEMENTS: which is not dependant on external RPC load - [consensus/wal] do not look for height in older files if we've seen height - 1 +## 0.19.6 + +*May 29th, 2018* + +BUG FIXES + +- [blockchain] Fix fast-sync deadlock during high peer turnover + ## 0.19.5 *May 20th, 2018* diff --git a/version/version.go b/version/version.go index ceec57656..32f003bb5 100644 --- a/version/version.go +++ b/version/version.go @@ -4,13 +4,13 @@ package version const ( Maj = "0" Min = "19" - Fix = "6" + Fix = "7" ) var ( // Version is the current version of Tendermint // Must be a string because scripts like dist.sh read this file. - Version = "0.19.6-dev" + Version = "0.19.7-dev" // GitCommit is the current HEAD set using ldflags. GitCommit string