diff --git a/CHANGELOG.md b/CHANGELOG.md index 293408faf..15aeb41d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [1.1.7](https://github.com/pactus-project/pactus/compare/v1.1.6...v1.1.7) (2024-06-01) + +### Feat + +- **network**: add firewall black list ips to banning when connecting to peer ([#1298](https://github.com/pactus-project/pactus/pull/1298)) + +### Fix + +- **sync**: load black listed addresses from the config ([#1301](https://github.com/pactus-project/pactus/pull/1301)) +- **consensus**: only proposer responds to the query proposal ([#1300](https://github.com/pactus-project/pactus/pull/1300)) +- **network**: set latest support version to 1.1.6 ([#1299](https://github.com/pactus-project/pactus/pull/1299)) + ## [1.1.6](https://github.com/pactus-project/pactus/compare/v1.1.5...v1.1.6) (2024-05-31) ### Fix diff --git a/version/version.go b/version/version.go index 660f85081..57e95ba58 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var NodeVersion = Version{ Major: 1, Minor: 1, Patch: 7, - Meta: "beta", + Meta: "", } // These struct follow the semantic versioning 2.0.0 spec (http://semver.org/)