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

# v0.1.0-beta.6

* feat: `icp identity export` to print the PEM file for the identity

# v0.1.0-beta.5

* fix: Fix error when loading network descriptors from v0.1.0-beta.3
* feat: `icp identity delete` and `icp identity rename`
* feat: `icp identity export` to print the PEM file for the identity

# v0.1.0-beta.4

Expand Down
8 changes: 4 additions & 4 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.5"
version = "0.1.0-beta.6"
repository = "https://github.com/dfinity/icp-cli"
rust-version = "1.88.0"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ This guide covers:
**macOS / Linux / WSL:**

```bash
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/dfinity/icp-cli/releases/download/v0.1.0-beta.5/icp-cli-installer.sh | sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/dfinity/icp-cli/releases/download/v0.1.0-beta.6/icp-cli-installer.sh | sh
```

Restart your shell or follow the instructions shown by the installer.

**Windows:**

```ps1
powershell -ExecutionPolicy Bypass -c "irm https://github.com/dfinity/icp-cli/releases/download/v0.1.0-beta.5/icp-cli-installer.ps1 | iex"
powershell -ExecutionPolicy Bypass -c "irm https://github.com/dfinity/icp-cli/releases/download/v0.1.0-beta.6/icp-cli-installer.ps1 | iex"
```

Restart your terminal after installation.
Expand Down
Loading