Skip to content

Commit

Permalink
chore: release v7.2.0-rc2 (#504)
Browse files Browse the repository at this point in the history
  • Loading branch information
zakir-code authored May 21, 2024
1 parent 5aa6cb5 commit 060248e
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ Ref: https://keepachangelog.com/en/1.0.0/

# Change log

## [v7.2.0-rc2]

### Bug Fixes

* Fixed the pre-compiled `BridgeCall` interface return value type

## [v7.1.0-rc1]

### Features
Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/v7/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

var Upgrade = upgrades.Upgrade{
UpgradeName: "v7.1.x",
UpgradeName: "v7.2.x",
CreateUpgradeHandler: CreateUpgradeHandler,
StoreUpgrades: func() *storetypes.StoreUpgrades {
return &storetypes.StoreUpgrades{}
Expand Down
6 changes: 4 additions & 2 deletions cmd/doctor.go
Original file line number Diff line number Diff line change
Expand Up @@ -308,10 +308,12 @@ 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 {
} else if blockHeight < fxtypes.TestnetBlockHeightV7 {
fmt.Printf("%sVersion: V6.0\n", SPACE)
} else if blockHeight < fxtypes.TestnetBlockHeightV72 {
} else if blockHeight < fxtypes.TestnetBlockHeightV71 {
fmt.Printf("%sVersion: V7.0\n", SPACE)
} else if blockHeight < fxtypes.TestnetBlockHeightV72 {
fmt.Printf("%sVersion: V7.1\n", SPACE)
}
}
return plan != nil, nil
Expand Down
2 changes: 1 addition & 1 deletion solidity/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@functionx_io/contracts",
"description": "Smart Contract library for Solidity",
"version": "0.2.0",
"version": "0.2.1",
"files": [
"/contracts/**/*.sol",
"package.json",
Expand Down
5 changes: 3 additions & 2 deletions types/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ const (
TestnetBlockHeightV42 = 8_481_000
TestnetBlockHeightV5 = 9_773_000
TestnetBlockHeightV6 = 11_701_000
TestnetBlockHeightV71 = 12_961_500
TestnetBlockHeightV72 = 14_369_500
TestnetBlockHeightV7 = 12_961_500
TestnetBlockHeightV71 = 14_369_500
TestnetBlockHeightV72 = 14_389_000
)

var (
Expand Down

0 comments on commit 060248e

Please sign in to comment.