Skip to content

Commit

Permalink
chore: rename update from v11.7.0 to v11.7.1 tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Max authored and xlab committed Feb 27, 2024
1 parent fecd443 commit b97647b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ import (

"github.com/persistenceOne/persistenceCore/v11/app/keepers"
"github.com/persistenceOne/persistenceCore/v11/app/upgrades"
v11_7_0 "github.com/persistenceOne/persistenceCore/v11/app/upgrades/v11.7.0"
v11_7_1 "github.com/persistenceOne/persistenceCore/v11/app/upgrades/v11.7.1"
)

var (
DefaultNodeHome string
Upgrades = []upgrades.Upgrade{v11_7_0.Upgrade}
Upgrades = []upgrades.Upgrade{v11_7_1.Upgrade}
ModuleBasics = module.NewBasicManager(keepers.AppModuleBasics...)
)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v11_7_0
package v11_7_1

import (
store "github.com/cosmos/cosmos-sdk/store/types"
Expand All @@ -10,7 +10,7 @@ import (

const (
// UpgradeName defines the on-chain upgrade name.
UpgradeName = "v11.7.0"
UpgradeName = "v11.7.1"
)

var Upgrade = upgrades.Upgrade{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v11_7_0
package v11_7_1

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion interchaintest/chain_upgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func TestPersistenceUpgradeBasic(t *testing.T) {
upgradeRepo = PersistenceCoreImage.Repository
initialVersion = "v10.4.1"
upgradeBranchVersion = PersistenceCoreImage.Version
upgradeName = "v11.7.0"
upgradeName = "v11.7.1"
)

CosmosChainUpgradeTest(
Expand Down

0 comments on commit b97647b

Please sign in to comment.