From 58602e6b5309a12ee742cbf6b9f49e12e7280d07 Mon Sep 17 00:00:00 2001 From: zzzckck <152148891+zzzckck@users.noreply.github.com> Date: Mon, 22 Jan 2024 20:45:36 +0800 Subject: [PATCH] release: prepare for release v1.3.8 (#2168) --- CHANGELOG.md | 36 ++++++++++++++++++++++++++++++++++++ params/version.go | 2 +- 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e7b24ed6b..c6a181673f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,40 @@ # Changelog +## v1.3.8 +FEATURE +* [\#2074](https://github.com/bnb-chain/bsc/pull/2074) faucet: new faucet client +* [\#2082](https://github.com/bnb-chain/bsc/pull/2082) cmd/dbcmd: add inspect trie tool +* [\#2140](https://github.com/bnb-chain/bsc/pull/2140) eth/fetcher: allow underpriced transactions in after timeout +* [\#2115](https://github.com/bnb-chain/bsc/pull/2115) p2p: no peer reconnect if explicitly disconnected +* [\#2128](https://github.com/bnb-chain/bsc/pull/2128) go.mod: upgrade prysm to support built with go@v1.21 +* [\#2151](https://github.com/bnb-chain/bsc/pull/2151) feat: enable NoDial should still dial static nodes +* [\#2144](https://github.com/bnb-chain/bsc/pull/2144) p2p: reset disconnect set with magic enode ID + +BUGFIX +* [\#2095](https://github.com/bnb-chain/bsc/pull/2095) rpc: fix ns/µs mismatch in metrics +* [\#2083](https://github.com/bnb-chain/bsc/pull/2083) triedb/pathdb: fix async node buffer diskroot mismatches when journaling +* [\#2120](https://github.com/bnb-chain/bsc/pull/2120) ethdb/pebble: cap memory table size as maxMemTableSize-1 +* [\#2107](https://github.com/bnb-chain/bsc/pull/2107) cmd/geth: fix parse state scheme +* [\#2121](https://github.com/bnb-chain/bsc/pull/2121) parlia: fix verifyVoteAttestation when verify a batch of headers +* [\#2132](https://github.com/bnb-chain/bsc/pull/2132) core: fix systemcontracts.GenesisHash when run bsc firstly without init +* [\#2155](https://github.com/bnb-chain/bsc/pull/2155) cmd, core: resolve scheme from a read-write database and refactor resolveChainFreezerDir func + +IMPROVEMENT +* [\#2099](https://github.com/bnb-chain/bsc/pull/2099) params/config: remove useless toml tag for hardforks +* [\#2100](https://github.com/bnb-chain/bsc/pull/2100) core/genesis: support chapel to run without geth init +* [\#2101](https://github.com/bnb-chain/bsc/pull/2101) core: add metrics for bad block +* [\#2109](https://github.com/bnb-chain/bsc/pull/2109) cmd/geth: tidy flags for geth command +* [\#1953](https://github.com/bnb-chain/bsc/pull/1953) build(deps): bump github.com/docker/docker +* [\#2086](https://github.com/bnb-chain/bsc/pull/2086) build(deps): bump golang.org/x/crypto from 0.12.0 to 0.17.0 +* [\#2106](https://github.com/bnb-chain/bsc/pull/2106) params: use rialto to test builtin network logic +* [\#2098](https://github.com/bnb-chain/bsc/pull/2098) cmd, les, tests: remove light client code +* [\#2114](https://github.com/bnb-chain/bsc/pull/2114) p2p: add serve metrics +* [\#2123](https://github.com/bnb-chain/bsc/pull/2123) p2p, eth: improve logs +* [\#2116](https://github.com/bnb-chain/bsc/pull/2116) tests: revive evm test cases +* [\#2161](https://github.com/bnb-chain/bsc/pull/2161) code: remove IsEuler check from worker.go +* [\#2167](https://github.com/bnb-chain/bsc/pull/2167) improve: increase SystemTxsGas from 1,500,000 to 5,000,000 +* [\#2172](https://github.com/bnb-chain/bsc/pull/2172) improve: remove sharedpool from miner +* [\#1332](https://github.com/bnb-chain/bsc/pull/1332) core/state: no need to prune block if the same + ## v1.3.7 FEATURE * [\#2067](https://github.com/bnb-chain/bsc/pull/2067) cmd/geth: add check func to validate state scheme diff --git a/params/version.go b/params/version.go index a51dde4faf..344df6518a 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 = 7 // Patch version component of the current release + VersionPatch = 8 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string )