Browse Source

changelog and version (#3709)

release/v0.31.7
Ethan Buchman 5 years ago
committed by GitHub
parent
commit
65a3dfe235
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 17 additions and 4 deletions
  1. +15
    -0
      CHANGELOG.md
  2. +1
    -3
      CHANGELOG_PENDING.md
  3. +1
    -1
      version/version.go

+ 15
- 0
CHANGELOG.md View File

@ -1,5 +1,20 @@
# Changelog
## v0.31.7
*June 3, 2019*
This releases fixes a regression in the mempool introduced in v0.31.6.
The regression caused the invalid committed txs to be proposed in blocks over and
over again.
### BUG FIXES:
- [mempool] \#3699 Remove all committed txs from the mempool.
This reverts the change from v0.31.6 where we only remove valid txs from the mempool.
Note this means malicious proposals can cause txs to be dropped from the
mempools of other nodes by including them in blocks before they are valid.
See \#3322.
## v0.31.6
*May 31st, 2019*


+ 1
- 3
CHANGELOG_PENDING.md View File

@ -1,4 +1,4 @@
## v0.31.7
## v0.31.8
**
@ -19,5 +19,3 @@
### IMPROVEMENTS:
### BUG FIXES:
- [mempool] \#3699 Revert the change where we only remove valid transactions
from the mempool once a block is committed.

+ 1
- 1
version/version.go 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.5"
TMCoreSemVer = "0.31.7"
// ABCISemVer is the semantic version of the ABCI library
ABCISemVer = "0.16.0"


Loading…
Cancel
Save