changelog, version

This commit is contained in:
Ethan Buchman 2018-06-03 16:11:21 -04:00
parent d66f8bf829
commit c777be256a
2 changed files with 11 additions and 4 deletions

View File

@ -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

View File

@ -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