Skip to content

Commit 1aeadc1

Browse files
forcodedancingforcodedancing
and
forcodedancing
authored
[R4R] prepare for release of v1.1.9 (#849)
* prepare release of v1.1.9 * prepare release of v1.1.9 * prepare release of v1.1.9 Co-authored-by: forcodedancing <[email protected]>
1 parent 343b315 commit 1aeadc1

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-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.7/mainnet.zip"
2-
TESTNET_FILE_URL="https://github.com/binance-chain/bsc/releases/download/v1.1.7/testnet.zip"
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"

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## v1.1.9
4+
5+
IMPROVEMENT
6+
* [\#792](https://github.com/binance-chain/bsc/pull/792) add shared storage for prefetching state data
7+
* [\#795](https://github.com/binance-chain/bsc/pull/795) implement state verification pipeline in pipecommit
8+
* [\#803](https://github.com/binance-chain/bsc/pull/803) prefetch state data during the mining process
9+
* [\#812](https://github.com/bnb-chain/bsc/pull/812) skip verification on account storage root to tolerate with fastnode when doing diffsync
10+
* [\#818](https://github.com/bnb-chain/bsc/pull/818) add shared storage to the prefetcher of miner
11+
* [\#820](https://github.com/bnb-chain/bsc/pull/820) disable diffsync when pipecommit is enabled
12+
* [\#830](https://github.com/bnb-chain/bsc/pull/830) change the number of prefetch threads
13+
14+
BUGFIX
15+
* [\#797](https://github.com/bnb-chain/bsc/pull/797) fix race condition on preimage in pipecommit
16+
* [\#808](https://github.com/bnb-chain/bsc/pull/808) fix code of difflayer not assign when new smart contract created
17+
* [\#817](https://github.com/bnb-chain/bsc/pull/817) fix bugs of prune block tool
18+
* [\#834](https://github.com/bnb-chain/bsc/pull/834) fix deadlock when failed to verify state root in pipecommit
19+
* [\#835](https://github.com/bnb-chain/bsc/pull/835) fix deadlock on miner module when failed to commit trie
20+
* [\#842](https://github.com/bnb-chain/bsc/pull/842) fix invalid nil check of statedb in diffsync
21+
322
## v1.1.8
423
FEATURES
524
* [\#668](https://github.com/binance-chain/bsc/pull/668) implement State Verification && Snapshot Commit pipeline

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 = 8 // Patch version component of the current release
26+
VersionPatch = 9 // Patch version component of the current release
2727
VersionMeta = "" // Version metadata to append to the version string
2828
)
2929

0 commit comments

Comments
 (0)