From 3470e5d7b3e94159fff11fbae1ef572a971f2cdc Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Mon, 18 Jun 2018 17:15:41 -0700 Subject: [PATCH] changelog and version --- CHANGELOG.md | 8 ++++++++ version/version.go | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7f9baf2..ed524e50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.20.1 + +*June 18th, 2018* + +BUG FIXES + +[consensus] Fix #1754 where we don't make blocks when `create_empty_blocks=false` + ## 0.20.0 *June 6th, 2018* diff --git a/version/version.go b/version/version.go index e6c1815b..e0e6cc2c 100644 --- a/version/version.go +++ b/version/version.go @@ -4,13 +4,13 @@ package version const ( Maj = "0" Min = "20" - Fix = "0" + Fix = "1" ) var ( // Version is the current version of Tendermint // Must be a string because scripts like dist.sh read this file. - Version = "0.20.0" + Version = "0.20.1" // GitCommit is the current HEAD set using ldflags. GitCommit string