From be6e269a4de5b0e46aa5e6d089ee7c20c88d8e5c Mon Sep 17 00:00:00 2001 From: zzzckck <152148891+zzzckck@users.noreply.github.com> Date: Mon, 18 Mar 2024 20:45:09 +0800 Subject: [PATCH] release: prepare for release v1.4.3-alpha --- CHANGELOG.md | 29 ++++++++++++++++++++++++++++- params/version.go | 2 +- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 66b616cbdd..8aafcd9de4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,33 @@ # Changelog +## v1.4.3 +### FEATURE +* [\#2241](https://github.com/bnb-chain/bsc/pull/2241) cmd/utils, core/rawdb, triedb/pathdb: flip hash to path scheme +* [\#2312](https://github.com/bnb-chain/bsc/pull/2312) cmd/utils, node: switch to Pebble as the default db if none exists + +### IMPROVEMENT +* [\#2228](https://github.com/bnb-chain/bsc/pull/2228) core: rephrase TriesInMemory log +* [\#2234](https://github.com/bnb-chain/bsc/pull/2234) cmd/utils: disable snap protocol for fast node +* [\#2236](https://github.com/bnb-chain/bsc/pull/2236) build(deps): bump github.com/quic-go/quic-go from 0.39.3 to 0.39.4 +* [\#2240](https://github.com/bnb-chain/bsc/pull/2240) core/state: fix taskResult typo + +* [\#2280](https://github.com/bnb-chain/bsc/pull/2280) cmd/utils, core: only full sync for fast nodes +* [\#2298](https://github.com/bnb-chain/bsc/pull/2298) cmd, node: initialize ports with --instance +* [\#2302](https://github.com/bnb-chain/bsc/pull/2302) cmd/geth, core/rawdb: add dbDeleteTrieState +* [\#2304](https://github.com/bnb-chain/bsc/pull/2304) eth/ethconfig: remove overridekepler and overrideshanghai +* [\#2307](https://github.com/bnb-chain/bsc/pull/2307) internal/ethapi: add net_nodeInfo +* [\#2311](https://github.com/bnb-chain/bsc/pull/2311) Port cancun related changes from unreleased v1.14.0 +* [\#2313](https://github.com/bnb-chain/bsc/pull/2313) tests/truffle: use hbss to run test +* [\#2314](https://github.com/bnb-chain/bsc/pull/2314) cmd/jsutil: dump MinGasPrice for validator +* [\#2317](https://github.com/bnb-chain/bsc/pull/2317) feat: add mev metrics + +### BUGFIX +* [\#2272](https://github.com/bnb-chain/bsc/pull/2272) parlia: add state prepare for internal SC transaction +* [\#2277](https://github.com/bnb-chain/bsc/pull/2277) fix: systemTx should be always at the end of block +* [\#2299](https://github.com/bnb-chain/bsc/pull/2299) fix: add FeynmanFix upgrade for a testnet issue +* [\#2310](https://github.com/bnb-chain/bsc/pull/2310) core/vm: fix PrecompiledContractsCancun + ## v1.4.2 -### Feature +### FEATURE * [\#2021](https://github.com/bnb-chain/bsc/pull/2021) feat: support separate trie database * [\#2224](https://github.com/bnb-chain/bsc/pull/2224) feat: support MEV diff --git a/params/version.go b/params/version.go index a68d4a1279..6dad103e93 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 = 2 // Patch version component of the current release + VersionPatch = 3 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string )