Skip to content

Commit

Permalink
v0.38.11 (cometbft#3684)
Browse files Browse the repository at this point in the history
  • Loading branch information
melekes authored Aug 12, 2024
1 parent 66a0447 commit e1b4453
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .changelog/v0.38.11/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
*August 12, 2024*

This release fixes a panic in consensus where CometBFT would previously panic
if there's no extension signature in non-nil Precommit EVEN IF vote extensions
themselves are disabled.

It also includes a few other bug fixes and performance improvements.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# CHANGELOG

## v0.38.11

*August 12, 2024*

This release fixes a panic in consensus where CometBFT would previously panic
if there's no extension signature in non-nil Precommit EVEN IF vote extensions
themselves are disabled.

It also includes a few other bug fixes and performance improvements.

### BUG FIXES

- `[types]` Added missing JSON tags to `DuplicateVoteEvidence` and `LightClientAttackEvidence`
types ([\#3528](https://github.com/cometbft/cometbft/issues/3528))
- `[types]` Only check IFF vote is a non-nil Precommit if extensionsEnabled
types ([\#3565](https://github.com/cometbft/cometbft/issues/3565))

### IMPROVEMENTS

- `[indexer]` Fixed ineffective select break statements; they now
point to their enclosing for loop label to exit
([\#3544](https://github.com/cometbft/cometbft/issues/3544))

## v0.38.10

*July 16, 2024*
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package version
const (
// TMVersionDefault is the used as the fallback version of CometBFT
// when not using git describe. It is formatted with semantic versioning.
TMCoreSemVer = "0.38.10"
TMCoreSemVer = "0.38.11"
// ABCISemVer is the semantic version of the ABCI protocol
ABCISemVer = "2.0.0"
ABCIVersion = ABCISemVer
Expand Down

0 comments on commit e1b4453

Please sign in to comment.