Skip to content

Commit 8170f75

Browse files
release: v0.5.0-rc.1
1 parent 885c95d commit 8170f75

File tree

9 files changed

+24
-18
lines changed

9 files changed

+24
-18
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1818
1919
## 📚 Documentation -->
2020

21+
# [0.5.0-rc.1] - 2022-04-05
22+
23+
## 🐛 Fixes
24+
25+
- **Fix npm installer - @EverlastingBugstopper**
26+
2127
# [0.5.0-rc.0] - 2022-04-05
2228

2329
> Important: X breaking changes below, indicated by **❗ BREAKING ❗**

Cargo.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license-file = "./LICENSE"
1111
name = "rover"
1212
readme = "README.md"
1313
repository = "https://github.com/apollographql/rover/"
14-
version = "0.5.0-rc.0"
14+
version = "0.5.0-rc.1"
1515
default-run = "rover"
1616

1717
publish = false

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ rover graph publish --schema ./path-to-valid-schema test@cats
3737
## Command-line options
3838

3939
```console
40-
Rover 0.5.0-rc.0
40+
Rover 0.5.0-rc.1
4141

4242
Rover - Your Graph Companion
4343
Read the getting started guide by running:
@@ -142,7 +142,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
142142
> Note: If you're installing Rover in a CI environment, it's best to target a specific version rather than using the latest URL, since future major breaking changes could affect CI workflows otherwise.
143143
144144
```bash
145-
curl -sSL https://rover.apollo.dev/nix/v0.5.0-rc.0 | sh
145+
curl -sSL https://rover.apollo.dev/nix/v0.5.0-rc.1 | sh
146146
```
147147

148148
You will need `curl` installed on your system to run the above installation commands. You can get the latest version from [the curl downloads page](https://curl.se/download.html).
@@ -160,7 +160,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
160160
> Note: If you're installing Rover in a CI environment, it's best to target a specific version rather than using the latest URL, since future major breaking changes could affect CI workflows otherwise.
161161
162162
```bash
163-
iwr 'https://rover.apollo.dev/win/v0.5.0-rc.0' | iex
163+
iwr 'https://rover.apollo.dev/win/v0.5.0-rc.1' | iex
164164
```
165165

166166
#### npm installer

docs/source/getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To install a **specific version** of Rover (recommended for CI environments to e
1818

1919
```bash
2020
# Note the `v` prefixing the version number
21-
curl -sSL https://rover.apollo.dev/nix/v0.5.0-rc.0 | sh
21+
curl -sSL https://rover.apollo.dev/nix/v0.5.0-rc.1 | sh
2222
```
2323

2424
If your machine doesn't have the `curl` command, you can get the latest version from the [`curl` downloads page](https://curl.se/download.html).
@@ -37,7 +37,7 @@ To install a **specific version** of Rover (recommended for CI environments to e
3737

3838
```bash
3939
# Note the `v` prefixing the version number
40-
iwr 'https://rover.apollo.dev/win/v0.5.0-rc.0' | iex
40+
iwr 'https://rover.apollo.dev/win/v0.5.0-rc.1' | iex
4141
```
4242

4343
### `npm` installer

installers/binstall/scripts/nix/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ BINARY_DOWNLOAD_PREFIX="https://github.com/apollographql/rover/releases/download
2020
# Rover version defined in root cargo.toml
2121
# Note: this line is built automatically
2222
# in build.rs. Don't touch it!
23-
PACKAGE_VERSION="v0.5.0-rc.0"
23+
PACKAGE_VERSION="v0.5.0-rc.1"
2424

2525
download_binary_and_run_installer() {
2626
downloader --check

installers/binstall/scripts/windows/install.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# version found in Rover's Cargo.toml
1515
# Note: this line is built automatically
1616
# in build.rs. Don't touch it!
17-
$package_version = 'v0.5.0-rc.0'
17+
$package_version = 'v0.5.0-rc.1'
1818

1919
function Install-Binary($rover_install_args) {
2020
$old_erroractionpreference = $ErrorActionPreference

installers/npm/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

installers/npm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apollo/rover",
3-
"version": "0.5.0-rc.0",
3+
"version": "0.5.0-rc.1",
44
"description": "The new Apollo CLI",
55
"main": "index.js",
66
"bin": {

0 commit comments

Comments
 (0)