From 1fac675010498aa4405c333fe5a583f6d8db69ab Mon Sep 17 00:00:00 2001 From: "larry.lx" Date: Wed, 14 Jun 2023 17:48:55 +0800 Subject: [PATCH] release: prepare for release v1.2.6 --- CHANGELOG.md | 25 +++++++++++++++++++++++++ params/version.go | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75aaad2852..0a9b233138 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,29 @@ # Changelog +## v1.2.6 +FEATURE +* [\#1686](https://github.com/bnb-chain/bsc/pull/1686) eip3529tests: refactor tests +* [\#1676](https://github.com/bnb-chain/bsc/pull/1676) EIP-3529 (BEP-212) Unit tests for Parlia Config +* [\#1660](https://github.com/bnb-chain/bsc/pull/1660) feat: add a tool for submitting evidence of maliciousvoting +* [\#1623](https://github.com/bnb-chain/bsc/pull/1623) P2P: try to limit the connection number per IP address +* [\#1608](https://github.com/bnb-chain/bsc/pull/1608) feature: Enable Berlin EIPs (#1608) +* [\#1597](https://github.com/bnb-chain/bsc/pull/1597) feature: add malicious vote monitor (#1597) +* [\#1422](https://github.com/bnb-chain/bsc/pull/1422) core: port several London EIPs on BSC(#1422) + +IMPROVEMENT +* [\#1662](https://github.com/bnb-chain/bsc/pull/1662) consensus, core/rawdb, miner: downgrade logs +* [\#1654](https://github.com/bnb-chain/bsc/pull/1654) config: use default fork config if not specified in config.toml +* [\#1642](https://github.com/bnb-chain/bsc/pull/1642) readme: update the disk requirement to 2.5TB +* [\#1621](https://github.com/bnb-chain/bsc/pull/1621) upgrade: avoid to modify RialtoGenesisHash when testing in rialtoNet + +BUGFIX +* [\#1682](https://github.com/bnb-chain/bsc/pull/1682) fix: set the signer of parlia to the most permissive one +* [\#1681](https://github.com/bnb-chain/bsc/pull/1681) fix: not double GasLimit of block upon London upgrade +* [\#1679](https://github.com/bnb-chain/bsc/pull/1679) fix: check integer overflow when decode crosschain payload +* [\#1671](https://github.com/bnb-chain/bsc/pull/1671) fix: voting can only be enabled when mining +* [\#1663](https://github.com/bnb-chain/bsc/pull/1663) fix: ungraceful shutdown caused by malicious Vote Monitor +* [\#1651](https://github.com/bnb-chain/bsc/pull/1651) fix: remove naturally finality +* [\#1641](https://github.com/bnb-chain/bsc/pull/1641) fix: support getFilterChanges after NewFinalizedHeaderFilter + ## v1.2.5 BUGFIX * [\#1675](https://github.com/bnb-chain/bsc/pull/1675) goleveldb: downgrade the version for performance diff --git a/params/version.go b/params/version.go index 9e2a0c631c..b9ef22cbe3 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 = 5 // Patch version component of the current release + VersionPatch = 6 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string )