Commit 21a3b11 1 parent 6499b3f commit 21a3b11 Copy full SHA for 21a3b11
File tree 4 files changed +18
-17
lines changed
4 files changed +18
-17
lines changed Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
18
## v1.1.7
4
19
5
20
BUGFIX
Original file line number Diff line number Diff line change @@ -15,17 +15,3 @@ add an example CLI or API response...
15
15
Notable changes:
16
16
* add each change in a bullet point here
17
17
* ...
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 ...
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import (
23
23
const (
24
24
VersionMajor = 1 // Major version component of the current release
25
25
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
27
27
VersionMeta = "" // Version metadata to append to the version string
28
28
)
29
29
You can’t perform that action at this time.
0 commit comments