Skip to content

Commit

Permalink
bump to v12 (state breaking)
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed Jan 31, 2023
1 parent 7e4a6ec commit 2486d13
Show file tree
Hide file tree
Showing 27 changed files with 46 additions and 46 deletions.
12 changes: 6 additions & 6 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ import (
tmos "github.com/tendermint/tendermint/libs/os"
dbm "github.com/tendermint/tm-db"

"github.com/CosmosContracts/juno/v11/docs"
"github.com/CosmosContracts/juno/v11/x/mint"
mintkeeper "github.com/CosmosContracts/juno/v11/x/mint/keeper"
minttypes "github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/CosmosContracts/juno/v12/docs"
"github.com/CosmosContracts/juno/v12/x/mint"
mintkeeper "github.com/CosmosContracts/juno/v12/x/mint/keeper"
minttypes "github.com/CosmosContracts/juno/v12/x/mint/types"
"github.com/cosmos/cosmos-sdk/baseapp"
"github.com/cosmos/cosmos-sdk/client/grpc/tmservice"
"github.com/cosmos/cosmos-sdk/client/rpc"
Expand Down Expand Up @@ -108,8 +108,8 @@ import (
icahosttypes "github.com/cosmos/ibc-go/v3/modules/apps/27-interchain-accounts/host/types"
icatypes "github.com/cosmos/ibc-go/v3/modules/apps/27-interchain-accounts/types"

encparams "github.com/CosmosContracts/juno/v11/app/params"
upgrades "github.com/CosmosContracts/juno/v11/app/upgrades"
encparams "github.com/CosmosContracts/juno/v12/app/params"
upgrades "github.com/CosmosContracts/juno/v12/app/upgrades"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion app/encoding.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package app

import (
"github.com/CosmosContracts/juno/v11/app/params"
"github.com/CosmosContracts/juno/v12/app/params"

"github.com/cosmos/cosmos-sdk/std"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/junod/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"os"

"github.com/CosmosContracts/juno/v11/app"
"github.com/CosmosContracts/juno/v12/app"
"github.com/cosmos/cosmos-sdk/server"

svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"
Expand Down
4 changes: 2 additions & 2 deletions cmd/junod/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ import (
"github.com/CosmWasm/wasmd/x/wasm"
wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper"
wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types"
"github.com/CosmosContracts/juno/v11/app"
"github.com/CosmosContracts/juno/v11/app/params"
"github.com/CosmosContracts/juno/v12/app"
"github.com/CosmosContracts/juno/v12/app/params"
)

// NewRootCmd creates a new root command for junod. It is called once in the
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/CosmosContracts/juno/v11
module github.com/CosmosContracts/juno/v12

go 1.19

Expand Down
4 changes: 2 additions & 2 deletions x/mint/abci.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package mint
import (
"time"

"github.com/CosmosContracts/juno/v11/x/mint/keeper"
"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/CosmosContracts/juno/v12/x/mint/keeper"
"github.com/CosmosContracts/juno/v12/x/mint/types"
"github.com/cosmos/cosmos-sdk/telemetry"
sdk "github.com/cosmos/cosmos-sdk/types"
)
Expand Down
2 changes: 1 addition & 1 deletion x/mint/client/cli/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/spf13/cobra"

"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/CosmosContracts/juno/v12/x/mint/types"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/flags"
)
Expand Down
2 changes: 1 addition & 1 deletion x/mint/client/rest/grpc_query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/gogo/protobuf/proto"
"github.com/stretchr/testify/suite"

minttypes "github.com/CosmosContracts/juno/v11/x/mint/types"
minttypes "github.com/CosmosContracts/juno/v12/x/mint/types"
)

type IntegrationTestSuite struct {
Expand Down
2 changes: 1 addition & 1 deletion x/mint/client/rest/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/gorilla/mux"

"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/CosmosContracts/juno/v12/x/mint/types"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/types/rest"
)
Expand Down
4 changes: 2 additions & 2 deletions x/mint/client/testutil/suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"github.com/stretchr/testify/suite"
tmcli "github.com/tendermint/tendermint/libs/cli"

"github.com/CosmosContracts/juno/v11/x/mint/client/cli"
minttypes "github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/CosmosContracts/juno/v12/x/mint/client/cli"
minttypes "github.com/CosmosContracts/juno/v12/x/mint/types"

"github.com/cosmos/cosmos-sdk/client/flags"
clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli"
Expand Down
4 changes: 2 additions & 2 deletions x/mint/genesis.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package mint

import (
"github.com/CosmosContracts/juno/v11/x/mint/keeper"
"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/CosmosContracts/juno/v12/x/mint/keeper"
"github.com/CosmosContracts/juno/v12/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
)

Expand Down
2 changes: 1 addition & 1 deletion x/mint/keeper/grpc_query.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package keeper
import (
"context"

"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/CosmosContracts/juno/v12/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
)

Expand Down
4 changes: 2 additions & 2 deletions x/mint/keeper/grpc_query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"github.com/stretchr/testify/suite"
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"

"github.com/CosmosContracts/juno/v11/app"
"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/CosmosContracts/juno/v12/app"
"github.com/CosmosContracts/juno/v12/x/mint/types"
"github.com/cosmos/cosmos-sdk/baseapp"
sdk "github.com/cosmos/cosmos-sdk/types"
)
Expand Down
4 changes: 2 additions & 2 deletions x/mint/keeper/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import (
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
dbm "github.com/tendermint/tm-db"

junoapp "github.com/CosmosContracts/juno/v11/app"
junoapp "github.com/CosmosContracts/juno/v12/app"
"github.com/cosmos/cosmos-sdk/simapp"

"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/CosmosContracts/juno/v12/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
)

