Skip to content

Commit 6b384b0

Browse files
authored
docs: bump icp-cli docs links to the 1.3 version slug (#354)
1 parent 41e8424 commit 6b384b0

14 files changed

Lines changed: 22 additions & 22 deletions

File tree

docs/developer-tools/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ Key features:
1818
- **Environments**: named deployment targets that combine a network, canister set, and settings (e.g., local, staging, production)
1919
- **Project scaffolding**: `icp new` bootstraps new projects from official templates
2020

21-
For installation, see the [Quickstart](../getting-started/quickstart.md) or the [full CLI documentation](https://cli.internetcomputer.org/1.1/).
21+
For installation, see the [Quickstart](../getting-started/quickstart.md) or the [full CLI documentation](https://cli.internetcomputer.org/1.3/).
2222

23-
Advanced: [creating recipes](https://cli.internetcomputer.org/1.1/guides/creating-recipes) and [creating templates](https://cli.internetcomputer.org/1.1/guides/creating-templates) are documented on the CLI docs site.
23+
Advanced: [creating recipes](https://cli.internetcomputer.org/1.3/guides/creating-recipes) and [creating templates](https://cli.internetcomputer.org/1.3/guides/creating-templates) are documented on the CLI docs site.
2424

2525
icp-cli collects anonymous usage telemetry. Opt out with `icp settings telemetry false` or `DO_NOT_TRACK=1`.
2626

27-
Coming from dfx? See the [migration guide](https://cli.internetcomputer.org/1.1/migration/from-dfx).
27+
Coming from dfx? See the [migration guide](https://cli.internetcomputer.org/1.3/migration/from-dfx).
2828

2929
### ic-wasm
3030

docs/getting-started/project-structure.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Beyond canisters, `icp.yaml` can also define **networks** (where to deploy) and
7272
| `local` | `local` (managed, localhost:8000) | Local development |
7373
| `ic` | `ic` (connected, https://icp-api.io) | Mainnet production |
7474

75-
You only need to add custom networks or environments when you have staging environments, testnets, or other deployment targets. See the [icp-cli configuration reference](https://cli.internetcomputer.org/1.1/reference/configuration#networks) for the full schema.
75+
You only need to add custom networks or environments when you have staging environments, testnets, or other deployment targets. See the [icp-cli configuration reference](https://cli.internetcomputer.org/1.3/reference/configuration#networks) for the full schema.
7676

7777
## Canister configuration (canister.yaml)
7878

@@ -155,7 +155,7 @@ icp project show
155155

156156
This outputs the effective configuration, including all expanded recipe steps and implicit defaults.
157157

158-
Recipes are Handlebars templates hosted at [dfinity/icp-cli-recipes](https://github.com/dfinity/icp-cli-recipes). You can also create local or remote recipes for custom build patterns. See the [icp-cli recipes documentation](https://cli.internetcomputer.org/1.1/guides/creating-recipes) for details.
158+
Recipes are Handlebars templates hosted at [dfinity/icp-cli-recipes](https://github.com/dfinity/icp-cli-recipes). You can also create local or remote recipes for custom build patterns. See the [icp-cli recipes documentation](https://cli.internetcomputer.org/1.3/guides/creating-recipes) for details.
159159

160160
## The .icp/ directory
161161

@@ -254,6 +254,6 @@ For a deep dive on binding generation, see [Binding generation](../guides/canist
254254
- [Binding generation](../guides/canister-calls/candid.md#binding-generation): deep dive on generating type-safe client code
255255
- [Asset canister](../guides/frontends/asset-canister.md): how the frontend recipe and asset upload work
256256
- [Canister lifecycle](../guides/canister-management/lifecycle.md): build, deploy, upgrade, and manage canisters
257-
- [icp-cli reference](https://cli.internetcomputer.org/1.1/reference/cli): full CLI and configuration documentation
257+
- [icp-cli reference](https://cli.internetcomputer.org/1.3/reference/cli): full CLI and configuration documentation
258258

259259
{/* Upstream: informed by dfinity/icp-cli docs/concepts/project-model.md, docs/concepts/recipes.md, docs/concepts/binding-generation.md, docs/concepts/canister-discovery.md */}

docs/getting-started/quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ icp --version
3737
ic-wasm --version
3838
```
3939

40-
> **Alternative methods:** [Homebrew, shell scripts, and other options](https://cli.internetcomputer.org/1.1/guides/installation) are also available.
40+
> **Alternative methods:** [Homebrew, shell scripts, and other options](https://cli.internetcomputer.org/1.3/guides/installation) are also available.
4141
4242
## Create a project
4343

@@ -127,6 +127,6 @@ Each canister name maps to a directory containing its own `canister.yaml` with b
127127
- [Choose your path](choose-your-path.md): pick a development path based on what you want to build
128128
- [Concepts: Canisters](../concepts/canisters.md): learn what canisters are and how they work
129129
- [AI coding agents](../guides/ai-coding-agents.md): use ICP skills to build on the Internet Computer with AI
130-
- [icp-cli documentation](https://cli.internetcomputer.org/1.1/): full CLI reference and guides
130+
- [icp-cli documentation](https://cli.internetcomputer.org/1.3/): full CLI reference and guides
131131

132132
<!-- Upstream: informed by dfinity/icp-cli docs/quickstart.md, docs/tutorial.md -->

docs/guides/canister-calls/parallel-inter-canister-calls.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ Parallel calls are most beneficial when the caller and callee are on **different
1616
<Tabs syncKey="lang">
1717
<TabItem label="Motoko">
1818

19-
- [icp-cli](https://cli.internetcomputer.org/1.1/guides/installation) installed
19+
- [icp-cli](https://cli.internetcomputer.org/1.3/guides/installation) installed
2020
- `mops` package manager with `core = "2.0.0"` in `mops.toml`
2121

2222
</TabItem>
2323
<TabItem label="Rust">
2424

25-
- [icp-cli](https://cli.internetcomputer.org/1.1/guides/installation) installed
25+
- [icp-cli](https://cli.internetcomputer.org/1.3/guides/installation) installed
2626
- `ic-cdk = "0.19"` and `futures = "0.3"` in `Cargo.toml`
2727

2828
</TabItem>

docs/guides/canister-management/cycles-management.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ icp deploy -e staging
307307
icp deploy -e production
308308
```
309309

310-
Each environment maintains separate canister IDs. Mainnet IDs are stored in `.icp/data/mappings/<environment>.ids.json` and should be committed to version control. See [Managing environments](https://cli.internetcomputer.org/1.1/guides/managing-environments) for full configuration options.
310+
Each environment maintains separate canister IDs. Mainnet IDs are stored in `.icp/data/mappings/<environment>.ids.json` and should be committed to version control. See [Managing environments](https://cli.internetcomputer.org/1.3/guides/managing-environments) for full configuration options.
311311

312312
## Production deployment checklist
313313

@@ -375,6 +375,6 @@ icp canister top-up backend --amount 1T -n ic
375375
- [Cycles ledger reference](../../references/system-canisters.md#cycles-ledger): Canister IDs and interface specification
376376
- [Calls with attached cycles](../canister-calls/inter-canister-calls.md#calls-with-attached-cycles): attach cycles to an inter-canister call and accept them in the callee
377377
- [Reproducible builds](reproducible-builds.md): Verify your WASM is trustworthy before deploying
378-
- [icp-cli docs](https://cli.internetcomputer.org/1.1/reference/cli#icp-cycles): Full command reference for `icp cycles` and `icp canister top-up`
378+
- [icp-cli docs](https://cli.internetcomputer.org/1.3/reference/cli#icp-cycles): Full command reference for `icp cycles` and `icp canister top-up`
379379

380380
{/* Upstream: informed by dfinity/portal (docs/building-apps/canister-management/topping-up.mdx, docs/building-apps/getting-started/tokens-and-cycles.mdx; dfinity/icp-cli) docs/guides/deploying-to-mainnet.md, docs/guides/tokens-and-cycles.md, docs/guides/managing-environments.md; dfinity/icskills: skills/cycles-management/SKILL.md */}

docs/guides/canister-management/lifecycle.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ This is useful during development when you want a clean slate. The canister ID i
264264

265265
Deleting permanently removes a canister from the network. The canister ID cannot be reused.
266266

267-
> **Note:** Canisters are like real estate on the IC. Creating them costs cycles. Instead of deleting a canister, consider reusing it in a different project. Check the [cli reference](https://cli.internetcomputer.org/1.1/concepts/project-model/#canister-ids) for more information.
267+
> **Note:** Canisters are like real estate on the IC. Creating them costs cycles. Instead of deleting a canister, consider reusing it in a different project. Check the [cli reference](https://cli.internetcomputer.org/1.3/concepts/project-model/#canister-ids) for more information.
268268
269269
1. Stop the canister first:
270270

docs/guides/canister-management/logs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ async fn main() -> Result<()> {
403403

404404
- [Canister lifecycle](lifecycle.md): configure log visibility and memory limits when creating or deploying a canister
405405
- [Testing strategies](../testing/strategies.md): use canister logs as part of your debugging workflow
406-
- [CLI reference: `icp canister logs`](https://cli.internetcomputer.org/1.1/reference/cli#icp-canister-logs): full command flags and options
407-
- [CLI reference: `icp canister settings update`](https://cli.internetcomputer.org/1.1/reference/cli#icp-canister-settings-update): full command flags and options
406+
- [CLI reference: `icp canister logs`](https://cli.internetcomputer.org/1.3/reference/cli#icp-canister-logs): full command flags and options
407+
- [CLI reference: `icp canister settings update`](https://cli.internetcomputer.org/1.3/reference/cli#icp-canister-settings-update): full command flags and options
408408

409409
<!-- Upstream: informed by dfinity/portal — docs/building-apps/canister-management/logs.mdx, docs/building-apps/canister-management/backtraces.mdx, docs/building-apps/advanced/canister-access-logs.mdx; dfinity/examples — rust/canister_logs, motoko/canister_logs, rust/query_stats, motoko/query_stats; dfinity/cdk-rs — ic-cdk/src/api.rs, ic-cdk/src/management_canister.rs, ic-management-canister-types/src/lib.rs; dfinity/icp-cli — docs/reference/cli.md, docs/reference/canister-settings.md -->

docs/guides/canister-management/settings.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ icp canister settings update backend -e ic --freezing-threshold 90d
332332

333333
Additional flags: `--reserved-cycles-limit`, `--wasm-memory-threshold`, `--log-memory-limit`, `--add-environment-variable`. Run `icp canister settings update --help` for the full list.
334334

335-
For the full list of CLI flags, see the [icp-cli reference](https://cli.internetcomputer.org/1.1/reference/cli#icp-canister-settings-update).
335+
For the full list of CLI flags, see the [icp-cli reference](https://cli.internetcomputer.org/1.3/reference/cli#icp-canister-settings-update).
336336

337337
## Updating settings programmatically
338338

docs/guides/canister-management/snapshots.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,6 @@ icp canister status my-canister -e ic
181181
- [Canister lifecycle](lifecycle.md): Understand how snapshots fit into the upgrade workflow
182182
- [Canister migration](canister-migration.md): Complete guide for moving a canister to a different subnet using the snapshot transfer workflow
183183
- [Canister upgrades security](../security/canister-upgrades.md): Security considerations when using snapshot-based rollbacks
184-
- [icp-cli canister snapshot reference](https://cli.internetcomputer.org/1.1/guides/canister-snapshots): Full command reference for all snapshot subcommands
184+
- [icp-cli canister snapshot reference](https://cli.internetcomputer.org/1.3/guides/canister-snapshots): Full command reference for all snapshot subcommands
185185

186186
<!-- Upstream: informed by dfinity/icp-cli docs/guides/canister-snapshots.md; dfinity/portal docs/building-apps/canister-management/snapshots.mdx -->

docs/guides/digital-assets/ledgers.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ ICRC-2 adds an approve/transferFrom pattern. The asset owner first approves a sp
252252

253253
**When to use:** Exchange logic, payment processing, subscription services, or any case where a canister needs to pull assets from a user's account.
254254

255-
> To grant or inspect an allowance manually without writing code, use the [`icp token approve`](https://cli.internetcomputer.org/1.1/reference/cli#icp-token-approve) and [`icp token allowance`](https://cli.internetcomputer.org/1.1/reference/cli#icp-token-allowance) CLI commands.
255+
> To grant or inspect an allowance manually without writing code, use the [`icp token approve`](https://cli.internetcomputer.org/1.3/reference/cli#icp-token-approve) and [`icp token allowance`](https://cli.internetcomputer.org/1.3/reference/cli#icp-token-allowance) CLI commands.
256256
257257
<Tabs syncKey="lang">
258258
<TabItem label="Motoko">

0 commit comments

Comments
 (0)