From e4dfab6349026c40bd737933a1ff86e6dcb033ef Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Thu, 26 Jul 2018 18:54:15 -0400 Subject: [PATCH] changelog and version --- CHANGELOG.md | 9 +++++++++ version/version.go | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 929d11d9..c0dca0af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.22.7 + +*July 26th, 2018* + +BUG FIXES + +- [consensus, blockchain] Register the Evidence interface so it can be + marshalled/unmarshalled by the blockchain and consensus reactors + ## 0.22.6 *July 24th, 2018* diff --git a/version/version.go b/version/version.go index 5ef4aadb..474c43a3 100644 --- a/version/version.go +++ b/version/version.go @@ -4,13 +4,13 @@ package version const ( Maj = "0" Min = "22" - Fix = "6" + Fix = "7" ) var ( // Version is the current version of Tendermint // Must be a string because scripts like dist.sh read this file. - Version = "0.22.6" + Version = "0.22.7" // GitCommit is the current HEAD set using ldflags. GitCommit string