From 05385f3129cfe39365ec38c237a136c619ed48fe Mon Sep 17 00:00:00 2001 From: Mantre Date: Sun, 5 May 2024 19:15:58 +0800 Subject: [PATCH] chore: releasing version 1.1.4 (#1260) --- CHANGELOG.md | 11 +++++++++++ version/version.go | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc3ae04b8..cea9cb443 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [1.1.4](https://github.com/pactus-project/pactus/compare/v1.1.3...v1.1.4) (2024-05-05) + +### Fix + +- **sync**: introduce session manager ([#1257](https://github.com/pactus-project/pactus/pull/1257)) +- **HTTP**: using amount type for fee in transaction details ([#1255](https://github.com/pactus-project/pactus/pull/1255)) + +### Refactor + +- **network**: refactor peer manager and redefine the min cons ([#1259](https://github.com/pactus-project/pactus/pull/1259)) + ## [1.1.3](https://github.com/pactus-project/pactus/compare/v1.1.2...v1.1.3) (2024-04-25) ### Feat diff --git a/version/version.go b/version/version.go index 107ac1cda..e323ea261 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var NodeVersion = Version{ Major: 1, Minor: 1, Patch: 4, - Meta: "beta", + Meta: "rc1", } // These struct follow the semantic versioning 2.0.0 spec (http://semver.org/)