From 41c176ccc6a75d25631d0f891efb2e19a33329dc Mon Sep 17 00:00:00 2001 From: "M. J. Fromberger" Date: Thu, 2 Dec 2021 09:32:55 -0800 Subject: [PATCH] Prepare release v0.34.15. (#7371) --- CHANGELOG.md | 15 +++++++++++++++ CHANGELOG_PENDING.md | 10 ++-------- version/version.go | 2 +- 3 files changed, 18 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 011bfd30d..00c58211c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ Friendly reminder, we have a [bug bounty program](https://hackerone.com/cosmos). +## v0.34.15 + +Special thanks to external contributors on this release: @thanethomson + +### BUG FIXES + +- [\#7368](https://github.com/tendermint/tendermint/issues/7368) cmd: add integration test for rollback functionality (@cmwaters). +- [\#7309](https://github.com/tendermint/tendermint/issues/7309) pubsub: Report a non-nil error when shutting down (fixes #7306). +- [\#7057](https://github.com/tendermint/tendermint/pull/7057) Import Postgres driver support for the psql indexer (@creachadair). +- [\#7106](https://github.com/tendermint/tendermint/pull/7106) Revert mutex change to ABCI Clients (@tychoish). + +### IMPROVEMENTS + +- [config] [\#7230](https://github.com/tendermint/tendermint/issues/7230) rpc: Add experimental config params to allow for subscription buffer size control (@thanethomson). + ## v0.34.14 This release backports the `rollback` feature to allow recovery in the event of an incorrect app hash. diff --git a/CHANGELOG_PENDING.md b/CHANGELOG_PENDING.md index 6569ea0df..bee423db9 100644 --- a/CHANGELOG_PENDING.md +++ b/CHANGELOG_PENDING.md @@ -1,8 +1,8 @@ # Unreleased Changes -## v0.34.15 +## v0.34.16 -Special thanks to external contributors on this release: @thanethomson +Special thanks to external contributors on this release: Friendly reminder, we have a [bug bounty program](https://hackerone.com/tendermint). @@ -10,8 +10,6 @@ Friendly reminder, we have a [bug bounty program](https://hackerone.com/tendermi - CLI/RPC/Config - - [config] [\#7230](https://github.com/tendermint/tendermint/issues/7230) rpc: Add experimental config params to allow for subscription buffer size control (@thanethomson). - - Apps - P2P Protocol @@ -25,7 +23,3 @@ Friendly reminder, we have a [bug bounty program](https://hackerone.com/tendermi ### IMPROVEMENTS ### BUG FIXES - -- [\#7309](https://github.com/tendermint/tendermint/issues/7309) pubsub: Report a non-nil error when shutting down (fixes #7306). -- [\#7057](https://github.com/tendermint/tendermint/pull/7057) Import Postgres driver support for the psql indexer (@creachadair). -- [\#7106](https://github.com/tendermint/tendermint/pull/7106) Revert mutex change to ABCI Clients (@tychoish). diff --git a/version/version.go b/version/version.go index 303e0780d..146465ed5 100644 --- a/version/version.go +++ b/version/version.go @@ -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.14" + TMVersionDefault = "0.34.15" // ABCISemVer is the semantic version of the ABCI library ABCISemVer = "0.17.0"