Skip to content

Commit 11cbb14

Browse files
committed
prepare release v1.1.1
1 parent 8d5f2ba commit 11cbb14

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
# Changelog
2+
## v1.1.1
3+
https://github.com/binance-chain/bsc/pull/350
4+
*[\#350](https://github.com/binance-chain/bsc/pull/350) flag: fix TriesInmemory specified but not work
5+
*[\#355](https://github.com/binance-chain/bsc/pull/355) miner should propose block on a proper fork
6+
*[\#358](https://github.com/binance-chain/bsc/pull/358) miner: fix null pending block
7+
*[\#360](https://github.com/binance-chain/bsc/pull/360) pruner: fix state bloom sync permission in Windows
8+
29
## v1.1.1-beta
310
*[\#333](https://github.com/binance-chain/bsc/pull/333) improve block fetcher efficiency
411
*[\#326](https://github.com/binance-chain/bsc/pull/326) eth/tracers: improve tracing performance

params/version.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ import (
2121
)
2222

2323
const (
24-
VersionMajor = 1 // Major version component of the current release
25-
VersionMinor = 1 // Minor version component of the current release
26-
VersionPatch = 1 // Patch version component of the current release
27-
VersionMeta = "beta" // Version metadata to append to the version string
24+
VersionMajor = 1 // Major version component of the current release
25+
VersionMinor = 1 // Minor version component of the current release
26+
VersionPatch = 1 // Patch version component of the current release
27+
VersionMeta = "" // Version metadata to append to the version string
2828
)
2929

3030
// Version holds the textual version string.

0 commit comments

Comments
 (0)