Skip to content

Commit

Permalink
changelog and version (cometbft#3709)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebuchman authored Jun 3, 2019
1 parent 048ac8d commit 65a3dfe
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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*
Expand Down
4 changes: 1 addition & 3 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## v0.31.7
## v0.31.8

**

Expand All @@ -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.
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 65a3dfe

Please sign in to comment.