Browse Source

changelog, version

pull/1673/head
Ethan Buchman 6 years ago
parent
commit
c777be256a
2 changed files with 11 additions and 4 deletions
  1. +9
    -2
      CHANGELOG.md
  2. +2
    -2
      version/version.go

+ 9
- 2
CHANGELOG.md 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


+ 2
- 2
version/version.go 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


Loading…
Cancel
Save