release: prepare for release v1.2.5

This commit is contained in:
larry.lx 2023-06-08 13:57:31 +08:00
parent bc543bae67
commit dd5b69b863
2 changed files with 5 additions and 1 deletions

@ -1,4 +1,8 @@
# Changelog
## v1.2.5
BUGFIX
* [\#1675](https://github.com/bnb-chain/bsc/pull/1675) goleveldb: downgrade the version for performance
## v1.2.4
FEATURE
* [\#1636](https://github.com/bnb-chain/bsc/pull/1636) upgrade: block height of Luban on mainnet

@ -23,7 +23,7 @@ import (
const (
VersionMajor = 1 // Major version component of the current release
VersionMinor = 2 // 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
)