From cf5115fef279c8c13dddef04ffdd63c279fd43e7 Mon Sep 17 00:00:00 2001 From: zzzckck <152148891+zzzckck@users.noreply.github.com> Date: Fri, 21 Jun 2024 15:12:05 +0800 Subject: [PATCH] release: prepare for release v1.4.10 --- CHANGELOG.md | 16 ++++++++++++++++ params/version.go | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b8c8168bd..56ec8d070c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,20 @@ # Changelog +## v1.4.10 +### FEATURE +NA + +### IMPROVEMENT +* [\#2512](https://github.com/bnb-chain/bsc/pull/2512) feat: add mev helper params and func +* [\#2508](https://github.com/bnb-chain/bsc/pull/2508) perf: speedup pbss trienode read +* [\#2509](https://github.com/bnb-chain/bsc/pull/2509) perf: optimize chain commit performance for multi-database +* [\#2451](https://github.com/bnb-chain/bsc/pull/2451) core/forkchoice: improve stability when inturn block not generate + +### BUGFIX +* [\#2518](https://github.com/bnb-chain/bsc/pull/2518) fix: remove zero gasprice check for BSC +* [\#2519](https://github.com/bnb-chain/bsc/pull/2519) UT: random failure of TestSnapSyncWithBlobs +* [\#2515](https://github.com/bnb-chain/bsc/pull/2515) fix getBlobSidecars by ethclient +* [\#2525](https://github.com/bnb-chain/bsc/pull/2525) fix: ensure empty withdrawals after cancun before broadcast + ## v1.4.9 ### FEATURE * [\#2463](https://github.com/bnb-chain/bsc/pull/2463) utils: add check_blobtx.js diff --git a/params/version.go b/params/version.go index 1b8117a5b8..93aae8c7b3 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 = 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 )