From 58d00d8d4d1cc30e69e516eca2e69482c6a0bb9c Mon Sep 17 00:00:00 2001 From: Mantre Date: Thu, 18 Apr 2024 18:47:24 +0800 Subject: [PATCH] chore: releasing version 1.1.1 (#1229) --- CHANGELOG.md | 10 ++++++++++ version/version.go | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1d9de1d6..d72f23bcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [1.1.1](https://github.com/pactus-project/pactus/compare/v1.1.0...v1.1.1) (2024-04-18) + +### Feat + +- reject direct message from non-supporting agents ([#1225](https://github.com/pactus-project/pactus/pull/1225)) + +### Fix + +- prevent zero stake for bond transactions ([#1227](https://github.com/pactus-project/pactus/pull/1227)) + ## [1.1.0](https://github.com/pactus-project/pactus/compare/v1.0.0...v1.1.0) (2024-04-14) ### Feat diff --git a/version/version.go b/version/version.go index 5b6be7ab2..bcd0da30e 100644 --- a/version/version.go +++ b/version/version.go @@ -15,7 +15,7 @@ var NodeVersion = Version{ Major: 1, Minor: 1, Patch: 1, - Meta: "beta", + Meta: "", } // These struct follow the semantic versioning 2.0.0 spec (http://semver.org/)