Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## [0.10.0-dev.4] - 2022-11-10
## [0.10.0-dev.5] - 2022-11-21

### Bug Fixes

Expand All @@ -9,6 +9,7 @@
- Revert ResponseCheckTx.info field and pass it to ResultBroadcastTx (#488)
- Fix p2p deadlock (#473)
- Abci Info() returns invalid height at genesis (#474)
- Catchup round number is not correct (#507)

### Documentation

Expand All @@ -23,6 +24,7 @@
- Add round to Prepare/ProcessProposal, FinalizeBlock (#498)
- Add core_chain_lock_update to RequestProcessProposal (#492)
- [**breaking**] Include state id in block signature (#478)
- [**breaking**] Put full block in RequestFinalizeBlock (#505)

### Miscellaneous Tasks

Expand All @@ -31,6 +33,7 @@
- Update changelog and version to 0.10.0-dev.2 (#489)
- Improve validation of ResponsePrepare/ProcessProposal ExecTxResults (#477)
- Update changelog and version to 0.10.0-dev.3 (#502)
- Update changelog and version to 0.10.0-dev.4 (#503)

### Refactor

Expand All @@ -41,6 +44,7 @@
- Change a logic of usage CoreChainLockHeight (#485)
- Remove unused P2P.PexReactor flag field in a config (#490)
- Provide a current block commit with request finalize block request (#501)
- Make all genesis-doc fields (except chain_id) optional (#506)

### Testing

Expand All @@ -58,6 +62,8 @@
- Bump docker/setup-buildx-action from 2.0.0 to 2.2.1
- Bump golangci/golangci-lint-action from 3.2.0 to 3.3.0
- Remove unused nightly test runs (#499)
- Save e2e failure logs as artifact (#508)
- Bump golangci/golangci-lint-action from 3.3.0 to 3.3.1 (#504)

## [0.9.0-dev.1] - 2022-09-01

Expand Down
2 changes: 1 addition & 1 deletion 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.4"
TMVersionDefault = "0.10.0-dev.5"
// ABCISemVer is the semantic version of the ABCI library
ABCISemVer = "0.20.0"

Expand Down