Expand Down
2 changes: 1 addition & 1 deletion x/mint/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package keeper
import (
"github.com/tendermint/tendermint/libs/log"

"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/CosmosContracts/juno/v12/x/mint/types"
"github.com/cosmos/cosmos-sdk/codec"
sdk "github.com/cosmos/cosmos-sdk/types"
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
Expand Down
2 changes: 1 addition & 1 deletion x/mint/keeper/migrator.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package keeper

import (
v2 "github.com/CosmosContracts/juno/v11/x/mint/migrations/v2"
v2 "github.com/CosmosContracts/juno/v12/x/mint/migrations/v2"
sdk "github.com/cosmos/cosmos-sdk/types"
)

Expand Down
2 changes: 1 addition & 1 deletion x/mint/keeper/querier.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package keeper
import (
abci "github.com/tendermint/tendermint/abci/types"

"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/CosmosContracts/juno/v12/x/mint/types"
"github.com/cosmos/cosmos-sdk/codec"
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
Expand Down
4 changes: 2 additions & 2 deletions x/mint/keeper/querier_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

"github.com/stretchr/testify/require"

keep "github.com/CosmosContracts/juno/v11/x/mint/keeper"
"github.com/CosmosContracts/juno/v11/x/mint/types"
keep "github.com/CosmosContracts/juno/v12/x/mint/keeper"
"github.com/CosmosContracts/juno/v12/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"

abci "github.com/tendermint/tendermint/abci/types"
Expand Down
2 changes: 1 addition & 1 deletion x/mint/migrations/v2/migrate.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package v2

import (
"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/CosmosContracts/juno/v12/x/mint/types"
"github.com/cosmos/cosmos-sdk/codec"
sdk "github.com/cosmos/cosmos-sdk/types"
)
Expand Down
10 changes: 5 additions & 5 deletions x/mint/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ import (
"github.com/spf13/cobra"
abci "github.com/tendermint/tendermint/abci/types"

"github.com/CosmosContracts/juno/v11/x/mint/client/cli"
"github.com/CosmosContracts/juno/v11/x/mint/client/rest"
"github.com/CosmosContracts/juno/v11/x/mint/keeper"
"github.com/CosmosContracts/juno/v11/x/mint/simulation"
"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/CosmosContracts/juno/v12/x/mint/client/cli"
"github.com/CosmosContracts/juno/v12/x/mint/client/rest"
"github.com/CosmosContracts/juno/v12/x/mint/keeper"
"github.com/CosmosContracts/juno/v12/x/mint/simulation"
"github.com/CosmosContracts/juno/v12/x/mint/types"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/codec"
cdctypes "github.com/cosmos/cosmos-sdk/codec/types"
Expand Down
2 changes: 1 addition & 1 deletion x/mint/module_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
abcitypes "github.com/tendermint/tendermint/abci/types"
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"

"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/CosmosContracts/juno/v12/x/mint/types"
"github.com/cosmos/cosmos-sdk/simapp"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
)
Expand Down
2 changes: 1 addition & 1 deletion x/mint/simulation/decoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"fmt"

"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/CosmosContracts/juno/v12/x/mint/types"
"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/types/kv"
)
Expand Down
6 changes: 3 additions & 3 deletions x/mint/simulation/decoder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (

"github.com/stretchr/testify/require"

"github.com/CosmosContracts/juno/v11/app"
"github.com/CosmosContracts/juno/v11/x/mint/simulation"
"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/CosmosContracts/juno/v12/app"
"github.com/CosmosContracts/juno/v12/x/mint/simulation"
"github.com/CosmosContracts/juno/v12/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/kv"
)
Expand Down
2 changes: 1 addition & 1 deletion x/mint/simulation/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"fmt"
"math/rand"

"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/CosmosContracts/juno/v12/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module"
)
Expand Down
4 changes: 2 additions & 2 deletions x/mint/simulation/genesis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

"github.com/stretchr/testify/require"

"github.com/CosmosContracts/juno/v11/x/mint/simulation"
"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/CosmosContracts/juno/v12/x/mint/simulation"
"github.com/CosmosContracts/juno/v12/x/mint/types"
"github.com/cosmos/cosmos-sdk/codec"
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
sdk "github.com/cosmos/cosmos-sdk/types"
Expand Down
2 changes: 1 addition & 1 deletion x/mint/simulation/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/cosmos/cosmos-sdk/x/simulation"

"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/CosmosContracts/juno/v12/x/mint/types"
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
)

Expand Down
2 changes: 1 addition & 1 deletion x/mint/simulation/params_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/stretchr/testify/require"

"github.com/CosmosContracts/juno/v11/x/mint/simulation"
"github.com/CosmosContracts/juno/v12/x/mint/simulation"
)

func TestParamChangest(t *testing.T) {
Expand Down

0 comments on commit 2486d13

Please sign in to comment.