diff --git a/CHANGELOG.md b/CHANGELOG.md index 62341d56d3..94c00f64da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ # Changelog +## v1.5.12 +### BUGFIX +[\#3057](https://github.com/bnb-chain/bsc/pull/3057) eth/protocols/bsc: adjust vote reception limit + ## v1.5.11 ### FEATURE [\#3008](https://github.com/bnb-chain/bsc/pull/3008) params: add MaxwellTime diff --git a/version/version.go b/version/version.go index 8e6d3fde67..c3ebcce2cb 100644 --- a/version/version.go +++ b/version/version.go @@ -19,6 +19,6 @@ package version const ( Major = 1 // Major version component of the current release Minor = 5 // Minor version component of the current release - Patch = 11 // Patch version component of the current release + Patch = 12 // Patch version component of the current release Meta = "" // Version metadata to append to the version string )