From 195ae35130a8cc0a5654c5e117966e9fec34c1fe Mon Sep 17 00:00:00 2001 From: "larry.lx" Date: Mon, 27 Nov 2023 13:16:54 +0800 Subject: [PATCH] release: prepare for release v1.3.5 --- CHANGELOG.md | 23 ++++++++++++++++++++--- params/version.go | 2 +- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75d36b42c5..f2823ad034 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,20 +1,37 @@ # Changelog +## v1.3.5 +FEATURE +* [\#1970](https://github.com/bnb-chain/bsc/pull/1970) core: enable Shanghai EIPs +* [\#1973](https://github.com/bnb-chain/bsc/pull/1973) core/systemcontracts: include BEP-319 on kepler hardfork + +BUGFIX +* [\#1964](https://github.com/bnb-chain/bsc/pull/1964) consensus/parlia: hardfork block can be epoch block +* [\#1979](https://github.com/bnb-chain/bsc/pull/1979) fix: upgrade pebble and improve config +* [\#1980](https://github.com/bnb-chain/bsc/pull/1980) internal/ethapi: fix null effectiveGasPrice in GetTransactionReceipt + +IMPROVEMENT +* [\#1977](https://github.com/bnb-chain/bsc/pull/1977) doc: add instructions for starting fullnode with pbss + ## v1.3.4 BUGFIX * fix: remove pipecommit in miner * add a hard fork: Hertzfix ## v1.3.3 -IMPROVEMENT -* [\#2000](https://github.com/bnb-chain/bsc/pull/2000) cmd/utils: exit process if txlookuplimit flag is set - BUGFIX * [\#1986](https://github.com/bnb-chain/bsc/pull/1986) fix(cmd): check pruneancient when creating db +IMPROVEMENT +* [\#2000](https://github.com/bnb-chain/bsc/pull/2000) cmd/utils: exit process if txlookuplimit flag is set + ## v1.3.2 BUGFIX * fix: remove sharedPool +IMPROVEMENT +* [\#2007](https://github.com/bnb-chain/bsc/pull/2007) consensus/parlia: increase size of snapshot cache in parlia +* [\#2008](https://github.com/bnb-chain/bsc/pull/2008) consensus/parlia: recover faster when snapshot of parlia is gone in disk + ## v1.3.1 FEATURE * [\#1881](https://github.com/bnb-chain/bsc/pull/1881) feat: active pbss diff --git a/params/version.go b/params/version.go index cca396d7c5..28058aad1a 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 = 3 // 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 )