From bb9ee2ca2818a687ef7860ff3b893865ad65c49c Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Mon, 29 Jul 2019 17:58:58 +0400 Subject: [PATCH] bump version and update changelog --- CHANGELOG.md | 12 ++++++++++++ CHANGELOG_PENDING.md | 3 --- version/version.go | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 068d99c3c..5bfcf36cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +*July 29, 2019* + +This releases fixes one bug in the PEX reactor and adds a `recover` to the Go's +ABCI server, which allows it to properly cleanup. + +### IMPROVEMENTS: +- [abci] \#3809 Recover from application panics in `server/socket_server.go` to allow socket cleanup (@ruseinov) + +### BUG FIXES: +- [p2p] \#3338 Prevent "sent next PEX request too soon" errors by not calling + ensurePeers outside of ensurePeersRoutine + ## v0.31.7 *June 3, 2019* diff --git a/CHANGELOG_PENDING.md b/CHANGELOG_PENDING.md index d913443a2..f211a27f3 100644 --- a/CHANGELOG_PENDING.md +++ b/CHANGELOG_PENDING.md @@ -17,8 +17,5 @@ ### FEATURES: ### IMPROVEMENTS: -- [abci] \#3809 Recover from application panics in `server/socket_server.go` to allow socket cleanup (@ruseinov) ### BUG FIXES: -- [p2p] \#3338 Prevent "sent next PEX request too soon" errors by not calling - ensurePeers outside of ensurePeersRoutine diff --git a/version/version.go b/version/version.go index 1a15717f7..b0d4ff1a5 100644 --- a/version/version.go +++ b/version/version.go @@ -20,7 +20,7 @@ const ( // Must be a string because scripts like dist.sh read this file. // XXX: Don't change the name of this variable or you will break // automation :) - TMCoreSemVer = "0.31.7" + TMCoreSemVer = "0.31.8" // ABCISemVer is the semantic version of the ABCI library ABCISemVer = "0.16.0"