From d4f4024deb1dedfeee4877cd15d2f70b31cf4759 Mon Sep 17 00:00:00 2001 From: j75689 Date: Thu, 28 Jul 2022 11:04:58 +0800 Subject: [PATCH] prepare for release v1.1.12 --- .github/release.env | 4 ++-- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ params/version.go | 2 +- 3 files changed, 33 insertions(+), 3 deletions(-) diff --git a/.github/release.env b/.github/release.env index 62e94fa4bd..387d81fce3 100644 --- a/.github/release.env +++ b/.github/release.env @@ -1,2 +1,2 @@ -MAINNET_FILE_URL="https://github.com/binance-chain/bsc/releases/download/v1.1.8/mainnet.zip" -TESTNET_FILE_URL="https://github.com/binance-chain/bsc/releases/download/v1.1.8/testnet.zip" +MAINNET_FILE_URL="https://github.com/binance-chain/bsc/releases/latest/download/mainnet.zip" +TESTNET_FILE_URL="https://github.com/binance-chain/bsc/releases/latest/download/testnet.zip" diff --git a/CHANGELOG.md b/CHANGELOG.md index deefb9d12a..62fb769d76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,35 @@ # Changelog +## v1.1.12 + +FEATURE +* [\#862](https://github.com/bnb-chain/bsc/pull/862) Pruning AncientDB inline at runtime +* [\#926](https://github.com/bnb-chain/bsc/pull/926) Separate Processing and State Verification on BSC + +IMPROVEMENT +* [\#816](https://github.com/bnb-chain/bsc/pull/816) merge go-ethereum v1.10.15 +* [\#950](https://github.com/bnb-chain/bsc/pull/950) code optimizations for state prefetcher +* [\#972](https://github.com/bnb-chain/bsc/pull/972) redesign triePrefetcher to make it thread safe +* [\#998](https://github.com/bnb-chain/bsc/pull/998) update dockerfile with a few enhancement +* [\#1015](https://github.com/bnb-chain/bsc/pull/1015) disable noisy logs since system transaction will cause gas capping + +BUGFIX +* [\#932](https://github.com/bnb-chain/bsc/pull/932) fix account root was not set correctly when committing mpt during pipeline commit +* [\#953](https://github.com/bnb-chain/bsc/pull/953) correct logic for eip check of NewEVMInterpreter +* [\#958](https://github.com/bnb-chain/bsc/pull/958) define DiscReason as uint8 +* [\#959](https://github.com/bnb-chain/bsc/pull/959) update some packages' version +* [\#983](https://github.com/bnb-chain/bsc/pull/983) fix nil pointer issue when stopping mining new block +* [\#1002](https://github.com/bnb-chain/bsc/pull/1002) Fix pipecommit active statedb +* [\#1005](https://github.com/bnb-chain/bsc/pull/1005) freezer batch compatible offline prunblock command +* [\#1007](https://github.com/bnb-chain/bsc/pull/1007) missing contract upgrades and incorrect behavior when miners enable pipecommit +* [\#1009](https://github.com/bnb-chain/bsc/pull/1009) resolve the concurrent cache read and write issue for fast node +* [\#1011](https://github.com/bnb-chain/bsc/pull/1011) Incorrect merkle root issue when enabling pipecommit with miner +* [\#1013](https://github.com/bnb-chain/bsc/pull/1013) tools broken because of writting metadata when open a readyonly db +* [\#1014](https://github.com/bnb-chain/bsc/pull/1014) fast node can not recover from force kill or panic +* [\#1019](https://github.com/bnb-chain/bsc/pull/1019) memory leak issue with diff protocol +* [\#1020](https://github.com/bnb-chain/bsc/pull/1020) remove diffhash patch introduced from separate node +* [\#1024](https://github.com/bnb-chain/bsc/pull/1024) verify node is not treated as verify node + ## v1.1.11 UPGRADE diff --git a/params/version.go b/params/version.go index 0dc16e482a..c0a9a4509f 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 = 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 )