diff --git a/CHANGELOG.md b/CHANGELOG.md index c0bd5774f9..78bb469607 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,16 @@ # Changelog +## v1.1.4 +Improvement +* [\#472](https://github.com/binance-chain/bsc/pull/472) add metrics for contract code bitmap cache +* [\#473](https://github.com/binance-chain/bsc/pull/473) fix ci test flow + +BUGFIX +* [\#491](https://github.com/binance-chain/bsc/pull/491) fix prefetcher related bugs + +FEATURES +* [\#480](https://github.com/binance-chain/bsc/pull/480) implement bep 95 + + ## v1.1.3 Improvement * [\#456](https://github.com/binance-chain/bsc/pull/456) git-flow support lint, unit test, and integration test diff --git a/params/version.go b/params/version.go index fe8f2938e6..0786d099b5 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 = 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 )