diff --git a/CHANGELOG.md b/CHANGELOG.md index ce6e609869..252d18d377 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +## [0.14.0-dev.2] - 2024-01-31 + +### Bug Fixes + +- Panic in ordered_map Key() (#721) + +### Features + +- New vote extenison type THRESHOLD_RAW (#715) + +### Build + +- Bump actions/download-artifact from 3 to 4 (#720) +- Bump actions/upload-artifact from 3 to 4 (#719) +- Manual docker image build platform selection (#722) +- Bump bufbuild/buf-setup-action from 1.27.0 to 1.29.0 (#729) +- Bump styfle/cancel-workflow-action from 0.12.0 to 0.12.1 (#728) +- Fix depguard linter configuration (#730) + ## [0.14.0-dev.1] - 2023-12-18 ### Features diff --git a/version/version.go b/version/version.go index ecb1f6e1f3..9b66f99f6c 100644 --- a/version/version.go +++ b/version/version.go @@ -9,9 +9,9 @@ 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.14.0-dev.1" + TMVersionDefault = "0.14.0-dev.2" // ABCISemVer is the semantic version of the ABCI library - ABCISemVer = "0.24.0" + ABCISemVer = "0.25.0" ABCIVersion = ABCISemVer )