From 959850218c1ff34ad1b2d840551eccf8b98266c3 Mon Sep 17 00:00:00 2001 From: zzzckck <152148891+zzzckck@users.noreply.github.com> Date: Tue, 27 Aug 2024 11:23:04 +0800 Subject: [PATCH] release: prepare for release v1.4.14 (#2668) --- CHANGELOG.md | 17 +++++++++++++++++ params/version.go | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index da3e761d02..5907ec247c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,21 @@ # Changelog +## v1.4.14 + +### BUGFIX +* [\#2643](https://github.com/bnb-chain/bsc/pull/2643)core: fix cache for receipts +* [\#2656](https://github.com/bnb-chain/bsc/pull/2656)ethclient: fix BlobSidecars api +* [\#2657](https://github.com/bnb-chain/bsc/pull/2657)fix: update prunefreezer’s offset when pruneancient and the dataset has pruned block + +### FEATURE +* [\#2661](https://github.com/bnb-chain/bsc/pull/2661)config: setup Mainnet 2 hardfork date: HaberFix & Bohr + +### IMPROVEMENT +* [\#2578](https://github.com/bnb-chain/bsc/pull/2578)core/systemcontracts: use vm.StateDB in UpgradeBuildInSystemContract +* [\#2649](https://github.com/bnb-chain/bsc/pull/2649)internal/debug: remove memsize +* [\#2655](https://github.com/bnb-chain/bsc/pull/2655)internal/ethapi: make GetFinalizedHeader monotonically increasing +* [\#2658](https://github.com/bnb-chain/bsc/pull/2658)core: improve readability of the fork choice logic +* [\#2665](https://github.com/bnb-chain/bsc/pull/2665)faucet: bump and resend faucet transaction if it has been pending for a while + ## v1.4.13 ### BUGFIX diff --git a/params/version.go b/params/version.go index 3454448fe5..4327f17d11 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 = 13 // Patch version component of the current release + VersionPatch = 14 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string )