diff --git a/CHANGELOG.md b/CHANGELOG.md index b009ca35de..4126493ba0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,34 @@ # Changelog +## v1.2.6 +FEATURE +* [\#1697](https://github.com/bnb-chain/bsc/pull/1697) upgrade: block height of Hertz(London&Berlin) on testnet +* [\#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 +* [\#1597](https://github.com/bnb-chain/bsc/pull/1597) feature: add malicious vote monitor +* [\#1422](https://github.com/bnb-chain/bsc/pull/1422) core: port several London EIPs on BSC + +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 + ## v1.2.4 FEATURE * [\#1636](https://github.com/bnb-chain/bsc/pull/1636) upgrade: block height of Luban on mainnet diff --git a/params/config.go b/params/config.go index 3cf11ea5fd..638d54647d 100644 --- a/params/config.go +++ b/params/config.go @@ -231,9 +231,9 @@ var ( LubanBlock: big.NewInt(29295050), PlatoBlock: big.NewInt(29861024), // TODO modify blockNumber, make sure HertzBlock=BerlinBlock=LondonBlock to enable Berlin and London EIPs - BerlinBlock: nil, - LondonBlock: nil, - HertzBlock: nil, + BerlinBlock: big.NewInt(31103030), + LondonBlock: big.NewInt(31103030), + HertzBlock: big.NewInt(31103030), Parlia: &ParliaConfig{ Period: 3, diff --git a/params/version.go b/params/version.go index 321d439cb7..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 = 4 // 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 )