prepare release v1.1.1 (#362)

This commit is contained in:
zjubfd 2021-08-13 10:20:35 +08:00 committed by GitHub
parent 504424dc7c
commit a3320d6f6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 4 deletions

@ -1,4 +1,13 @@
# 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
*[\#366](https://github.com/binance-chain/bsc/pull/366) fix double close channel of subfetcher git reba
## 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

@ -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.