File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
1
# 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
+
2
9
## v1.1.1-beta
3
10
* [ \# 333] ( https://github.com/binance-chain/bsc/pull/333 ) improve block fetcher efficiency
4
11
* [ \# 326] ( https://github.com/binance-chain/bsc/pull/326 ) eth/tracers: improve tracing performance
Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ import (
21
21
)
22
22
23
23
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
28
28
)
29
29
30
30
// Version holds the textual version string.
You can’t perform that action at this time.
0 commit comments