Pārlūkot izejas kodu

prepare for release v1.0.7-hf.1

fudongbai 4 gadi atpakaļ
vecāks
revīzija
552207ed9a
2 mainītis faili ar 9 papildinājumiem un 4 dzēšanām
  1. 5 0
      CHANGELOG.md
  2. 4 4
      params/version.go

+ 5 - 0
CHANGELOG.md

@@ -1,4 +1,9 @@
 # Changelog
+## v1.0.7-hf.1
+BUGFIX
+* [\#190](https://github.com/binance-chain/bsc/pull/190) fix disk increase dramaticly
+* [\#191](https://github.com/binance-chain/bsc/pull/191) fix the reorg routine of tx pool stuck issue
+
 ## v1.0.7
 * [\#120](https://github.com/binance-chain/bsc/pull/120) add health check endpoint
 * [\#116](https://github.com/binance-chain/bsc/pull/116) validator only write database state when enough distance 

+ 4 - 4
params/version.go

@@ -21,10 +21,10 @@ import (
 )
 
 const (
-	VersionMajor = 1  // Major version component of the current release
-	VersionMinor = 0  // Minor version component of the current release
-	VersionPatch = 7  // 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 = 0      // Minor version component of the current release
+	VersionPatch = 7      // Patch version component of the current release
+	VersionMeta  = "hf.1" // Version metadata to append to the version string
 )
 
 // Version holds the textual version string.