Update changelog for release v0.34.17 (#8239)

This commit is contained in:
William Banfield
2022-04-01 17:50:48 -04:00
committed by GitHub
parent 799489e474
commit 2c553d735a
3 changed files with 15 additions and 4 deletions

View File

@@ -2,6 +2,19 @@
Friendly reminder, we have a [bug bounty program](https://hackerone.com/cosmos).
## v0.34.17
### BREAKING CHANGES
- CLI/RPC/Config
- [cli] [\#8081](https://github.com/tendermint/tendermint/issues/8081) make the reset command safe to use (@marbar3778).
### BUG FIXES
- [consensus] [\#8079](https://github.com/tendermint/tendermint/issues/8079) start the timeout ticker before relay (backport #7844) (@creachadair).
- [consensus] [\#7992](https://github.com/tendermint/tendermint/issues/7992) [\#7994](https://github.com/tendermint/tendermint/issues/7994) change lock handling in handleMsg and reactor to alleviate issues gossiping during long ABCI calls (@williambanfield).
## v0.34.16
Special thanks to external contributors on this release: @yihuang

View File

@@ -1,6 +1,6 @@
# Unreleased Changes
## v0.34.16
## v0.34.18
Special thanks to external contributors on this release:
@@ -10,8 +10,6 @@ Friendly reminder, we have a [bug bounty program](https://hackerone.com/tendermi
- CLI/RPC/Config
- [cli] \#8081 make the reset command safe to use (@marbar3778).
- Apps
- P2P Protocol

View File

@@ -7,7 +7,7 @@ var (
const (
// TMVersionDefault is the used as the fallback version of Tendermint Core
// when not using git describe. It is formatted with semantic versioning.
TMVersionDefault = "0.34.16"
TMVersionDefault = "0.34.17"
// ABCISemVer is the semantic version of the ABCI library
ABCISemVer = "0.17.0"