From a29343fa1835458958fd0c91cccd4a52fbab4056 Mon Sep 17 00:00:00 2001 From: Mantre Date: Sun, 22 Oct 2023 01:30:35 +0800 Subject: [PATCH] chore: releasing version 0.15.1 (#768) --- CHANGELOG.md | 7 +++++++ version/version.go | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4ebfb25d..d81f9c77b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.15.1](https://github.com/pactus-project/pactus/compare/v0.15.0...v0.15.1)(2023-10-22) + +### Fix + +- **consensus**: strong termination for the binary agreement ([#765](https://github.com/pactus-project/pactus/pull/765)) +- **consensus**: not increase the voting power on duplicated binary votes ([#762](https://github.com/pactus-project/pactus/pull/762)) + ## [0.15.0](https://github.com/pactus-project/pactus/compare/v0.13.0...v0.15.0)(2023-10-15) ### Feat diff --git a/version/version.go b/version/version.go index 7379193fa..2a5109ce0 100644 --- a/version/version.go +++ b/version/version.go @@ -8,7 +8,7 @@ import ( const ( major uint = 0 minor uint = 15 - patch uint = 0 + patch uint = 1 meta string = "beta" )