From 1e05242297fbea15eb5a3c985bed16f13e373de5 Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Mon, 23 Jul 2018 17:07:14 +0400 Subject: [PATCH] update changelog and bump version to 0.22.5 --- CHANGELOG.md | 4 ++++ version/version.go | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff8861a5..c480be9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## TBA +## 0.22.5 + +*July 23th, 2018* + BREAKING CHANGES: - [crypto] Refactor `tendermint/crypto` into many subpackages - [libs/common] remove exponentially distributed random numbers diff --git a/version/version.go b/version/version.go index 165f2582..70626437 100644 --- a/version/version.go +++ b/version/version.go @@ -4,13 +4,13 @@ package version const ( Maj = "0" Min = "22" - Fix = "4" + Fix = "5" ) var ( // Version is the current version of Tendermint // Must be a string because scripts like dist.sh read this file. - Version = "0.22.4" + Version = "0.22.5" // GitCommit is the current HEAD set using ldflags. GitCommit string