Skip to content

Commit 21a3b11

Browse files
authored
prepare for relase v1.1.8 (bnb-chain#741)
1 parent 6499b3f commit 21a3b11

File tree

4 files changed

+18
-17
lines changed

4 files changed

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

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## v1.1.8
4+
FEATURES
5+
* [\#668](https://github.com/binance-chain/bsc/pull/668) implement State Verification && Snapshot Commit pipeline
6+
* [\#581](https://github.com/binance-chain/bsc/pull/581) implement geth native trace
7+
* [\#543](https://github.com/binance-chain/bsc/pull/543) implement offline block prune tools
8+
9+
IMPROVEMENT
10+
* [\#704](https://github.com/binance-chain/bsc/pull/704) prefetch state by applying the transactions within one block
11+
* [\#713](https://github.com/binance-chain/bsc/pull/713) add ARM binaries for release pipeline
12+
13+
BUGFIX
14+
* [\#667](https://github.com/binance-chain/bsc/pull/667) trie: reject deletions when verifying range proofs #667
15+
* [\#643](https://github.com/binance-chain/bsc/pull/643) add timeout for stopping p2p server to fix can not gracefully shutdown issue
16+
* [\#740](https://github.com/binance-chain/bsc/pull/740) update discord link which won't expire
17+
318
## v1.1.7
419

520
BUGFIX

PULL_REQUEST_TEMPLATE

-14
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,3 @@ add an example CLI or API response...
1515
Notable changes:
1616
* add each change in a bullet point here
1717
* ...
18-
19-
### Preflight checks
20-
21-
- [ ] build passed (`make build`)
22-
- [ ] tests passed (`make test`)
23-
- [ ] manual transaction test passed
24-
25-
### Already reviewed by
26-
27-
...
28-
29-
### Related issues
30-
31-
... reference related issue #'s here ...

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

0 commit comments

Comments
 (0)