From 0f2952c30de3c7affdb3013e7f62a7259ed16904 Mon Sep 17 00:00:00 2001 From: zzzckck <152148891+zzzckck@users.noreply.github.com> Date: Wed, 28 May 2025 16:21:56 +0800 Subject: [PATCH] release: prepare for release v1.5.14 --- CHANGELOG.md | 17 +++++++++++++++++ version/version.go | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b524e23341..be1e62f75e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,21 @@ # Changelog +## v1.5.14 +### FEATURE +[\#3130](https://github.com/bnb-chain/bsc/pull/3130) config: update BSC Mainnet hardfork time: Maxwell + +### BUGFIX +[\#3117](https://github.com/bnb-chain/bsc/pull/3117) core, ethdb: introduce database sync function (#31703) +[\#3122](https://github.com/bnb-chain/bsc/pull/3122) freezer: implement tail method in prunedfreezer +[\#3121](https://github.com/bnb-chain/bsc/pull/3121) miner: discard outdated bids before simulation + +### IMPROVEMENT +[\#3105](https://github.com/bnb-chain/bsc/pull/3105) parlia.go: adjust timeForMining to 4/5 second +[\#3112](https://github.com/bnb-chain/bsc/pull/3112) feat: add storagechange object pool for better performance +[\#3110](https://github.com/bnb-chain/bsc/pull/3110) refactor: use the built-in max/min to simplify the code +[\#3120](https://github.com/bnb-chain/bsc/pull/3120) tx_pool: remove one non-necessary allocation +[\#3123](https://github.com/bnb-chain/bsc/pull/3123) refactor: use maps.copy for cleaner map handling +[\#3126](https://github.com/bnb-chain/bsc/pull/3126) jsutils: update getKeyParameters + ## v1.5.13 ### FEATURE [\#3019](https://github.com/bnb-chain/bsc/pull/3019) BEP-524: Short Block Interval Phase Two: 0.75 seconds diff --git a/version/version.go b/version/version.go index fc7cb355af..4452049994 100644 --- a/version/version.go +++ b/version/version.go @@ -19,6 +19,6 @@ package version const ( Major = 1 // Major version component of the current release Minor = 5 // Minor version component of the current release - Patch = 13 // Patch version component of the current release + Patch = 14 // Patch version component of the current release Meta = "" // Version metadata to append to the version string )