From b7b64da56476c362d571cc1c1a5b7227e72b2d9f Mon Sep 17 00:00:00 2001 From: zzzckck <152148891+zzzckck@users.noreply.github.com> Date: Tue, 27 Feb 2024 14:19:32 +0800 Subject: [PATCH] release: prepare for release v1.3.10 (#2238) --- CHANGELOG.md | 4 ++++ params/version.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1dc45f80820c..ae67bb088dbb 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 4bf65444c1f9..3fb2d3012e55 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 )