From f2f8a7a90ead274a4ce5fd9c04b5ff2d4c075eda Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Wed, 26 Feb 2020 19:20:30 -0700 Subject: [PATCH] Reference the v1.0.0 installer --- docs/src/implemented-proposals/installer.md | 6 +++--- docs/src/paper-wallet/installation.md | 2 +- docs/src/running-archiver.md | 2 +- docs/src/running-validator/validator-software.md | 12 ++++++------ 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/src/implemented-proposals/installer.md b/docs/src/implemented-proposals/installer.md index 5dbcbd4403..0a28fc0fba 100644 --- a/docs/src/implemented-proposals/installer.md +++ b/docs/src/implemented-proposals/installer.md @@ -11,7 +11,7 @@ This document proposes an easy to use software install and updater that can be u The easiest install method for supported platforms: ```bash -$ curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.18.0/install/solana-install-init.sh | sh +$ curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v1.0.0/install/solana-install-init.sh | sh ``` This script will check github for the latest tagged release and download and run the `solana-install-init` binary from there. @@ -20,7 +20,7 @@ If additional arguments need to be specified during the installation, the follow ```bash $ init_args=.... # arguments for `solana-install-init ...` -$ curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.18.0/install/solana-install-init.sh | sh -s - ${init_args} +$ curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v1.0.0/install/solana-install-init.sh | sh -s - ${init_args} ``` ### Fetch and run a pre-built installer from a Github release @@ -28,7 +28,7 @@ $ curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.18.0/install With a well-known release URL, a pre-built binary can be obtained for supported platforms: ```bash -$ curl -o solana-install-init https://github.com/solana-labs/solana/releases/download/v0.18.0/solana-install-init-x86_64-apple-darwin +$ curl -o solana-install-init https://github.com/solana-labs/solana/releases/download/v1.0.0/solana-install-init-x86_64-apple-darwin $ chmod +x ./solana-install-init $ ./solana-install-init --help ``` diff --git a/docs/src/paper-wallet/installation.md b/docs/src/paper-wallet/installation.md index 39dfd06e8a..543eb93c78 100644 --- a/docs/src/paper-wallet/installation.md +++ b/docs/src/paper-wallet/installation.md @@ -2,7 +2,7 @@ Follow this guide to setup Solana's key generation tool called `solana-keygen` {% hint style="warn" %} -After installation, ensure your version is `0.23.1` or higher by running `solana-keygen -V` +After installation, ensure your version is `1.0.0` or higher by running `solana-keygen -V` {% endhint %} ## Download diff --git a/docs/src/running-archiver.md b/docs/src/running-archiver.md index aeec36b3c3..9aa8d39515 100644 --- a/docs/src/running-archiver.md +++ b/docs/src/running-archiver.md @@ -47,7 +47,7 @@ The `solana-install` tool can be used to easily install and upgrade the cluster #### Linux and mac OS ```bash -curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.18.0/install/solana-install-init.sh | sh -s +curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v1.0.0/install/solana-install-init.sh | sh -s ``` Alternatively build the `solana-install` program from source and run the following command to obtain the same result: diff --git a/docs/src/running-validator/validator-software.md b/docs/src/running-validator/validator-software.md index df4b2e2a43..a1ed075ac2 100644 --- a/docs/src/running-validator/validator-software.md +++ b/docs/src/running-validator/validator-software.md @@ -1,14 +1,14 @@ # Installing the Validator Software Install the Solana release -[v0.23.1](https://github.com/solana-labs/solana/releases/tag/v0.23.1) on your +[v1.0.0](https://github.com/solana-labs/solana/releases/tag/v1.0.0) on your machine by running: ```bash -curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.23.1/install/solana-install-init.sh | sh -s - 0.23.1 +curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v1.0.0/install/solana-install-init.sh | sh -s - 1.0.0 ``` -If you are connecting to a different testnet, you can replace `0.23.1` with the +If you are connecting to a different testnet, you can replace `1.0.0` with the release tag matching the software version of your desired testnet, or replace it with the named channel `stable`, `beta`, or `edge`. @@ -16,11 +16,11 @@ The following output indicates a successful update: ```text looking for latest release -downloading v0.23.1 installer +downloading v1.0.0 installer Configuration: /home/solana/.config/solana/install/config.yml Active release directory: /home/solana/.local/share/solana/install/active_release -* Release version: 0.23.1 -* Release URL: https://github.com/solana-labs/solana/releases/download/v0.23.1/solana-release-x86_64-unknown-linux-gnu.tar.bz2 +* Release version: 1.0.0 +* Release URL: https://github.com/solana-labs/solana/releases/download/v1.0.0/solana-release-x86_64-unknown-linux-gnu.tar.bz2 Update successful ```