update changelog and bump version to 0.22.5

This commit is contained in:
Anton Kaliaev 2018-07-23 17:07:14 +04:00
parent 94e8252607
commit 1e05242297
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
2 changed files with 6 additions and 2 deletions

View File

@ -2,6 +2,10 @@
## TBA
## 0.22.5
*July 23th, 2018*
BREAKING CHANGES:
- [crypto] Refactor `tendermint/crypto` into many subpackages
- [libs/common] remove exponentially distributed random numbers

View File

@ -4,13 +4,13 @@ package version
const (
Maj = "0"
Min = "22"
Fix = "4"
Fix = "5"
)
var (
// Version is the current version of Tendermint
// Must be a string because scripts like dist.sh read this file.
Version = "0.22.4"
Version = "0.22.5"
// GitCommit is the current HEAD set using ldflags.
GitCommit string