Browse Source

changelog and version

pull/2656/head v0.25.1-rc0
Ethan Buchman 6 years ago
parent
commit
90eda9bfb6
3 changed files with 13 additions and 6 deletions
  1. +11
    -2
      CHANGELOG.md
  2. +0
    -2
      CHANGELOG_PENDING.md
  3. +2
    -2
      version/version.go

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


+ 0
- 2
CHANGELOG_PENDING.md 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

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


Loading…
Cancel
Save