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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased

# v0.1.0

* feat: `icp canister snapshot` - create, delete, restore, list, download, and upload canister snapshots
* feat: `icp canister call` now supports `--proxy` flag to route calls through a proxy canister
* Use `--proxy <CANISTER_ID>` to forward the call through a proxy canister's `proxy` method
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ resolver = "3"
[workspace.package]
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2024"
version = "0.1.0-beta.6"
version = "0.1.0"
repository = "https://github.com/dfinity/icp-cli"
rust-version = "1.88.0"
license = "Apache-2.0"
Expand Down
12 changes: 6 additions & 6 deletions docs/guides/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ Set up everything you need to build and deploy canisters on the Internet Compute

**What you'll install:**

| Tool | Purpose |
|------|---------|
| **icp-cli** | Core CLI for building and deploying canisters |
| **ic-wasm** | Optimizes WebAssembly for the Internet Computer |
| **Language toolchain** | Motoko compiler (via mops) or Rust compiler |
| Tool | Purpose |
|------------------------|-------------------------------------------------|
| **icp-cli** | Core CLI for building and deploying canisters |
| **ic-wasm** | Optimizes WebAssembly for the Internet Computer |
| **Language toolchain** | Motoko compiler (via mops) or Rust compiler |

> **Windows users:** Local networks require [Docker Desktop](https://docs.docker.com/desktop/setup/install/windows-install/), and Motoko requires [WSL](https://learn.microsoft.com/en-us/windows/wsl/install). For the full experience, install both and run commands inside WSL. Rust-only projects deploying to mainnet can run natively on Windows.

Expand Down Expand Up @@ -76,7 +76,7 @@ powershell -ExecutionPolicy Bypass -c "irm https://github.com/dfinity/icp-cli/re

Restart your terminal after installation.

**Homebrew (macOS only):**
**Homebrew (macOS/Linux only):**

```bash
brew install dfinity/tap/icp-cli
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-canister-environment-variables/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-canister-settings/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-empty/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- canisters/*
2 changes: 1 addition & 1 deletion examples/icp-environments/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/canister-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/canister-yaml-schema.json

name: backend

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/canister-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/canister-yaml-schema.json

name: frontend

Expand Down
2 changes: 1 addition & 1 deletion examples/icp-frontend-environment-variables/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- backend
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-motoko-mops/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-motoko-recipe/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-motoko/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-network-connected/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-network-connected/networks/staging.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/network-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/network-yaml-schema.json

# This "staging" network is an alias for mainnet
# "icp deploy --network staging" would deploy a second set of canisters to mainnet
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-network-inline/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-pre-built/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-progress-bar-test-bed/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: canister-1
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-project-multi-canister-inline/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: canister-1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/canister-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/canister-yaml-schema.json

name: canister-1

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/canister-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/canister-yaml-schema.json

name: canister-2

Expand Down
2 changes: 1 addition & 1 deletion examples/icp-project-multi-canister/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- canisters/*
2 changes: 1 addition & 1 deletion examples/icp-project-single-canister/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-proxy-canister/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json
#
# This example demonstrates using a proxy canister to forward calls to other canisters.
#
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-recipe-local-file/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-recipe-registry-official/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-recipe-remote-url-official/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-recipe-remote-url/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-rust-recipe/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-rust/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-static-assets-recipe/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-static-assets/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-static-react-site/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-sync/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-wasm-metadata-recipe/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-wasm-metadata/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-wasm-optimization-recipe/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
2 changes: 1 addition & 1 deletion examples/icp-wasm-optimization/icp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0-beta.2/docs/schemas/icp-yaml-schema.json
# yaml-language-server: $schema=https://github.com/dfinity/icp-cli/raw/refs/tags/v0.1.0/docs/schemas/icp-yaml-schema.json

canisters:
- name: my-canister
Expand Down
4 changes: 2 additions & 2 deletions npm/icp-cli-darwin-arm64/bin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ Run from the npm directory:

```bash
cd npm
./scripts/download-binaries.sh 0.1.0-beta.4
./scripts/download-binaries.sh 0.1.0
```

Or manually download:

```bash
VERSION="0.1.0-beta.4"
VERSION="0.1.0"
curl -L "https://github.com/dfinity/icp-cli/releases/download/v${VERSION}/icp-aarch64-apple-darwin.tar.gz" -o darwin-arm64.tar.gz
tar -xzf darwin-arm64.tar.gz -C icp-cli-darwin-arm64/bin/
chmod +x icp-cli-darwin-arm64/bin/icp
Expand Down
2 changes: 1 addition & 1 deletion npm/icp-cli-darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@icp-sdk/icp-cli-darwin-arm64",
"version": "0.1.0-beta.4",
"version": "0.1.0",
"description": "icp-cli binary for macOS ARM64 (Apple Silicon)",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions npm/icp-cli-darwin-x64/bin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ Run from the npm directory:

```bash
cd npm
./scripts/download-binaries.sh 0.1.0-beta.4
./scripts/download-binaries.sh 0.1.0
```

Or manually download:

```bash
VERSION="0.1.0-beta.4"
VERSION="0.1.0"
curl -L "https://github.com/dfinity/icp-cli/releases/download/v${VERSION}/icp-x86_64-apple-darwin.tar.gz" -o darwin-x64.tar.gz
tar -xzf darwin-x64.tar.gz -C icp-cli-darwin-x64/bin/
chmod +x icp-cli-darwin-x64/bin/icp
Expand Down
2 changes: 1 addition & 1 deletion npm/icp-cli-darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@icp-sdk/icp-cli-darwin-x64",
"version": "0.1.0-beta.4",
"version": "0.1.0",
"description": "icp-cli binary for macOS x64 (Intel)",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions npm/icp-cli-linux-arm64/bin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ Run from the npm directory:

```bash
cd npm
./scripts/download-binaries.sh 0.1.0-beta.4
./scripts/download-binaries.sh 0.1.0
```

Or manually download:

```bash
VERSION="0.1.0-beta.4"
VERSION="0.1.0"
curl -L "https://github.com/dfinity/icp-cli/releases/download/v${VERSION}/icp-aarch64-unknown-linux-gnu.tar.gz" -o linux-arm64.tar.gz
tar -xzf linux-arm64.tar.gz -C icp-cli-linux-arm64/bin/
chmod +x icp-cli-linux-arm64/bin/icp
Expand Down
2 changes: 1 addition & 1 deletion npm/icp-cli-linux-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@icp-sdk/icp-cli-linux-arm64",
"version": "0.1.0-beta.4",
"version": "0.1.0",
"description": "icp-cli binary for Linux ARM64",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions npm/icp-cli-linux-x64/bin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ Run from the npm directory:

```bash
cd npm
./scripts/download-binaries.sh 0.1.0-beta.4
./scripts/download-binaries.sh 0.1.0
```

Or manually download:

```bash
VERSION="0.1.0-beta.4"
VERSION="0.1.0"
curl -L "https://github.com/dfinity/icp-cli/releases/download/v${VERSION}/icp-x86_64-unknown-linux-gnu.tar.gz" -o linux-x64.tar.gz
tar -xzf linux-x64.tar.gz -C icp-cli-linux-x64/bin/
chmod +x icp-cli-linux-x64/bin/icp
Expand Down
2 changes: 1 addition & 1 deletion npm/icp-cli-linux-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@icp-sdk/icp-cli-linux-x64",
"version": "0.1.0-beta.4",
"version": "0.1.0",
"description": "icp-cli binary for Linux x64",
"repository": {
"type": "git",
Expand Down
Loading
Loading