From c409eb6ac6a5c65ed85d889d7630064760ab7f67 Mon Sep 17 00:00:00 2001 From: "larry.lx" Date: Thu, 30 Nov 2023 09:35:50 +0800 Subject: [PATCH] release: draft v1.3.3 --- CHANGELOG.md | 7 +++++++ params/version.go | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36dbe9b348..e8c70718a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ # Changelog +## 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 + ## v1.3.2 BUGFIX fix: remove sharedPool diff --git a/params/version.go b/params/version.go index b0aa560d4d..49a5efbc3c 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 = 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 )