From b08af9a86b5ad2c12c4c67706daa5bbeb24cc1be Mon Sep 17 00:00:00 2001 From: "larry.lx" Date: Fri, 7 Apr 2023 09:15:51 +0800 Subject: [PATCH] release: prepare for release v1.1.22 --- CHANGELOG.md | 15 +++++++++++++++ params/version.go | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee85feb6ef..e1b1661320 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,19 @@ # Changelog +## v1.1.22 +FEATURE +* [\#1361](https://github.com/bnb-chain/bsc/pull/1361) cmd/faucet: merge ipfaucet2 branch to develop + +IMPROVEMENT +* [\#1412](https://github.com/bnb-chain/bsc/pull/1412) fix: init-network with config.toml without setting TimeFormat +* [\#1401](https://github.com/bnb-chain/bsc/pull/1401) log: support custom time format configuration +* [\#1382](https://github.com/bnb-chain/bsc/pull/1382) consnesus/parlia: abort sealing when block in the same height has updated +* [\#1383](https://github.com/bnb-chain/bsc/pull/1383) miner: no need to broadcast sidechain header mined by this validator + +BUGFIX +* [\#1379](https://github.com/bnb-chain/bsc/pull/1379) UT: fix some flaky tests +* [\#1403](https://github.com/bnb-chain/bsc/pull/1403) Makefile: fix devtools install error +* [\#1381](https://github.com/bnb-chain/bsc/pull/1381) fix: snapshot generation issue after chain reinit from a freezer + ## v1.1.21 FEATURE * [\#1389](https://github.com/bnb-chain/bsc/pull/1389) upgrade: update the fork height of planck upgrade on mainnet diff --git a/params/version.go b/params/version.go index 5468e71e1d..4561af6570 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 = 1 // Minor version component of the current release - VersionPatch = 21 // Patch version component of the current release + VersionPatch = 22 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string )