Browse Source
Merge pull request #3063 from tendermint/master
Merge master back to develop
pull/3075/head
Ethan Buchman
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
11 additions and
1 deletions
-
CHANGELOG.md
-
version/version.go
|
|
@ -1,5 +1,15 @@ |
|
|
|
# Changelog |
|
|
|
|
|
|
|
## v0.27.4 |
|
|
|
|
|
|
|
*December 21st, 2018* |
|
|
|
|
|
|
|
### BUG FIXES: |
|
|
|
|
|
|
|
- [mempool] [\#3036](https://github.com/tendermint/tendermint/issues/3036) Fix |
|
|
|
LRU cache by popping the least recently used item when the cache is full, |
|
|
|
not the most recently used one! |
|
|
|
|
|
|
|
## v0.27.3 |
|
|
|
|
|
|
|
*December 16th, 2018* |
|
|
|
|
|
@ -18,7 +18,7 @@ const ( |
|
|
|
// TMCoreSemVer is the current version of Tendermint Core.
|
|
|
|
// It's the Semantic Version of the software.
|
|
|
|
// Must be a string because scripts like dist.sh read this file.
|
|
|
|
TMCoreSemVer = "0.27.3" |
|
|
|
TMCoreSemVer = "0.27.4" |
|
|
|
|
|
|
|
// ABCISemVer is the semantic version of the ABCI library
|
|
|
|
ABCISemVer = "0.15.0" |
|
|
|