From e941c1243afa81a6784671a62fba0ddf1385b7f3 Mon Sep 17 00:00:00 2001 From: zakir <80246097+zakir-code@users.noreply.github.com> Date: Thu, 22 Feb 2024 10:49:29 +0800 Subject: [PATCH] chore: release v7.0.0-rc0 (#152) --- CHANGELOG.md | 6 ++++++ cmd/doctor.go | 2 ++ types/version.go | 1 + 3 files changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70912559f..b51e70512 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,12 @@ Ref: https://keepachangelog.com/en/1.0.0/ # Change log +## [v7.0.0-rc0] + +### Features + +* Supports bridge call to fxCore evm contract + ## [v6.0.0] ### Features diff --git a/cmd/doctor.go b/cmd/doctor.go index a204e92ee..7e6b02e01 100644 --- a/cmd/doctor.go +++ b/cmd/doctor.go @@ -308,6 +308,8 @@ func checkBlockchainData(bc blockchain, genesisId, privValidatorKeyFile string) fmt.Printf("%sVersion: V4.2\n", SPACE) } else if blockHeight < fxtypes.TestnetBlockHeightV6 { fmt.Printf("%sVersion: V5.0\n", SPACE) + } else if blockHeight < fxtypes.TestnetBlockHeightV71 { + fmt.Printf("%sVersion: V6.0\n", SPACE) } } return plan != nil, nil diff --git a/types/version.go b/types/version.go index 0327a6301..ac75e68f0 100644 --- a/types/version.go +++ b/types/version.go @@ -33,6 +33,7 @@ const ( TestnetBlockHeightV42 = 8_481_000 TestnetBlockHeightV5 = 9_773_000 TestnetBlockHeightV6 = 11_701_000 + TestnetBlockHeightV71 = 12_961_500 ) var (