Compare commits

...

3 Commits

Author SHA1 Message Date
zjubfd
bae7e6b52e docs: add changelog and new version number 2024-04-01 12:36:44 +08:00
Roshan
3b55be5eb2 upgrade: update system contracts bytes code and hardfork time of Feynman upgrade (#2335) 2024-03-28 10:05:18 +08:00
zjubfd
280cad3098 fix: fix the wrong version number (#2305) 2024-03-19 14:16:34 +08:00
4 changed files with 79 additions and 7 deletions

View File

@@ -1,4 +1,12 @@
# Changelog
## v1.3.13
* [\#2358](https://github.com/bnb-chain/bsc/pull/2358) doc: add Feynman upgrade for mainnet
* [\#2335](https://github.com/bnb-chain/bsc/pull/2335) upgrade: update system contracts bytes code and hardfork time of Feynman upgrade
## v1.3.12
BUGFIX
* [\#2305](https://github.com/bnb-chain/bsc/pull/2305) fix: fix the wrong version number
## v1.3.11
BUGFIX
* [\#2288](https://github.com/bnb-chain/bsc/pull/2288) fix: add FeynmanFix upgrade for a testnet issue

File diff suppressed because one or more lines are too long

View File

@@ -145,11 +145,10 @@ var (
HertzBlock: big.NewInt(31302048),
HertzfixBlock: big.NewInt(34140700),
// UnixTime: 1705996800 is January 23, 2024 8:00:00 AM UTC
ShanghaiTime: newUint64(1705996800),
KeplerTime: newUint64(1705996800),
// TODO
FeynmanTime: nil,
ShanghaiTime: newUint64(1705996800),
KeplerTime: newUint64(1705996800),
FeynmanTime: newUint64(1713419340),
FeynmanFixTime: newUint64(1713419340),
Parlia: &ParliaConfig{
Period: 3,

View File

@@ -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 = 10 // Patch version component of the current release
VersionPatch = 13 // Patch version component of the current release
VersionMeta = "" // Version metadata to append to the version string
)