Skip to content

Commit 546b99a

Browse files
committed
prepare for release v1.1.12
1 parent 06bc2a0 commit 546b99a

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

.github/release.env

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
MAINNET_FILE_URL="https://github.com/binance-chain/bsc/releases/download/v1.1.8/mainnet.zip"
2-
TESTNET_FILE_URL="https://github.com/binance-chain/bsc/releases/download/v1.1.8/testnet.zip"
1+
MAINNET_FILE_URL="https://github.com/binance-chain/bsc/releases/latest/download/mainnet.zip"
2+
TESTNET_FILE_URL="https://github.com/binance-chain/bsc/releases/latest/download/testnet.zip"

CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# Changelog
22

3+
## v1.1.12
4+
5+
FEATURE
6+
* [\#862](https://github.com/bnb-chain/bsc/pull/862) add prune ancient feature
7+
* [\#926](https://github.com/bnb-chain/bsc/pull/926) Separate Processing and State Verification on BSC
8+
9+
IMPROVEMENT
10+
* [\#816](https://github.com/bnb-chain/bsc/pull/816) merge go-ethereum
11+
* [\#950](https://github.com/bnb-chain/bsc/pull/950) Improve state prefetch
12+
* [\#972](https://github.com/bnb-chain/bsc/pull/972) Redesign triePrefetcher to make it thread safe
13+
* [\#998](https://github.com/bnb-chain/bsc/pull/998) update dockerfile with a few enhancement
14+
* [\#1015](https://github.com/bnb-chain/bsc/pull/1015) disable noisy logs since system transaction will cause gas capping
15+
16+
BUGFIX
17+
* [\#932](https://github.com/bnb-chain/bsc/pull/932) fix pipecommit issue
18+
* [\#953](https://github.com/bnb-chain/bsc/pull/953) correct logic for eip check of NewEVMInterpreter
19+
* [\#958](https://github.com/bnb-chain/bsc/pull/958) define DiscReason as uint8
20+
* [\#959](https://github.com/bnb-chain/bsc/pull/959) update some packages' version
21+
* [\#983](https://github.com/bnb-chain/bsc/pull/983) fix nil pointer issue when stopping mining new block
22+
* [\#1002](https://github.com/bnb-chain/bsc/pull/1002) Fix pipecommit active statedb
23+
* [\#1005](https://github.com/bnb-chain/bsc/pull/1005) freezer batch compatible offline prunblock command
24+
* [\#1007](https://github.com/bnb-chain/bsc/pull/1007) missing contract upgrades and incorrect behavior when miners enable pipecommit
25+
* [\#1009](https://github.com/bnb-chain/bsc/pull/1009) resolve the concurrent cache read and write issue for fast node
26+
* [\#1011](https://github.com/bnb-chain/bsc/pull/1011) Incorrect merkle root issue when enabling pipecommit with miner
27+
* [\#1013](https://github.com/bnb-chain/bsc/pull/1013) tools broken because of writting metadata when open a readyonly db
28+
* [\#1014](https://github.com/bnb-chain/bsc/pull/1014) fast node can not recover from force kill or panic
29+
* [\#1019](https://github.com/bnb-chain/bsc/pull/1019) memory leak issue with diff protocol
30+
* [\#1020](https://github.com/bnb-chain/bsc/pull/1020) remove diffhash patch introduced from separate node
31+
32+
333
## v1.1.11
434

535
UPGRADE

params/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
const (
2424
VersionMajor = 1 // Major version component of the current release
2525
VersionMinor = 1 // Minor version component of the current release
26-
VersionPatch = 11 // Patch version component of the current release
26+
VersionPatch = 12 // Patch version component of the current release
2727
VersionMeta = "" // Version metadata to append to the version string
2828
)
2929

0 commit comments

Comments
 (0)