diff --git a/CHANGELOG.md b/CHANGELOG.md index dc85b21bee..a9bc019019 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## v1.1.14 +IMPROVEMENT +* [\#1057](https://github.com/bnb-chain/bsc/pull/1057) ci: allow merge pull request +* [\#1063](https://github.com/bnb-chain/bsc/pull/1063) ci: fix the pattern of commit lint + +BUGFIX +* [\#1062](https://github.com/bnb-chain/bsc/pull/1062) test: fix TestOfflineBlockPrune failed randomly +* [\#1076](https://github.com/bnb-chain/bsc/pull/1076) bug: pick some patches from go-ethereum on v1.10.18 +* [\#1079](https://github.com/bnb-chain/bsc/pull/1079) core: fix potential goroutine leak + ## v1.1.13 FEATURE diff --git a/params/version.go b/params/version.go index 9cffddc7d2..57a10226a5 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 = 1 // Minor version component of the current release - VersionPatch = 13 // Patch version component of the current release + VersionPatch = 14 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string )