Skip to content

Commit 5989a73

Browse files
authoredFeb 27, 2023
Release v0.34.27 (celestiaorg#388)
* Fix formatting of changelog entries Signed-off-by: Thane Thomson <[email protected]> * Prepare release changelog Signed-off-by: Thane Thomson <[email protected]> * Build changelog Signed-off-by: Thane Thomson <[email protected]> * version: Bump to v0.34.27 Signed-off-by: Thane Thomson <[email protected]> * Update contributor list in thanks section Signed-off-by: Thane Thomson <[email protected]> * Move changelog entry to v0.34.27 release Signed-off-by: Thane Thomson <[email protected]> * Fix changelog entry formatting Signed-off-by: Thane Thomson <[email protected]> * Rebuild changelog Signed-off-by: Thane Thomson <[email protected]> --------- Signed-off-by: Thane Thomson <[email protected]>
1 parent 2bd50e0 commit 5989a73

27 files changed

+69
-13
lines changed
 

‎.changelog/unreleased/.gitkeep

Whitespace-only changes.

‎.changelog/unreleased/breaking-changes/211-deprecate-tmhome.md

-2
This file was deleted.

‎.changelog/unreleased/bug-fixes/383-txindexer-fix-slash-parsing.md

-1
This file was deleted.

‎.changelog/unreleased/bug-fixes/386-quick-fix-needproofblock.md

-2
This file was deleted.

‎.changelog/unreleased/bug-fixes/4-busy-loop-send-block-part.md

-2
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
- Rename binary to `cometbft` and Docker image to `cometbft/cometbft`
2-
([\#152](https://github.com/cometbft/cometbft/pull/152))
2+
([\#152](https://github.com/cometbft/cometbft/pull/152))
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- The `TMHOME` environment variable was renamed to `CMTHOME`, and all
2+
environment variables starting with `TM_` are instead prefixed with `CMT_`
3+
([\#211](https://github.com/cometbft/cometbft/issues/211))
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
- Use Go 1.19 to build CometBFT, since Go 1.18 has reached end-of-life.
2-
([\#360](https://github.com/cometbft/cometbft/issues/360))
2+
([\#360](https://github.com/cometbft/cometbft/issues/360))
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- `[state/kvindexer]` Resolved crashes when event values contained slashes,
2+
introduced after adding event sequences.
3+
(\#[383](https://github.com/cometbft/cometbft/pull/383): @jmalicevic)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
- `[consensus]` Short-term fix for the case when `needProofBlock` cannot find
2+
previous block meta by defaulting to the creation of a new proof block.
3+
([\#386](https://github.com/cometbft/cometbft/pull/386): @adizere)
4+
- Special thanks to the [Vega.xyz](https://vega.xyz/) team, and in particular
5+
to Zohar (@ze97286), for reporting the problem and working with us to get to
6+
a fix.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- `[consensus]` Fixed a busy loop that happened when sending of a block part
2+
failed by sleeping in case of error.
3+
([\#4](https://github.com/informalsystems/tendermint/pull/4))

‎.changelog/v0.34.27/summary.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
*Feb 27, 2023*
2+
3+
This is the first official release of CometBFT - a fork of [Tendermint
4+
Core](https://github.com/tendermint/tendermint). This particular release is
5+
intended to be compatible with the Tendermint Core v0.34 release series.
6+
7+
For details as to how to upgrade to CometBFT from Tendermint Core, please see
8+
our [upgrading guidelines](./UPGRADING.md).
9+
10+
If you have any questions, comments, concerns or feedback on this release, we
11+
would love to hear from you! Please contact us via [GitHub
12+
Discussions](https://github.com/cometbft/cometbft/discussions),
13+
[Discord](https://discord.gg/cosmosnetwork) (in the `#cometbft` channel) or
14+
[Telegram](https://t.me/CometBFT).
15+
16+
Special thanks to @wcsiu, @ze97286, @faddat and @JayT106 for their contributions
17+
to this release!

‎CHANGELOG.md

+34-3
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,49 @@
11
# CHANGELOG
22

3-
## Unreleased
3+
## v0.34.27
4+
5+
*Feb 27, 2023*
6+
7+
This is the first official release of CometBFT - a fork of [Tendermint
8+
Core](https://github.com/tendermint/tendermint). This particular release is
9+
intended to be compatible with the Tendermint Core v0.34 release series.
10+
11+
For details as to how to upgrade to CometBFT from Tendermint Core, please see
12+
our [upgrading guidelines](./UPGRADING.md).
13+
14+
If you have any questions, comments, concerns or feedback on this release, we
15+
would love to hear from you! Please contact us via [GitHub
16+
Discussions](https://github.com/cometbft/cometbft/discussions),
17+
[Discord](https://discord.gg/cosmosnetwork) (in the `#cometbft` channel) or
18+
[Telegram](https://t.me/CometBFT).
19+
20+
Special thanks to @wcsiu, @ze97286, @faddat and @JayT106 for their contributions
21+
to this release!
422

523
### BREAKING CHANGES
624

725
- Rename binary to `cometbft` and Docker image to `cometbft/cometbft`
826
([\#152](https://github.com/cometbft/cometbft/pull/152))
9-
- The `TMHOME` environment variable was renamed to `CMTHOME`, and all environment variables starting with `TM_` are instead prefixed with `CMT_`
27+
- The `TMHOME` environment variable was renamed to `CMTHOME`, and all
28+
environment variables starting with `TM_` are instead prefixed with `CMT_`
1029
([\#211](https://github.com/cometbft/cometbft/issues/211))
30+
- Use Go 1.19 to build CometBFT, since Go 1.18 has reached end-of-life.
31+
([\#360](https://github.com/cometbft/cometbft/issues/360))
1132

1233
### BUG FIXES
1334

14-
- `[consensus]` Fixed a busy loop that happened when sending of a block part failed by sleeping in case of error.
35+
- `[consensus]` Fixed a busy loop that happened when sending of a block part
36+
failed by sleeping in case of error.
1537
([\#4](https://github.com/informalsystems/tendermint/pull/4))
38+
- `[state/kvindexer]` Resolved crashes when event values contained slashes,
39+
introduced after adding event sequences.
40+
(\#[383](https://github.com/cometbft/cometbft/pull/383): @jmalicevic)
41+
- `[consensus]` Short-term fix for the case when `needProofBlock` cannot find
42+
previous block meta by defaulting to the creation of a new proof block.
43+
([\#386](https://github.com/cometbft/cometbft/pull/386): @adizere)
44+
- Special thanks to the [Vega.xyz](https://vega.xyz/) team, and in particular
45+
to Zohar (@ze97286), for reporting the problem and working with us to get to
46+
a fix.
1647
- `[p2p]` Correctly use non-blocking `TrySendEnvelope` method when attempting to
1748
send messages, as opposed to the blocking `SendEnvelope` method. It is unclear
1849
whether this has a meaningful impact on P2P performance, but this patch does

‎version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package version
33
const (
44
// TMCoreSemVer is the used as the fallback version of CometBFT Core
55
// when not using git describe. It is formatted with semantic versioning.
6-
TMCoreSemVer = "0.34.27-alpha.2"
6+
TMCoreSemVer = "0.34.27"
77
// ABCISemVer is the semantic version of the ABCI library
88
ABCISemVer = "0.17.0"
99

0 commit comments

Comments
 (0)