diff --git a/CHANGELOG.md b/CHANGELOG.md index 1dc45f808..ae67bb088 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ # Changelog +## v1.3.10 +FEATURE +* [\#2047](https://github.com/bnb-chain/bsc/pull/2047) feat: add new fork block and precompile contract for BEP294 and BEP299 + ## v1.3.9 FEATURE * [\#2186](https://github.com/bnb-chain/bsc/pull/2186) log: support maxBackups in config.toml diff --git a/params/version.go b/params/version.go index 4bf65444c..3fb2d3012 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 = 9 // Patch version component of the current release + VersionPatch = 10 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string )