diff --git a/CHANGELOG.md b/CHANGELOG.md index 274176f3e0..51d55baa97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,14 @@ # Changelog +## v1.5.10 +### FEATURE +[\#3015](https://github.com/bnb-chain/bsc/pull/3015) config: update BSC Mainnet hardfork time: Lorentz + +### BUGFIX +NA + +### IMPROVEMENT +[\#2985](https://github.com/bnb-chain/bsc/pull/2985) core: clearup pascal&prague testflag and rialto code + ## v1.5.9 ### FEATURE [\#2932](https://github.com/bnb-chain/bsc/pull/2932) BEP-520: Short Block Interval Phase One: 1.5 seconds diff --git a/version/version.go b/version/version.go index bdd38d8ceb..b37b6b9adb 100644 --- a/version/version.go +++ b/version/version.go @@ -19,6 +19,6 @@ package version const ( Major = 1 // Major version component of the current release Minor = 5 // Minor version component of the current release - Patch = 9 // Patch version component of the current release + Patch = 10 // Patch version component of the current release Meta = "" // Version metadata to append to the version string )