Răsfoiți Sursa

prepare release 1.1.1-beta (#334)

zjubfd 4 ani în urmă
părinte
comite
69ce7f1e5e
2 a modificat fișierele cu 9 adăugiri și 4 ștergeri
  1. 5 0
      CHANGELOG.md
  2. 4 4
      params/version.go

+ 5 - 0
CHANGELOG.md

@@ -1,4 +1,9 @@
 # Changelog
+## 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
+*[\#257](https://github.com/binance-chain/bsc/pull/257) performance improvement in many aspects
+
 
 ## v1.1.0
 *[\#282](https://github.com/binance-chain/bsc/pull/282) update discord link

+ 4 - 4
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 = 0  // Patch version component of the current release
-	VersionMeta  = "" // 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  = "beta" // Version metadata to append to the version string
 )
 
 // Version holds the textual version string.