diff --git a/CHANGELOG.md b/CHANGELOG.md index e8c70718a6..75d36b42c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ # Changelog +## v1.3.4 +BUGFIX +* fix: remove pipecommit in miner +* add a hard fork: Hertzfix + ## v1.3.3 IMPROVEMENT * [\#2000](https://github.com/bnb-chain/bsc/pull/2000) cmd/utils: exit process if txlookuplimit flag is set @@ -8,7 +13,7 @@ BUGFIX ## v1.3.2 BUGFIX -fix: remove sharedPool +* fix: remove sharedPool ## v1.3.1 FEATURE diff --git a/params/version.go b/params/version.go index 49a5efbc3c..cca396d7c5 100644 --- a/params/version.go +++ b/params/version.go @@ -23,7 +23,7 @@ import ( const ( VersionMajor = 1 // Major version component of the current release VersionMinor = 3 // Minor version component of the current release - VersionPatch = 3 // Patch version component of the current release + VersionPatch = 4 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string )