Skip to content

Commit

Permalink
Merge pull request #378 from neutron-org/releases/v2.x
Browse files Browse the repository at this point in the history
v2: release
  • Loading branch information
pr0n00gler authored Nov 28, 2023
2 parents 4d831b3 + d30ed2f commit e605ed3
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ import (
"github.com/neutron-org/neutron/docs"

"github.com/neutron-org/neutron/app/upgrades"
v030 "github.com/neutron-org/neutron/app/upgrades/v0.3.0"
v044 "github.com/neutron-org/neutron/app/upgrades/v0.4.4"
v110 "github.com/neutron-org/neutron/app/upgrades/v1.1.0"
v3 "github.com/neutron-org/neutron/app/upgrades/v3"
v200 "github.com/neutron-org/neutron/app/upgrades/v2.0.0"
"github.com/neutron-org/neutron/x/cron"

"github.com/CosmWasm/wasmd/x/wasm"
Expand Down Expand Up @@ -165,7 +165,7 @@ const (
)

var (
Upgrades = []upgrades.Upgrade{v3.Upgrade, v044.Upgrade, v110.Upgrade}
Upgrades = []upgrades.Upgrade{v030.Upgrade, v044.Upgrade, v200.Upgrade}

// DefaultNodeHome default home directories for the application daemon
DefaultNodeHome string
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v3
package v030

import (
store "github.com/cosmos/cosmos-sdk/store/types"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v3
package v030

import (
"github.com/cosmos/cosmos-sdk/codec"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v110
package v200

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

const (
// UpgradeName defines the on-chain upgrade name.
UpgradeName = "v1.1.0"
UpgradeName = "v2.0.0"
AtomDenom = "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9"
AxelarUsdcDenom = "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349"
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v110
package v200

import (
"fmt"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v110_test
package v200_test

import (
"testing"
Expand All @@ -24,7 +24,7 @@ import (
globalfeetypes "github.com/cosmos/gaia/v11/x/globalfee/types"
"github.com/stretchr/testify/suite"

v110 "github.com/neutron-org/neutron/app/upgrades/v1.1.0"
v110 "github.com/neutron-org/neutron/app/upgrades/v2.0.0"
"github.com/neutron-org/neutron/testutil"
)

Expand Down
2 changes: 1 addition & 1 deletion docs/static/swagger-ui-bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/static/swagger-ui-es-bundle-core.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/static/swagger-ui-es-bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/static/swagger-ui.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion wasmbinding/message_plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ func (m *CustomMessenger) submitAdminProposal(ctx sdk.Context, contractAddr sdk.
if err != nil {
return nil, nil, errors.Wrap(err, "invalid proposal quantity")
}
// here we handle pre-v1.1.0 style of proposals: param change, upgrade, client update
// here we handle pre-v2.0.0 style of proposals: param change, upgrade, client update
if m.isLegacyProposal(adminProposal) {
resp, err := m.performSubmitAdminProposalLegacy(ctx, contractAddr, adminProposal)
if err != nil {
Expand Down

0 comments on commit e605ed3

Please sign in to comment.