bump version and update changelog

This commit is contained in:
Anton Kaliaev 2019-07-29 17:58:58 +04:00
parent fe54b3323c
commit bb9ee2ca28
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
3 changed files with 13 additions and 4 deletions

View File

@ -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*

View File

@ -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

View File

@ -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"