From c777be256a03d9608a620dad5c0d40870f898c91 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Sun, 3 Jun 2018 16:11:21 -0400 Subject: [PATCH] changelog, version --- CHANGELOG.md | 11 +++++++++-- version/version.go | 4 ++-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dabf97da..2f78cb79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,14 @@ # Changelog -- [p2p] remove `auth_enc` config option, peer connections are always auth - encrypted +## 0.19.8 + +*TBD* + +BREAKING: + +- [p2p] Remove `auth_enc` config option, peer connections are always auth + encrypted. Technically a breaking change but seems no one was using it and + arguably a bug fix :) ## 0.19.7 diff --git a/version/version.go b/version/version.go index c235d6a7..1c0a639b 100644 --- a/version/version.go +++ b/version/version.go @@ -4,13 +4,13 @@ package version const ( Maj = "0" Min = "19" - Fix = "7" + Fix = "8" ) var ( // Version is the current version of Tendermint // Must be a string because scripts like dist.sh read this file. - Version = "0.19.7" + Version = "0.19.8-dev" // GitCommit is the current HEAD set using ldflags. GitCommit string