From 1c17c47df7d73f2d38017f2e89082190b1136d5d Mon Sep 17 00:00:00 2001 From: lx <92799281+brilliant-lx@users.noreply.github.com> Date: Fri, 8 Sep 2023 14:20:19 +0800 Subject: [PATCH] release: prepare for release v1.2.12 (#1859) --- CHANGELOG.md | 13 +++++++++++++ params/version.go | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d628cdbcf..848e37c864 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,17 @@ # Changelog +## v1.2.12 +FEATURE +* [\#1852](https://github.com/bnb-chain/bsc/pull/1852) discov: add hardcoded bootnodes + +BUGFIX +* [\#1844](https://github.com/bnb-chain/bsc/pull/1844) crypto: Update BLST to v0.3.11 +* [\#1854](https://github.com/bnb-chain/bsc/pull/1854) fetcher: no import blocks before or equal to the finalized height +* [\#1855](https://github.com/bnb-chain/bsc/pull/1855) eth/tracers: trace system tx should add intrinsicGas + +IMPROVEMENT +* [\#1839](https://github.com/bnb-chain/bsc/pull/1839) Update init-network command +* [\#1858](https://github.com/bnb-chain/bsc/pull/1858) vote: check consensus key match vote key before voting + ## v1.2.11 FEATURE * [\#1797](https://github.com/bnb-chain/bsc/pull/1797) client: add FinalizedHeader/Block to use the fast finality diff --git a/params/version.go b/params/version.go index 78a85e7323..d9476925ce 100644 --- a/params/version.go +++ b/params/version.go @@ -23,7 +23,7 @@ import ( const ( VersionMajor = 1 // Major version component of the current release VersionMinor = 2 // Minor version component of the current release - VersionPatch = 11 // Patch version component of the current release + VersionPatch = 12 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string )