Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions docs/docs/migration/v0.22.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,18 @@ description: For chains that were scaffolded with Ignite CLI versions lower than

# Upgrading a blockchain to use Ignite CLI v0.22.0

1. Open your `go.mod` and change the Ignite CLI line with `github.com/ignite-hq/cli v0.22.0`
Ignite CLI v0.22.2 changed the GitHub username from "ignite-hq" to "ignite", which means the imports must be fixed to reflect this change.

2. Upgrade your IBC version to [v3](https://github.com/cosmos/ibc-go/releases/tag/v3.0.0).
1. In your `go.mod` file find the require line for Ignite CLI that starts with `github.com/ignite-hq/cli` and is followed by a version.
It looks something like `github.com/ignite-hq/cli v0.22.0`, and replace it by `github.com/ignite/cli v0.22.2`.

2. Make a bulk find and replace in the import statements for `github.com/ignite-hq/cli` to be replaced by `github.com/ignite/cli`.

3. Finally run `go mod tidy` and ensure there's no mention if `ignite-hq/cli` in your `go.sum` file.

This update includes an upgrade to the `ibc-go` packages. Please make the according changes:

1. Upgrade your IBC version to [v3](https://github.com/cosmos/ibc-go/releases/tag/v3.0.0).

1. Search for `github.com/cosmos/ibc-go/v2` in the import statements of your `.go` files and replace `v2` in the end with `v3`

Expand Down
16 changes: 0 additions & 16 deletions docs/docs/migration/v0.22.2.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/docs/migration/v0.24.0.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
sidebar_position: 0
sidebar_position: 1
title: v0.24.0
description: For chains that were scaffolded with Ignite CLI versions lower than v0.24, changes are required to use Ignite CLI v0.24.
---
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/migration/v0.25.0.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
sidebar_position: 0
title: v0.24.0
description: For chains that were scaffolded with Ignite CLI versions lower than v0.25,0, changes are required to use Ignite CLI v0.24.0.
title: v0.25.0
description: For chains that were scaffolded with Ignite CLI versions lower than v0.25.0. changes are required to use Ignite CLI v0.24.0.
---

## Protobuf directory migration
Expand Down