From a6e1624b13cd310bd7511277781ade2dfb09cfcf Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Wed, 31 Jan 2024 12:00:50 +0100 Subject: [PATCH 1/2] chore(release): update changelog and version to 0.14.0-dev.2 --- CHANGELOG.md | 19 +++++++++++++++++++ version/version.go | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce6e60986..252d18d37 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 ecb1f6e1f..7ef94f09a 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.14.0-dev.1" + TMVersionDefault = "0.14.0-dev.2" // ABCISemVer is the semantic version of the ABCI library ABCISemVer = "0.24.0" From d4056dfab2b96736b4f7bc27656cd0aea88d0d97 Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Wed, 31 Jan 2024 12:01:41 +0100 Subject: [PATCH 2/2] chore: bump ABCI version to 0.25 --- version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.go b/version/version.go index 7ef94f09a..9b66f99f6 100644 --- a/version/version.go +++ b/version/version.go @@ -11,7 +11,7 @@ const ( // when not using git describe. It is formatted with semantic versioning. 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 )