From bae7e6b52e31bfca03bfa0a659b3e17911925c6b Mon Sep 17 00:00:00 2001 From: zjubfd <296179868@qq.com> Date: Mon, 1 Apr 2024 12:33:58 +0800 Subject: [PATCH] docs: add changelog and new version number --- CHANGELOG.md | 3 +++ params/version.go | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1042f6991..1b1643575 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ # Changelog +## v1.3.13 +* [\#2358](https://github.com/bnb-chain/bsc/pull/2358) doc: add Feynman upgrade for mainnet +* [\#2335](https://github.com/bnb-chain/bsc/pull/2335) upgrade: update system contracts bytes code and hardfork time of Feynman upgrade ## v1.3.12 BUGFIX diff --git a/params/version.go b/params/version.go index 01ef1e82b..c577d324c 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 = 12 // Patch version component of the current release + VersionPatch = 13 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string )