Browse Source

changelog and version

pull/1915/head
Ethan Buchman 6 years ago
parent
commit
2fa9962835
2 changed files with 16 additions and 5 deletions
  1. +13
    -2
      CHANGELOG.md
  2. +3
    -3
      version/version.go

+ 13
- 2
CHANGELOG.md 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


+ 3
- 3
version/version.go 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


Loading…
Cancel
Save