From 17a2350bb520093c30326a86678fadb0a1ef136c Mon Sep 17 00:00:00 2001 From: "larry.lx" Date: Fri, 8 Sep 2023 11:20:53 +0800 Subject: [PATCH] release: prepare for release v1.2.12 --- CHANGELOG.md | 3 +++ params/version.go | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d628cdbcf..7689c1429e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ # Changelog +## v1.2.12 +TBD + ## 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 )