From f6e900fa656ec98d3421b0b479b5616469d6f13d Mon Sep 17 00:00:00 2001 From: DimitrisJim Date: Wed, 10 Jul 2024 10:51:34 +0300 Subject: [PATCH] chore: bump in relevant docs. --- docs/docs/01-ibc/02-integration.md | 32 ++++++++++++------------- docs/docs/01-ibc/06-channel-upgrades.md | 8 +++---- testing/README.md | 4 ++-- 3 files changed, 22 insertions(+), 22 deletions(-) diff --git a/docs/docs/01-ibc/02-integration.md b/docs/docs/01-ibc/02-integration.md index 321c011c78f..f4cf0f206ca 100644 --- a/docs/docs/01-ibc/02-integration.md +++ b/docs/docs/01-ibc/02-integration.md @@ -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 { @@ -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 { @@ -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 { @@ -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 { @@ -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 @@ -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 @@ -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 { diff --git a/docs/docs/01-ibc/06-channel-upgrades.md b/docs/docs/01-ibc/06-channel-upgrades.md index e8e7df83efd..05e640c4214 100644 --- a/docs/docs/01-ibc/06-channel-upgrades.md +++ b/docs/docs/01-ibc/06-channel-upgrades.md @@ -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" // ... ) diff --git a/testing/README.md b/testing/README.md index e2ba4c7935e..a14cbe70ef4 100644 --- a/testing/README.md +++ b/testing/README.md @@ -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) {