diff --git a/CHANGELOG.md b/CHANGELOG.md index fc52de2998..7259020385 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,31 @@ +## [0.10.0-dev.7] - 2022-12-20 + +### Bug Fixes + +- Decrease log verbosity by logging send/recv logs on trace level (#533) +- Ensure process proposal was called on commit processing (#534) + +### Features + +- Seed connectivity tuning options (max-incoming-connection-time,incoming-connection-window) (#532) + +### Build + +- Improve release script (#522) + ## [0.10.0-dev.6] - 2022-12-15 ### Bug Fixes - ProcessProposal executed twice for a block (#516) - Proposer-based timestamp broken during backport (#523) +- Improve wal replay mechanism (#510) ### Miscellaneous Tasks - [**breaking**] Rename genesis.json quorum fields (#515) - [**breaking**] Remove Snapshot.core_chain_locked_height (#527) +- Update changelog and version to 0.10.0-dev.6 (#526) ### Build diff --git a/version/version.go b/version/version.go index e733596ad8..ce4cdb5d3e 100644 --- a/version/version.go +++ b/version/version.go @@ -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.6" + TMVersionDefault = "0.10.0-dev.7" // ABCISemVer is the semantic version of the ABCI library ABCISemVer = "0.20.0"