Skip to content

Commit

Permalink
chore(release): update changelog and bump version to 0.10.0-dev.8 (#554)
Browse files Browse the repository at this point in the history
* chore(release): update changelog and version to 0.10.0-dev.8

* chore(version)!: bump BlockProtocol version to 12
  • Loading branch information
lklimek authored Jan 16, 2023
1 parent 2b60cc5 commit aac082f
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 2 deletions.
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,36 @@
## [0.10.0-dev.8] - 2023-01-16

### Bug Fixes

- Ensure process proposal runs on complete proposal (#538)
- Peer notifications should be async to avoid deadlock in PeerUp (#509)
- Improve flaky TestWALRoundsSkipper (#539)
- Flaky TestReactor_Backfill test (#549)

### Features

- [**breaking**] Verify next consensus params between nodes (#550)
- Add quorum hash to RequestPrepare/ProcessProposal (#553)

### Refactor

- Use logger for log printing (#545)
- Blocksync.bpRequester should stop procedure if block was received (#546)
- [**breaking**] Cleanup protobuf definitions and reorganize fields (#552)

### Testing

- Fix Index out of bounds on "runner logs" (#537)

### Build

- Bump goreleaser/goreleaser-action from 3 to 4 (#544)
- Bump actions/stale from 6 to 7 (#543)
- Bump actions/setup-go from 3.4.0 to 3.5.0 (#542)
- Bump bufbuild/buf-setup-action from 1.10.0 to 1.11.0 (#541)
- Use ubuntu 20.04 in github workflows (#547)
- Enable deadlock detection on -dev docker images (#540)

## [0.10.0-dev.7] - 2022-12-20

### Bug Fixes
Expand All @@ -9,6 +42,10 @@

- Seed connectivity tuning options (max-incoming-connection-time,incoming-connection-window) (#532)

### Miscellaneous Tasks

- Update changelog and version to 0.10.0-dev.7 (#536)

### Build

- Improve release script (#522)
Expand Down
4 changes: 2 additions & 2 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var (
const (
// TMVersionDefault is the used as the fallback version for Tenderdash
// when not using git describe. It is formatted with semantic versioning.
TMVersionDefault = "0.10.0-dev"
TMVersionDefault = "0.10.0-dev.8"
// ABCISemVer is the semantic version of the ABCI library
ABCISemVer = "0.20.0"

Expand All @@ -23,7 +23,7 @@ var (

// BlockProtocol versions all block data structures and processing.
// This includes validity of blocks and state updates.
BlockProtocol uint64 = 11
BlockProtocol uint64 = 12
)

type Consensus struct {
Expand Down

0 comments on commit aac082f

Please sign in to comment.