From dda8e8da6a8662ef42688945fe32bb91054ba95b Mon Sep 17 00:00:00 2001 From: lx <92799281+brilliant-lx@users.noreply.github.com> Date: Tue, 27 Jun 2023 13:01:58 +0800 Subject: [PATCH] release: prepare for release v1.2.8 (#1736) --- CHANGELOG.md | 8 ++++++++ params/version.go | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3438279146..68af7939be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ # Changelog +## v1.2.8 +FEATURE +* [\#1626](https://github.com/bnb-chain/bsc/pull/1626) eth/filters, ethclient/gethclient: add fullTx option to pending tx filter +* [\#1726](https://github.com/bnb-chain/bsc/pull/1726) feat: support password flag when handling bls keys + +BUGFIX +* [\#1734](https://github.com/bnb-chain/bsc/pull/1734) fix: avoid to block the chain when failed to send votes + ## v1.2.7 FEATURE * [\#1645](https://github.com/bnb-chain/bsc/pull/1645) lightclient: fix validator set change diff --git a/params/version.go b/params/version.go index 2104c7ef14..b551bcdc2f 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 = 7 // Patch version component of the current release + VersionPatch = 8 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string )