From 4e9f699068e7f71c4c99015cd8f86d7a0914caea Mon Sep 17 00:00:00 2001 From: zzzckck <152148891+zzzckck@users.noreply.github.com> Date: Mon, 8 Apr 2024 19:20:23 +0800 Subject: [PATCH] release: prepare for release v1.4.5 (#2379) --- CHANGELOG.md | 11 +++++++++++ params/version.go | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 377a15f57..a9027e227 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,15 @@ # Changelog +## v1.4.5 +### FEATURE +* [\#2378](https://github.com/bnb-chain/bsc/pull/2378) config: setup Testnet Tycho(Cancun) hardfork date + +### IMPROVEMENT +* [\#2333](https://github.com/bnb-chain/bsc/pull/2333) remove code that will not be executed +* [\#2369](https://github.com/bnb-chain/bsc/pull/2369) core: stateDb has no trie and no snap return err + +### BUGFIX +* [\#2359](https://github.com/bnb-chain/bsc/pull/2359) triedb: do not open state freezer under notries + ## v1.4.4 ### FEATURE * [\#2279](https://github.com/bnb-chain/bsc/pull/2279) BlobTx: implement EIP-4844 on BSC diff --git a/params/version.go b/params/version.go index a74c365b1..b2c053da3 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 = 4 // Minor version component of the current release - VersionPatch = 4 // Patch version component of the current release + VersionPatch = 5 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string )