Skip to content

Commit

Permalink
docs: bump version to v0.73.1
Browse files Browse the repository at this point in the history
Refs #4288, #4284. Ports the latest tooling commit
to the guide. Updates the installer logic to make use of the new
cargo-dist installer scripts, so that macOS instructions are
copy/pasteable in the guide (#4255) and use .tar.gz for archive format
(#4256). I opted to leave the pd instructions largely as they are.
  • Loading branch information
conorsch committed Apr 29, 2024
1 parent 673446e commit e7da959
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
9 changes: 5 additions & 4 deletions docs/guide/src/node/pd/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,19 @@ Download prebuilt binaries from the [Penumbra releases page on Github](https://g
Make sure to use the most recent version available, as the version of `pd` must
match the software currently running on the network.

Make sure to choose the correct platform for your machine. After downloading the `.tar.xz` file,
Make sure to choose the correct platform for your machine. After downloading the `.tar.gz` file,
extract it, and copy its contents to your `$PATH`. For example:

```
curl -sSfL -O https://github.com/penumbra-zone/penumbra/releases/download/{{ #include ../../penumbra_version.md }}/pd-x86_64-unknown-linux-gnu.tar.xz
unxz pd-x86_64-unknown-linux-gnu.tar.xz
tar -xf pd-x86_64-unknown-linux-gnu.tar
curl -sSfL -O https://github.com/penumbra-zone/penumbra/releases/download/{{ #include ../../penumbra_version.md }}/pd-x86_64-unknown-linux-gnu.tar.gz
tar -xf pd-x86_64-unknown-linux-gnu.tar.gz
sudo mv pd-x86_64-unknown-linux-gnu/pd /usr/local/bin/
# confirm the pd binary is installed by running:
pd --version
```

There's also a one-liner install script available on the release page, which will install `pd` to `$HOME/.cargo/bin/`.
As of v0.64.1 (released 2023-12-12), we build Linux binaries on Ubuntu 22.04. If these binaries don't work for you out of the box,
you'll need to [build from source](../../dev/build.md), or use the container images.

Expand Down
10 changes: 4 additions & 6 deletions docs/guide/src/pcli/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,17 @@ Download prebuilt binaries from the [Penumbra releases page on Github](https://g
Make sure to use the most recent version available, as the version of `pcli` must
match the software currently running on the network.

Make sure choose the correct platform for your machine. After downloading the `.tar.xz` file,
extract it, and copy its contents to your `$PATH`. For example:
Make sure choose the correct platform for your machine. Or, you can use a one-liner install script:

```
curl -sSfL -O https://github.com/penumbra-zone/penumbra/releases/download/{{ #include ../penumbra_version.md }}/pcli-x86_64-unknown-linux-gnu.tar.xz
unxz pcli-x86_64-unknown-linux-gnu.tar.xz
tar -xf pcli-x86_64-unknown-linux-gnu.tar
sudo mv pcli-x86_64-unknown-linux-gnu/pcli /usr/local/bin/
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/{{ #include ../penumbra_version.md }}/pcli-installer.sh | sh
# confirm the pcli binary is installed by running:
pcli --version
```

The installer script will place the binary in `$HOME/.cargo/bin/`.

If you see an error message containing `GLIBC`, then your system is not compatible
with the precompiled binaries. See details below.

Expand Down
2 changes: 1 addition & 1 deletion docs/guide/src/penumbra_version.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.73.0
v0.73.1

0 comments on commit e7da959

Please sign in to comment.