Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs for installing older versions #325

Merged
merged 4 commits into from
Mar 16, 2021
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
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,25 @@ This repo is organized as a [`cargo` workspace], containing several related proj
curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.3/installers/binstall/scripts/nix/install.sh | sh
```

**To download older versions of Rover**, use the `VERSION` env variable when executing the installer (note: the `v` in the version number):

```bash
curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.3/installers/binstall/scripts/nix/install.sh | VERSION=v0.0.1 sh
```

#### Windows PowerShell installer

```bash
iwr 'https://raw.githubusercontent.com/apollographql/rover/v0.0.3/installers/binstall/scripts/windows/install.ps1' | iex
```

**To download older versions of Rover**, use the `VERSION` env variable when executing the installer (note: the `v` in the version number):

```bash
$Env:VERSION='v0.0.1'; iwr 'https://raw.githubusercontent.com/apollographql/rover/v0.0.3/installers/binstall/scripts/windows/install.ps1' | iex
```


#### npm installer

Rover is distributed on npm for easy integration with your JavaScript projects.
Expand Down
11 changes: 11 additions & 0 deletions docs/source/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,23 @@ The Rover CLI is available for Linux, Mac, and Windows.
curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.3/installers/binstall/scripts/nix/install.sh | sh
```

**To download older versions of Rover**, use the `VERSION` env variable when executing the installer (note: the `v` in the version number):

```bash
curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.3/installers/binstall/scripts/nix/install.sh | VERSION=v0.0.1 sh
```
#### Windows PowerShell installer

```bash
iwr 'https://raw.githubusercontent.com/apollographql/rover/v0.0.3/installers/binstall/scripts/windows/install.ps1' | iex
```

**To download older versions of Rover**, use the `VERSION` env variable when executing the installer (note: the `v` in the version number):

```bash
$Env:VERSION='v0.0.1'; iwr 'https://raw.githubusercontent.com/apollographql/rover/v0.0.3/installers/binstall/scripts/windows/install.ps1' | iex
```

#### npm installer

Rover is distributed on npm for easy integration with your JavaScript projects.
Expand Down