Skip to content

Commit

Permalink
chore: bump cli version (#36)
Browse files Browse the repository at this point in the history
## Description
Updates the version of the CLI

## Motivation and Context
Previous CLI release was incorrect for dusk-3 with a missing default
  • Loading branch information
joroshiba committed Jan 23, 2024
1 parent 429d607 commit dfa121f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/components/_astria-cli-install.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,31 +13,31 @@ import TabItem from '@theme/TabItem';
<TabItem value="ARM Mac" label="ARM Mac" default>

```bash
curl -L https://github.com/astriaorg/astria/releases/download/cli-v0.2.2/astria-cli-aarch64-apple-darwin.tar.gz > astria-cli.tar.gz
curl -L https://github.com/astriaorg/astria/releases/download/cli-v0.3.1/astria-cli-aarch64-apple-darwin.tar.gz > astria-cli.tar.gz
tar -xvzf astria-cli.tar.gz
```

</TabItem>
<TabItem value="X86_64 Mac" label="X86_64 Mac">

```bash
curl -L https://github.com/astriaorg/astria/releases/download/cli-v0.2.2/astria-cli-x86_64-apple-darwin.tar.gz > astria-cli.tar.gz
curl -L https://github.com/astriaorg/astria/releases/download/cli-v0.3.1/astria-cli-x86_64-apple-darwin.tar.gz > astria-cli.tar.gz
tar -xvzf astria-cli.tar.gz
```

</TabItem>
<TabItem value="x86_64 Linux" label="x86_64 Linux">

```bash
curl -L https://github.com/astriaorg/astria/releases/download/cli-v0.2.2/astria-cli-x86_64-unknown-linux-gnu.tar.gz > astria-cli.tar.gz
curl -L https://github.com/astriaorg/astria/releases/download/cli-v0.3.1/astria-cli-x86_64-unknown-linux-gnu.tar.gz > astria-cli.tar.gz
tar -xvzf astria-cli.tar.gz
```

</TabItem>
<TabItem value="From Source" label="From Source">

```bash
cargo install astria-cli --git=https://github.com/astriaorg/astria --tag=cli-v0.2.2 --locked
cargo install astria-cli --git=https://github.com/astriaorg/astria --tag=cli-v0.3.1 --locked
```

</TabItem>
Expand Down

0 comments on commit dfa121f

Please sign in to comment.