update to tm v0.23.1

- fixes unbounded WAL growth
This commit is contained in:
Ethan Buchman 2018-08-22 16:04:26 -04:00
parent 2c6ed0fefc
commit 0bf061b707
4 changed files with 16 additions and 8 deletions

View File

@ -1,5 +1,14 @@
# Changelog # Changelog
## 0.24.2
*August 22nd, 2018*
BUG FIXES
* Tendermint
- Fix unbounded consensus WAL growth
## 0.24.1 ## 0.24.1
*August 21st, 2018* *August 21st, 2018*

9
Gopkg.lock generated
View File

@ -165,13 +165,12 @@
[[projects]] [[projects]]
branch = "master" branch = "master"
digest = "1:a361611b8c8c75a1091f00027767f7779b29cb37c456a71b8f2604c88057ab40" digest = "1:12247a2e99a060cc692f6680e5272c8adf0b8f572e6bce0d7095e624c958a240"
name = "github.com/hashicorp/hcl" name = "github.com/hashicorp/hcl"
packages = [ packages = [
".", ".",
"hcl/ast", "hcl/ast",
"hcl/parser", "hcl/parser",
"hcl/printer",
"hcl/scanner", "hcl/scanner",
"hcl/strconv", "hcl/strconv",
"hcl/token", "hcl/token",
@ -424,7 +423,7 @@
version = "v0.9.2" version = "v0.9.2"
[[projects]] [[projects]]
digest = "1:26146cdb2811ce481e72138439b9b1aa17a64d54364f96bb92f97a9ef8ba4f01" digest = "1:4f15e95fe3888cc75dd34f407d6394cbc7fd3ff24920851b92b295f6a8b556e6"
name = "github.com/tendermint/tendermint" name = "github.com/tendermint/tendermint"
packages = [ packages = [
"abci/client", "abci/client",
@ -487,8 +486,8 @@
"version", "version",
] ]
pruneopts = "UT" pruneopts = "UT"
revision = "013b9cef642f875634c614019ab13b17570778ad" revision = "81df19e68ab1519399fccf0cab81cb75bf9d782e"
version = "v0.23.0" version = "v0.23.1-rc0"
[[projects]] [[projects]]
digest = "1:4dcb0dd65feecb068ce23a234d1a07c7868a1e39f52a6defcae0bb371d03abf6" digest = "1:4dcb0dd65feecb068ce23a234d1a07c7868a1e39f52a6defcae0bb371d03abf6"

View File

@ -57,7 +57,7 @@
[[override]] [[override]]
name = "github.com/tendermint/tendermint" name = "github.com/tendermint/tendermint"
version = "=v0.23.0" version = "=v0.23.1-rc0"
[[constraint]] [[constraint]]
name = "github.com/bartekn/go-bip39" name = "github.com/bartekn/go-bip39"

View File

@ -3,9 +3,9 @@ package version
const Maj = "0" const Maj = "0"
const Min = "24" const Min = "24"
const Fix = "1" const Fix = "2"
const Version = "0.24.1" const Version = "0.24.2"
// GitCommit set by build flags // GitCommit set by build flags
var GitCommit = "" var GitCommit = ""