Skip to content

Commit

Permalink
chore: bump in relevant docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitrisJim committed Jul 10, 2024
1 parent 3a1c964 commit f6e900f
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 22 deletions.
32 changes: 16 additions & 16 deletions docs/docs/01-ibc/02-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ import (
// other imports
// ...
capabilitykeeper "github.com/cosmos/ibc-go/modules/capability/keeper"
ibckeeper "github.com/cosmos/ibc-go/v8/modules/core/keeper"
ibctransferkeeper "github.com/cosmos/ibc-go/v8/modules/apps/transfer/keeper"
ibckeeper "github.com/cosmos/ibc-go/v9/modules/core/keeper"
ibctransferkeeper "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper"
)

type App struct {
Expand Down Expand Up @@ -70,11 +70,11 @@ import (

capabilitykeeper "github.com/cosmos/ibc-go/modules/capability/keeper"
capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types"
ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported"
ibckeeper "github.com/cosmos/ibc-go/v8/modules/core/keeper"
"github.com/cosmos/ibc-go/v8/modules/apps/transfer"
ibctransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"
ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint"
ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported"
ibckeeper "github.com/cosmos/ibc-go/v9/modules/core/keeper"
"github.com/cosmos/ibc-go/v9/modules/apps/transfer"
ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"
ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint"
)

func NewApp(...args) *App {
Expand Down Expand Up @@ -142,8 +142,8 @@ Once the `Router` has been set, no new routes can be added.
import (
// other imports
// ...
porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types"
ibctransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"
porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types"
ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"
)

func NewApp(...args) *App {
Expand All @@ -169,9 +169,9 @@ import (
// ...
"github.com/cosmos/cosmos-sdk/types/module"

ibc "github.com/cosmos/ibc-go/v8/modules/core"
ibc "github.com/cosmos/ibc-go/v9/modules/core"
"github.com/cosmos/ibc-go/modules/capability"
"github.com/cosmos/ibc-go/v8/modules/apps/transfer"
"github.com/cosmos/ibc-go/v9/modules/apps/transfer"
)

func NewApp(...args) *App {
Expand Down Expand Up @@ -212,7 +212,7 @@ import (
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"

// highlight-next-line
+ ibctransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"
+ ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"
)

// app.go
Expand Down Expand Up @@ -240,7 +240,7 @@ import (
// ...
"github.com/cosmos/cosmos-sdk/types/module"
// highlight-next-line
+ ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint"
+ ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint"
)

// app.go
Expand Down Expand Up @@ -279,9 +279,9 @@ import (
// ...
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types"
ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported"
ibckeeper "github.com/cosmos/ibc-go/v8/modules/core/keeper"
ibctransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"
ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported"
ibckeeper "github.com/cosmos/ibc-go/v9/modules/core/keeper"
ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"
)

func NewApp(...args) *App {
Expand Down
8 changes: 4 additions & 4 deletions docs/docs/01-ibc/06-channel-upgrades.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,10 +290,10 @@ In app.go, the existing transfer stack must be wrapped with the fee middleware.

import (
// ...
ibcfee "github.com/cosmos/ibc-go/v8/modules/apps/29-fee"
ibctransferkeeper "github.com/cosmos/ibc-go/v8/modules/apps/transfer/keeper"
transfer "github.com/cosmos/ibc-go/v8/modules/apps/transfer"
porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types"
ibcfee "github.com/cosmos/ibc-go/v9/modules/apps/29-fee"
ibctransferkeeper "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper"
transfer "github.com/cosmos/ibc-go/v9/modules/apps/transfer"
porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types"
// ...
)

Expand Down
4 changes: 2 additions & 2 deletions testing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@ import (
"github.com/cometbft/cometbft/libs/log"
dbm "github.com/cometbft/cometbft-db"

"github.com/cosmos/ibc-go/v8/modules/apps/transfer/simapp"
ibctesting "github.com/cosmos/ibc-go/v8/testing"
"github.com/cosmos/ibc-go/v9/modules/apps/transfer/simapp"
ibctesting "github.com/cosmos/ibc-go/v9/testing"
)

func SetupTransferTestingApp() (ibctesting.TestingApp, map[string]json.RawMessage) {
Expand Down

0 comments on commit f6e900f

Please sign in to comment.