Skip to content

Commit

Permalink
bumping version to v4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
spoo-bar committed Aug 30, 2023
1 parent 91ca9dc commit 929346b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
5 changes: 2 additions & 3 deletions app/app_upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
upgrade2_0_0 "github.com/archway-network/archway/app/upgrades/2_0_0"
upgrade3_0_0 "github.com/archway-network/archway/app/upgrades/3_0_0"
upgrade4_0_0 "github.com/archway-network/archway/app/upgrades/4_0_0"
upgradelatest "github.com/archway-network/archway/app/upgrades/latest"
upgrade4_0_1 "github.com/archway-network/archway/app/upgrades/4_0_1"
)

// UPGRADES
Expand All @@ -22,8 +22,7 @@ var Upgrades = []upgrades.Upgrade{
upgrade2_0_0.Upgrade, // v2.0.0
upgrade3_0_0.Upgrade, // v3.0.0
upgrade4_0_0.Upgrade, // v4.0.0

upgradelatest.Upgrade, // latest - This upgrade handler is used for all the current changes to the protocol
upgrade4_0_1.Upgrade, // v4.0.1
}

func (app *ArchwayApp) setupUpgrades() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ import (
"github.com/archway-network/archway/app/upgrades"
)

// This upgrade handler is used for all the current changes to the protocol

const Name = "latest"
const Name = "v4.0.1"

var Upgrade = upgrades.Upgrade{
UpgradeName: Name,
Expand Down
2 changes: 1 addition & 1 deletion interchaintest/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

const (
initialVersion = "v4.0.0" // The last release of the chain. The one the mainnet is running on
upgradeName = "latest" // The next upgrade name. Should match the upgrade handler.
upgradeName = "v4.0.1" // The next upgrade name. Should match the upgrade handler.
chainName = "archway"
)

Expand Down

0 comments on commit 929346b

Please sign in to comment.