From aa835e020b597ffa11fb6080c25291adb71822de Mon Sep 17 00:00:00 2001 From: Roshan <48975233+Loverush@users.noreply.github.com> Date: Wed, 31 Aug 2022 17:04:48 +0800 Subject: [PATCH] upgrade: update version and CHANGELOG.md (#1073) --- CHANGELOG.md | 20 ++++++++++++++++++++ params/version.go | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 62fb769d76..dc85b21bee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## v1.1.13 + +FEATURE +* [\#1051](https://github.com/bnb-chain/bsc/pull/1051) Implement BEP153: Native Staking +* [\#1066](https://github.com/bnb-chain/bsc/pull/1066) Upgrade cross chain logic of native staking + +IMPROVEMENT +* [\#952](https://github.com/bnb-chain/bsc/pull/952) Improve trie prefetch +* [\#975](https://github.com/bnb-chain/bsc/pull/975) broadcast block before commit block and add metrics +* [\#992](https://github.com/bnb-chain/bsc/pull/992) Pipecommit enable trie prefetcher +* [\#996](https://github.com/bnb-chain/bsc/pull/996) Trie prefetch on state pretch + +BUGFIX +* [\#1053](https://github.com/bnb-chain/bsc/pull/1053) state: fix offline tool start failed when start with pruneancient +* [\#1060](https://github.com/bnb-chain/bsc/pull/1060) consensus: fix the GasLimitBoundDivisor +* [\#1061](https://github.com/bnb-chain/bsc/pull/1061) fix: upstream patches from go-ethereum +* [\#1067](https://github.com/bnb-chain/bsc/pull/1067) fix:fix potential goroutine leak +* [\#1068](https://github.com/bnb-chain/bsc/pull/1068) core trie rlp: patches from go-ethereum +* [\#1070](https://github.com/bnb-chain/bsc/pull/1070) txpool: reheap the priced list if london fork not enabled + ## v1.1.12 FEATURE diff --git a/params/version.go b/params/version.go index c0a9a4509f..9cffddc7d2 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 = 1 // Minor version component of the current release - VersionPatch = 12 // Patch version component of the current release + VersionPatch = 13 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string )