Browse Source
update changelog and bump version to 0.22.5
pull/2029/head
Anton Kaliaev
6 years ago
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
2 changed files with
6 additions and
2 deletions
-
CHANGELOG.md
-
version/version.go
|
|
@ -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 |
|
|
|
|
|
@ -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 |
|
|
|