From c583aa7ccf9155cd3dc5be0076b81fe7fb4d8fe3 Mon Sep 17 00:00:00 2001 From: Mantre Date: Sun, 2 Jun 2024 23:32:09 +0800 Subject: [PATCH] chore: releasing version 1.1.8 (#1316) --- CHANGELOG.md | 16 ++++++++++++++++ version/version.go | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15aeb41d0..6abeaaf90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [1.1.8](https://github.com/pactus-project/pactus/compare/v1.1.7...v1.1.8) (2024-06-02) + +### Feat + +- **firewall**: define rate limit for network topics ([#1308](https://github.com/pactus-project/pactus/pull/1308)) + +### Fix + +- set fix fee 0.1 PAC for transactions ([#1315](https://github.com/pactus-project/pactus/pull/1315)) +- **consensus**: add round to query proposal message ([#1314](https://github.com/pactus-project/pactus/pull/1314)) +- **firewall**: block peer base on blacklisted CIDR ([#1309](https://github.com/pactus-project/pactus/pull/1309)) +- **consensus**: reduce ChangeProposerTimeout to 6 seconds ([#1311](https://github.com/pactus-project/pactus/pull/1311)) +- **sync**: define rate limit for query vote and proposal ([#1310](https://github.com/pactus-project/pactus/pull/1310)) +- decerease to 100 maximum transaction per block ([#1306](https://github.com/pactus-project/pactus/pull/1306)) +- consume message first then ignore on ratelimit ([#1304](https://github.com/pactus-project/pactus/pull/1304)) + ## [1.1.7](https://github.com/pactus-project/pactus/compare/v1.1.6...v1.1.7) (2024-06-01) ### Feat diff --git a/version/version.go b/version/version.go index 7d0e01920..ccfc5e034 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var NodeVersion = Version{ Major: 1, Minor: 1, Patch: 8, - Meta: "beta", + Meta: "", } // These struct follow the semantic versioning 2.0.0 spec (http://semver.org/)