From c3b706140aeb83e0dd564a29085d4671c1888201 Mon Sep 17 00:00:00 2001 From: Mantre Date: Tue, 7 May 2024 15:59:53 +0800 Subject: [PATCH] chore: releasing version 1.1.4 (#1267) --- CHANGELOG.md | 12 ++++++++++++ version/version.go | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc3ae04b8..749a3ed2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [1.1.4](https://github.com/pactus-project/pactus/compare/v1.1.3...v1.1.4) (2024-05-07) + +### Fix + +- **network**: set infinite limit for resource manager ([#1261](https://github.com/pactus-project/pactus/pull/1261)) +- **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..8b1aca37f 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: "", } // These struct follow the semantic versioning 2.0.0 spec (http://semver.org/)