changelog and version

This commit is contained in:
Ethan Buchman 2018-07-05 12:03:23 -04:00
parent 07747de305
commit 2fa9962835
2 changed files with 16 additions and 5 deletions

View File

@ -1,8 +1,19 @@
# Changelog
## 0.23.0
## 0.22.1
*TBD*
*July 5th, 2018*
IMPROVEMENTS
* Cleanup post repo-merge.
* [docs] Various improvements.
BUG FIXES
* [state] Return error when EndBlock returns a 0-power validator that isn't
already in the validator set.
* [consensus] Shut down WAL properly.
## 0.22.0

View File

@ -3,14 +3,14 @@ package version
// Version components
const (
Maj = "0"
Min = "23"
Fix = "0"
Min = "22"
Fix = "1"
)
var (
// Version is the current version of Tendermint
// Must be a string because scripts like dist.sh read this file.
Version = "0.23.0-dev"
Version = "0.22.1"
// GitCommit is the current HEAD set using ldflags.
GitCommit string