From 21a3b11d17573371e85127b3c9c9d19685f63bb7 Mon Sep 17 00:00:00 2001 From: zjubfd <296179868@qq.com> Date: Wed, 26 Jan 2022 14:57:22 +0800 Subject: [PATCH] prepare for relase v1.1.8 (#741) --- .github/release.env | 4 ++-- CHANGELOG.md | 15 +++++++++++++++ PULL_REQUEST_TEMPLATE | 14 -------------- params/version.go | 2 +- 4 files changed, 18 insertions(+), 17 deletions(-) diff --git a/.github/release.env b/.github/release.env index 37739d157e..2034c1d3fa 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.6/mainnet.zip" -TESTNET_FILE_URL="https://github.com/binance-chain/bsc/releases/download/v1.1.6/testnet.zip" +MAINNET_FILE_URL="https://github.com/binance-chain/bsc/releases/download/v1.1.7/mainnet.zip" +TESTNET_FILE_URL="https://github.com/binance-chain/bsc/releases/download/v1.1.7/testnet.zip" diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d5bf0877f..4dfa55dfb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## v1.1.8 +FEATURES +* [\#668](https://github.com/binance-chain/bsc/pull/668) implement State Verification && Snapshot Commit pipeline +* [\#581](https://github.com/binance-chain/bsc/pull/581) implement geth native trace +* [\#543](https://github.com/binance-chain/bsc/pull/543) implement offline block prune tools + +IMPROVEMENT +* [\#704](https://github.com/binance-chain/bsc/pull/704) prefetch state by applying the transactions within one block +* [\#713](https://github.com/binance-chain/bsc/pull/713) add ARM binaries for release pipeline + +BUGFIX +* [\#667](https://github.com/binance-chain/bsc/pull/667) trie: reject deletions when verifying range proofs #667 +* [\#643](https://github.com/binance-chain/bsc/pull/643) add timeout for stopping p2p server to fix can not gracefully shutdown issue +* [\#740](https://github.com/binance-chain/bsc/pull/740) update discord link which won't expire + ## v1.1.7 BUGFIX diff --git a/PULL_REQUEST_TEMPLATE b/PULL_REQUEST_TEMPLATE index 69f29fecf8..acf0007d89 100644 --- a/PULL_REQUEST_TEMPLATE +++ b/PULL_REQUEST_TEMPLATE @@ -15,17 +15,3 @@ add an example CLI or API response... Notable changes: * add each change in a bullet point here * ... - -### Preflight checks - -- [ ] build passed (`make build`) -- [ ] tests passed (`make test`) -- [ ] manual transaction test passed - -### Already reviewed by - -... - -### Related issues - -... reference related issue #'s here ... diff --git a/params/version.go b/params/version.go index 0cab1d8822..8faa4bb644 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 = 7 // Patch version component of the current release + VersionPatch = 8 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string )