Skip to content

Commit a22808a

Browse files
ilgoozalexiscolinlumtisfadeevclockworkgr
authored
chore: release v0.22.2 (#2608)
* docs: replace local search by Algolia (#2588) * refactor(`network`): remove `MainnetVestingAccount` from mainnet account (#2549) * remove vesting accounts from campaign accounts * ../mocks/campaign_client.go * lint * change mock * spn version * update mocks * update spn * refactor Co-authored-by: İlker G. Öztürk <[email protected]> * docs: updated the blog tutorial (#2582) * docs: updated the blog tutorial * Update docs/docs/guide/03-blog/00-build-blog.md Co-authored-by: İlker G. Öztürk <[email protected]> * docs: update Cosmos SDK compatibility table (#2552) * fix: vite build env for gitpod (#2592) * chore(templates/workflow): add `darwin:arm64` release target (#2599) Co-authored-by: Danilo Pantani <[email protected]> * chore(`go.mod`): bump `SPN`, `cosmos-sdk` and `ibc-go` version (#2600) * chore: revert spn upgrade (#2601) This reverts commit cd0695e. * chore: rename `ignite-hq` to `ignite` (#2605) * chore: change repository URL username to "ignite" * chore: change paths and strings from "ignite-hq" to "ignite" * chore: change firebase settings to use "ignite" for project and target * chore: change goreleaser to use the new ignite repository name * chore: fix ignite repository URL in Gitpod readme * chore: rename ignitehq to ignite in test file * Update ignite/templates/app/stargate/go.mod.plush * Update docs/docs/guide/03-blog/02-connect-blockchain.md * Update ignite/templates/app/stargate/go.mod.plush * Update docs/docs/guide/03-blog/02-connect-blockchain.md * Update docs/docs/guide/03-blog/02-connect-blockchain.md * Update ignite/templates/app/stargate/go.mod.plush * chore: gh actions to ignite new repo * chore: change documentation to use the right Docker image tag Co-authored-by: İlker G. Öztürk <[email protected]> Co-authored-by: Thomas Bruyelle <[email protected]> * docs(changelog): add v0.22.2 (#2607) * docs: improve v0.22.0 notes (#2609) * docs: improve v0.22.2 notes (#2610) Co-authored-by: Alexis Colin <[email protected]> Co-authored-by: Lucas Bertrand <[email protected]> Co-authored-by: Denis Fadeev <[email protected]> Co-authored-by: Alex M <[email protected]> Co-authored-by: Jerónimo Albi <[email protected]> Co-authored-by: Danilo Pantani <[email protected]> Co-authored-by: Thomas Bruyelle <[email protected]>
1 parent c52eae6 commit a22808a

File tree

301 files changed

+1076
-1443
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

301 files changed

+1076
-1443
lines changed

Diff for: .firebaserc

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"projects": {
3-
"default": "ignite-hq"
3+
"default": "ignite"
44
},
55
"targets": {
6-
"ignite-hq": {
6+
"ignite": {
77
"hosting": {
88
"docs.ignite.com": [
99
"ignite-go-docs"
1010
]
1111
}
1212
}
1313
}
14-
}
14+
}

Diff for: .github/workflows/docs-deploy-preview.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ jobs:
4141
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_IGNITE_HQ }}"
4242
expires: 7d
4343
target: docs.ignite.com
44-
projectId: ignite-hq
44+
projectId: ignite

Diff for: .github/workflows/docs-deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ jobs:
4949
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_IGNITE_HQ }}"
5050
channelId: live
5151
target: docs.ignite.com
52-
projectId: ignite-hq
52+
projectId: ignite

Diff for: .github/workflows/release-binary.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
binary:
99
runs-on: ubuntu-latest
1010
env:
11-
working-directory: go/src/github.com/ignite-hq/cli
11+
working-directory: go/src/github.com/ignite/cli
1212

1313
steps:
1414
- name: Set up Go

Diff for: .github/workflows/release-nightly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
needs: [ consecutiveness ]
1919
env:
20-
working-directory: go/src/github.com/ignite-hq/cli
20+
working-directory: go/src/github.com/ignite/cli
2121

