changelog and version

This commit is contained in:
Ethan Buchman 2018-10-17 22:09:48 -04:00
parent 1ad379aa87
commit 90eda9bfb6
3 changed files with 13 additions and 6 deletions

View File

@ -1,5 +1,14 @@
# Changelog
## v0.25.1
*October 17, 2018*
BUG FIXES:
- [state] [\#2616](https://github.com/tendermint/tendermint/issues/2616) Fix panic when genesis file's `validators` field is nil
- [consensus] [\#2634](https://github.com/tendermint/tendermint/issues/2634) Set `NextValidators` during replay
## v0.25.0
*September 22, 2018*
@ -164,8 +173,8 @@ BUG FIXES:
*August 22nd, 2018*
BUG FIXES:
- [libs/autofile] \#2261 Fix log rotation so it actually happens.
- Fixes issues with consensus WAL growing unbounded ala \#2259
- [libs/autofile] [\#2261](https://github.com/tendermint/tendermint/issues/2261) Fix log rotation so it actually happens.
- Fixes issues with consensus WAL growing unbounded ala [\#2259](https://github.com/tendermint/tendermint/issues/2259)
## 0.23.0

View File

@ -15,5 +15,3 @@ FEATURES:
IMPROVEMENTS:
BUG FIXES:
- \#2616 Pass nil to NewValidatorSet() when genesis file's Validators field is nil
- \#2634 Set next validators along with validators while replay

View File

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