Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add migration docs for v0.22.2 #2629

Merged
merged 7 commits into from
Jul 18, 2022
Merged
Show file tree
Hide file tree
Changes from 6 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
2 changes: 1 addition & 1 deletion docs/docs/migration/v0.18.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
sidebar_position: 3
sidebar_position: 4
title: v0.18
description: For chains that were scaffolded with Ignite CLI versions lower than v0.18, changes are required to use Ignite CLI v0.18.
---
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/migration/v0.19.2.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
sidebar_position: 2
sidebar_position: 3
title: v0.19.2
description: For chains that were scaffolded with Ignite CLI versions lower than v0.19.2, changes are required to use Ignite CLI v0.19.2.
---
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/migration/v0.20.0.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
sidebar_position: 1
sidebar_position: 2
title: v0.20.0
description: For chains that were scaffolded with Ignite CLI versions lower than v0.20.0, changes are required to use Ignite CLI v0.20.0.
---
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/migration/v0.22.0.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
sidebar_position: 0
sidebar_position: 1
title: v0.22.0
description: For chains that were scaffolded with Ignite CLI versions lower than v0.22.0, changes are required to use Ignite CLI v0.22.0.
---

# 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/cli v0.22.0`
1. Open your `go.mod` and change the Ignite CLI line with `github.com/ignite-hq/cli v0.22.0`

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

Expand Down
16 changes: 16 additions & 0 deletions docs/docs/migration/v0.22.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
sidebar_position: 0
title: v0.22.2
description: For chains that were scaffolded with Ignite CLI versions lower than v0.22.2, changes are required to use Ignite CLI v0.22.2.
---

# Upgrading a blockchain to use Ignite CLI v0.22.2

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.

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`.
jeronimoalbi marked this conversation as resolved.
Show resolved Hide resolved

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