From 11cbb1455e4266d2b854c460af47122686bfcab2 Mon Sep 17 00:00:00 2001 From: fudongbai <296179868@qq.com> Date: Wed, 11 Aug 2021 18:52:38 +0800 Subject: [PATCH] prepare release v1.1.1 --- CHANGELOG.md | 7 +++++++ params/version.go | 8 ++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0c9a2ac52..880d434c25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ # Changelog +## v1.1.1 +https://github.com/binance-chain/bsc/pull/350 +*[\#350](https://github.com/binance-chain/bsc/pull/350) flag: fix TriesInmemory specified but not work +*[\#355](https://github.com/binance-chain/bsc/pull/355) miner should propose block on a proper fork +*[\#358](https://github.com/binance-chain/bsc/pull/358) miner: fix null pending block +*[\#360](https://github.com/binance-chain/bsc/pull/360) pruner: fix state bloom sync permission in Windows + ## v1.1.1-beta *[\#333](https://github.com/binance-chain/bsc/pull/333) improve block fetcher efficiency *[\#326](https://github.com/binance-chain/bsc/pull/326) eth/tracers: improve tracing performance diff --git a/params/version.go b/params/version.go index 92536b8bd7..0dd14e8854 100644 --- a/params/version.go +++ b/params/version.go @@ -21,10 +21,10 @@ import ( ) const ( - VersionMajor = 1 // Major version component of the current release - VersionMinor = 1 // Minor version component of the current release - VersionPatch = 1 // Patch version component of the current release - VersionMeta = "beta" // Version metadata to append to the version string + VersionMajor = 1 // Major version component of the current release + VersionMinor = 1 // Minor version component of the current release + VersionPatch = 1 // Patch version component of the current release + VersionMeta = "" // Version metadata to append to the version string ) // Version holds the textual version string.