2222
steps:
2323
- uses: actions/checkout@v2

Diff for: .gitpod.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ tasks:
2020
##
2121
# configure env vars.
2222
echo "
23-
export VUE_APP_CUSTOM_URL=$(gp url)
23+
export VITE_CUSTOM_URL=$(gp url)
2424
export CHISEL_ADDR=$(gp url 7575)
2525
export RPC_ADDRESS=$(gp url 26657):443
2626
export API_ADDRESS=$(gp url 1317)
2727
" >> ~/.bashrc && source ~/.bashrc
2828
2929
echo "
30-
export VUE_APP_API_COSMOS=${API_ADDRESS}
31-
export VUE_APP_API_TENDERMINT=${RPC_ADDRESS}
32-
export VUE_APP_WS_TENDERMINT=${RPC_ADDRESS/https/wss}/websocket
30+
export VITE_API_COSMOS=${API_ADDRESS}
31+
export VITE_API_TENDERMINT=${RPC_ADDRESS}
32+
export VITE_WS_TENDERMINT=${RPC_ADDRESS/https/wss}/websocket
3333
" >> ~/.bashrc && source ~/.bashrc
3434
3535
##

Diff for: .gitpod/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ where:
3232

3333
📚 [Cosmos SDK Documentation](https://docs.cosmos.network): Learn about the framework for building application-specific blockchains.
3434

35-
⭐️ [Ignite CLI on Github](https://github.com/ignite-hq/cli): Submit an issue or contribute to the source code.
35+
⭐️ [Ignite CLI on Github](https://github.com/ignite/cli): Submit an issue or contribute to the source code.
3636

3737
## Ignite CLI features
3838

Diff for: .goreleaser.nightly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ project_name: ignite
22
builds:
33
- main: ./ignite/cmd/ignite
44
ldflags:
5-
- -s -w -X github.com/ignite-hq/cli/ignite/version.Version={{.Tag}} -X github.com/ignite-hq/cli/ignite/version.Date={{.Date}} -X github.com/ignite-hq/cli/ignite/version.Head={{.FullCommit}}
5+
- -s -w -X github.com/ignite/cli/ignite/version.Version={{.Tag}} -X github.com/ignite/cli/ignite/version.Date={{.Date}} -X github.com/ignite/cli/ignite/version.Head={{.FullCommit}}
66
goos:
77
- linux
88
- darwin

Diff for: .goreleaser.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ project_name: ignite
22
builds:
33
- main: ./ignite/cmd/ignite
44
ldflags:
5-
- -s -w -X github.com/ignite-hq/cli/ignite/version.Version={{.Tag}} -X github.com/ignite-hq/cli/ignite/version.Date={{.Date}} -X github.com/ignite-hq/cli/ignite/version.Head={{.FullCommit}}
5+
- -s -w -X github.com/ignite/cli/ignite/version.Version={{.Tag}} -X github.com/ignite/cli/ignite/version.Date={{.Date}} -X github.com/ignite/cli/ignite/version.Head={{.FullCommit}}
66
goos:
77
- linux
88
- darwin

Diff for: Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ PROJECT_NAME = ignite
55
DATE := $(shell date '+%Y-%m-%dT%H:%M:%S')
66
FIND_ARGS := -name '*.go' -type f -not -name '*.pb.go'
77
HEAD = $(shell git rev-parse HEAD)
8-
LD_FLAGS = -X github.com/ignite-hq/cli/ignite/version.Head='$(HEAD)' \
9-
-X github.com/ignite-hq/cli/ignite/version.Date='$(DATE)'
8+
LD_FLAGS = -X github.com/ignite/cli/ignite/version.Head='$(HEAD)' \
9+
-X github.com/ignite/cli/ignite/version.Date='$(DATE)'
1010
BUILD_FLAGS = -mod=readonly -ldflags='$(LD_FLAGS)'
1111
BUILD_FOLDER = ./dist
1212

@@ -37,7 +37,7 @@ govet:
3737
format:
3838
@echo Formatting...
3939
@find . $(FIND_ARGS) | xargs gofmt -d -s
40-
@find . $(FIND_ARGS) | xargs goimports -w -local github.com/ignite-hq/cli
40+
@find . $(FIND_ARGS) | xargs goimports -w -local github.com/ignite/cli
4141

4242
## lint: Run Golang CI Lint.
4343
lint:

Diff for: actions/cli/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@v2
1717

1818
- name: Print Help
19-
uses: ignite-hq/cli/actions/cli@develop
19+
uses: ignite/cli/actions/cli@develop
2020
with:
2121
args: -h
2222
```

Diff for: changelog.md

+25-14
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
11
# Changelog
22

3-
## [`v0.22.1`](https://github.com/ignite-hq/cli/releases/tag/v0.22.1)
3+
## [`v0.22.2`](https://github.com/ignite/cli/releases/tag/v0.22.2)
4+
5+
### Features
6+
7+
- Enable Darwin ARM 64 target for chain binary releases in CI templates
8+
9+
### Changes
10+
11+
- Rename `ignite-hq` to `ignite`
12+
13+
14+
## [`v0.22.1`](https://github.com/ignite/cli/releases/tag/v0.22.1)
415

516
### Fixes
617

718
- Fix IBC module scaffolding interface in templates
819

9-
## [`v0.22.0`](https://github.com/ignite-hq/cli/releases/tag/v0.22.0)
20+
## [`v0.22.0`](https://github.com/ignite/cli/releases/tag/v0.22.0)
1021

1122
### Features
1223

@@ -17,13 +28,13 @@
1728

1829
- Add a fix in code generation to avoid user's NodeJS configs to break TS client generation routine
1930

20-
## [`v0.21.2`](https://github.com/ignite-hq/cli/releases/tag/v0.21.2)
31+
## [`v0.21.2`](https://github.com/ignite/cli/releases/tag/v0.21.2)
2132

2233
### Fixes
2334

2435
- Set min. gas to zero when running `chain` command set
2536

26-
## [`v0.21.1`](https://github.com/ignite-hq/cli/releases/tag/v0.21.1)
37+
## [`v0.21.1`](https://github.com/ignite/cli/releases/tag/v0.21.1)
2738

2839
### Features
2940

@@ -35,38 +46,38 @@
3546
- Fixed shell completion generation
3647
- Make sure proto package names are valid when using simple app names
3748

38-
## [`v0.21.0`](https://github.com/ignite-hq/cli/releases/tag/v0.21.0)
49+
## [`v0.21.0`](https://github.com/ignite/cli/releases/tag/v0.21.0)
3950

4051
### Features
4152

4253
- Support simple app names when scaffolding chains. e.g.: `ignite scaffold chain mars`
4354
- Ask confirmation when scaffolding over changes that are not committed yet
4455

45-
## [`v0.20.4`](https://github.com/ignite-hq/cli/releases/tag/v0.20.4)
56+
## [`v0.20.4`](https://github.com/ignite/cli/releases/tag/v0.20.4)
4657

4758
### Fixes
4859

4960
- Use `protoc` binary compiled in an older version of macOS AMD64 for backwards compatibility in code generation
5061

51-
## [`v0.20.3`](https://github.com/ignite-hq/cli/releases/tag/v0.20.3)
62+
## [`v0.20.3`](https://github.com/ignite/cli/releases/tag/v0.20.3)
5263

5364
### Fixes
5465

5566
- Use latest version of CLI in templates to fix Linux ARM support _(It's now possible to develop chains in Linux ARM machines and since the chain depends on the CLI in its go.mod, it needs to use the latest version that support ARM targets)_
5667

57-
## [`v0.20.2`](https://github.com/ignite-hq/cli/releases/tag/v0.20.2)
68+
## [`v0.20.2`](https://github.com/ignite/cli/releases/tag/v0.20.2)
5869

5970
### Fixes
6071

6172
- Use `unsafe-reset-all` cmd under `tendermint` cmd for chains that use `=> v0.45.3` version of Cosmos SDK
6273

63-
## [`v0.20.1`](https://github.com/ignite-hq/cli/releases/tag/v0.20.1)
74+
## [`v0.20.1`](https://github.com/ignite/cli/releases/tag/v0.20.1)
6475

6576
### Features
6677

6778
- Release the CLI with Linux ARM and native M1 binaries
6879

69-
## [`v0.20.0`](https://github.com/ignite-hq/cli/releases/tag/v0.20.0)
80+
## [`v0.20.0`](https://github.com/ignite/cli/releases/tag/v0.20.0)
7081

7182
Our new name is **Ignite CLI**!
7283

@@ -78,7 +89,7 @@ Our new name is **Ignite CLI**!
7889
- Added support for in memory backend in `pkg/cosmosclient` package
7990
- Improved our tutorials and documentation
8091

81-
## [`v0.19.5`](https://github.com/ignite-hq/cli/pull/2158/commits)
92+
## [`v0.19.5`](https://github.com/ignite/cli/pull/2158/commits)
8293

8394
### Features
8495

@@ -104,7 +115,7 @@ Our new name is **Ignite CLI**!
104115

105116
- Upgraded Flutter template to `v2.0.3`
106117

107-
## [`v0.19.2`](https://github.com/ignite-hq/cli/milestone/14)
118+
## [`v0.19.2`](https://github.com/ignite/cli/milestone/14)
108119

109120
### Fixes
110121

@@ -118,7 +129,7 @@ Our new name is **Ignite CLI**!
118129

119130
### Breaking Changes
120131

121-
- Deprecated the Starport Modules [tendermint/spm](https://github.com/tendermint/spm) repo and moved the contents to the Ignite CLI repo [`ignite/pkg/`](https://github.com/ignite-hq/cli/tree/develop/ignite/pkg/) in [PR 1971](https://github.com/ignite-hq/cli/pull/1971/files)
132+
- Deprecated the Starport Modules [tendermint/spm](https://github.com/tendermint/spm) repo and moved the contents to the Ignite CLI repo [`ignite/pkg/`](https://github.com/ignite/cli/tree/develop/ignite/pkg/) in [PR 1971](https://github.com/ignite/cli/pull/1971/files)
122133

123134
Updates are required if your chain uses these packages:
124135

@@ -127,7 +138,7 @@ Our new name is **Ignite CLI**!
127138
- `spm/openapiconsole` is now `pkg/openapiconsole`
128139
- `testutil/sample` is now `cosmostestutil/sample`
129140

130-
- Updated the faucet HTTP API schema. See API changes in [fix: improve faucet reliability #1974](https://github.com/ignite-hq/cli/pull/1974/files#diff-0e157f4f60d6fbd95e695764df176c8978d85f1df61475fbfa30edef62fe35cd)
141+
- Updated the faucet HTTP API schema. See API changes in [fix: improve faucet reliability #1974](https://github.com/ignite/cli/pull/1974/files#diff-0e157f4f60d6fbd95e695764df176c8978d85f1df61475fbfa30edef62fe35cd)
131142

132143
## `v0.19.1`
133144

Diff for: contributing.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
Before you create a new PR on Ignite CLI, make sure that you read and comply with this document.
1414

15-
Start a new [Discussion](https://github.com/ignite-hq/cli/discussions/new) if you want to propose changes to this document.
15+
Start a new [Discussion](https://github.com/ignite/cli/discussions/new) if you want to propose changes to this document.
1616

1717
To prepare for success, see [Set Up Your Ignite CLI Development Environment](dev-env-setup.md).
1818

@@ -22,9 +22,9 @@ Thank you for your contribution!
2222

2323
## Providing Feedback
2424

25-
- Before you open an issue, do a web search, and check for [existing open and closed GitHub Issues](https://github.com/ignite-hq/cli/issues) to see if your question has already been asked and answered. If you find a relevant topic, you can comment on that issue.
25+
- Before you open an issue, do a web search, and check for [existing open and closed GitHub Issues](https://github.com/ignite/cli/issues) to see if your question has already been asked and answered. If you find a relevant topic, you can comment on that issue.
2626

27-
- To provide feedback or ask a question, create a [GitHub issue](https://github.com/ignite-hq/cli/issues/new/choose). Be sure to provide the relevant information, case study, or informative links as suggested by the Pull Request template.
27+
- To provide feedback or ask a question, create a [GitHub issue](https://github.com/ignite/cli/issues/new/choose). Be sure to provide the relevant information, case study, or informative links as suggested by the Pull Request template.
2828

2929
- We recommend using GitHub issues for issues and feedback. However, you can ask quick questions on the **#🛠️ build-chains** channel in the official [Ignite Discord](https://discord.gg/ignite).
3030

@@ -70,7 +70,7 @@ If you started a PR but couldn't finish it for whatever reason, don't give up. I
7070

7171
Ignite CLI follows Git Flow for branch strategy <https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow>.
7272

73-
- Each Ignite CLI release has a milestone, see <https://github.com/ignite-hq/cli/milestones>.
73+
- Each Ignite CLI release has a milestone, see <https://github.com/ignite/cli/milestones>.
7474

7575
- Issues in each milestone have a **priority/high**, **priority/medium**, or **priority/low** label.
7676

@@ -82,8 +82,8 @@ Ignite CLI follows Git Flow for branch strategy <https://www.atlassian.com/git/t
8282

8383
- Issues in the **Next** milestone usually have a lower priority than milestones that are associated with a release version, like **Milestone v0.1.0**.
8484

85-
- A single project board <https://github.com/ignite-hq/cli/projects/4> shows the issues we are currently working on and what issues we plan to work on.
85+
- A single project board <https://github.com/ignite/cli/projects/4> shows the issues we are currently working on and what issues we plan to work on.
8686

87-
Contributors, check the **To Do** column on the project board <https://github.com/ignite-hq/cli/projects/4> to find an issue to work on. See the [Ignite CLI bounty program](docs/bounty/index.md) to learn how your participation can earn rewards.
87+
Contributors, check the **To Do** column on the project board <https://github.com/ignite/cli/projects/4> to find an issue to work on. See the [Ignite CLI bounty program](docs/bounty/index.md) to learn how your participation can earn rewards.
8888

8989
We appreciate your contribution!

Diff for: dev-env-setup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ See [Install Ignite CLI](docs/install.md).
4343

4444
## Clone the Ignite CLI repo
4545

46-
`git clone --depth=1 [email protected]:ignite-hq/cli.git`
46+
`git clone --depth=1 [email protected]:ignite/cli.git`
4747

4848
## Run make install
4949

Diff for: docs/docs/06-bounty.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: Ignite CLI bounty program incentives and rewards.
77

88
Our Ignite CLI bounty program provides incentives for your participation and pays rewards. If you know Golang, follow the bounty issues, write code, close issues, and get rewarded.
99

10-
Do your bounty hunting in our repo. Track new, in-progress, and completed bounties on the [Bounty board](https://github.com/ignite-hq/cli/projects/5) in GitHub.
10+
Do your bounty hunting in our repo. Track new, in-progress, and completed bounties on the [Bounty board](https://github.com/ignite/cli/projects/5) in GitHub.
1111

1212
For details on the Ignite CLI bounty program, join the #bounty channel in [Ignite Discord](https://discord.com/invite/ignite).
1313

Diff for: docs/docs/contributing/01-contributing.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To set up your environment for success, follow the [technical setup](02-technica
1111

1212
## Using this repo
1313

14-
Review existing [Ignite CLI issues](https://github.com/ignite-hq/cli/issues) to see if your question has already been asked and answered.
14+
Review existing [Ignite CLI issues](https://github.com/ignite/cli/issues) to see if your question has already been asked and answered.
1515

1616
- To provide feedback, file an issue and provide generous details to help us understand how we can make it better.
1717
- To provide a fix, make a direct contribution. If you're not a member or maintainer, fork the repo and then submit a pull request (PR) from your forked repo to the `develop` branch.
@@ -63,7 +63,7 @@ As always, work-in-progress content might be happening in other locations and re
6363

6464
The Ignite product team developers are focused on building Ignite CLI and improving the developer experience. The Ignite Ecosystem Development team owns the technical content and tutorials and manages developer onboarding.
6565

66-
Meet the [people behind Ignite CLI and our contributors](https://github.com/ignite-hq/cli/graphs/contributors).
66+
Meet the [people behind Ignite CLI and our contributors](https://github.com/ignite/cli/graphs/contributors).
6767

6868
## Viewing docs builds
6969

Diff for: docs/docs/contributing/02-technical-setup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Click the GitHub icon in the sidebar for GitHub integration and follow the promp
2525

2626
## Clone the repos that you work in
2727

28-
- Fork or clone the <https://github.com/ignite-hq/cli/> repository.
28+
- Fork or clone the <https://github.com/ignite/cli/> repository.
2929

3030
Internal Ignite users have different permissions. If you're not sure, fork the repo.
3131

Diff for: docs/docs/contributing/templates/01-concept_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ We admire and respect these resources:
1212
- Google developer documentation [style guide](https://developers.google.com/style)
1313
- Digital Ocean style guide [do.co/style](https://do.co/style)
1414
15-
[Create an issue](https://github.com/ignite-hq/cli/issues/new/choose) to let us know if you have questions.
15+
[Create an issue](https://github.com/ignite/cli/issues/new/choose) to let us know if you have questions.
1616
1717
-->
1818

Diff for: docs/docs/contributing/templates/02-tutorial-template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ We admire, respect, and rely on these resources:
1212
- Google developer documentation [style guide](https://developers.google.com/style)
1313
- Digital Ocean style guide [do.co/style](https://do.co/style)
1414
15-
[Create an issue](https://github.com/ignite-hq/cli/issues/new/choose) to let us know if you have questions.
15+
[Create an issue](https://github.com/ignite/cli/issues/new/choose) to let us know if you have questions.
1616
1717
-->
1818

Diff for: docs/docs/guide/01-install.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Steps to install Ignite CLI on your local computer.
55

66
# Install Ignite CLI
77

8-
You can run [Ignite CLI](https://github.com/ignite-hq/cli) in a web-based Gitpod IDE or you can install Ignite CLI on your local computer.
8+
You can run [Ignite CLI](https://github.com/ignite/cli) in a web-based Gitpod IDE or you can install Ignite CLI on your local computer.
99

1010
## Prerequisites
1111

@@ -44,7 +44,7 @@ curl https://get.ignite.com/cli! | bash
4444

4545
This command invokes `curl` to download the install script and pipes the output to `bash` to perform the installation. The `ignite` binary is installed in `/usr/local/bin`.
4646

47-
To learn more or customize the installation process, see the [installer docs](https://github.com/ignite-hq/installer) on GitHub.
47+
To learn more or customize the installation process, see the [installer docs](https://github.com/ignite/installer) on GitHub.
4848

4949
### Write permission
5050

@@ -87,14 +87,14 @@ To remove the current Ignite CLI installation:
8787

8888
After all existing Ignite CLI installations are removed, follow the [Installing Ignite CLI](#installing-ignite-cli) instructions.
8989

90-
For details on version features and changes, see the [changelog.md](https://github.com/ignite-hq/cli/blob/develop/changelog.md) in the repo.
90+
For details on version features and changes, see the [changelog.md](https://github.com/ignite/cli/blob/develop/changelog.md) in the repo.
9191

9292
## Build from source
9393

9494
To experiment with the source code, you can build from source:
9595

9696
```bash
97-
git clone https://github.com/ignite-hq/cli --depth=1
97+
git clone https://github.com/ignite/cli --depth=1
9898
cd cli && make install
9999
```
100100

Diff for: docs/docs/guide/02-hello.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This tutorial is a great place to start your journey into the Cosmos ecosystem.
99

1010
## Get started
1111

12-
In the previous chapter you've learned how to install [Ignite CLI](https://github.com/ignite-hq/cli), the tool that offers everything you need to build, test, and launch your blockchain with a decentralized worldwide community.
12+
In the previous chapter you've learned how to install [Ignite CLI](https://github.com/ignite/cli), the tool that offers everything you need to build, test, and launch your blockchain with a decentralized worldwide community.
1313

1414
This series of tutorials is based on a specific version of Ignite CLI, so be sure to install the correct version. For example, to install Ignite CLI v0.20.0 use the following command:
1515

0 commit comments

Comments
 (0)