Skip to content

Commit 82b43bb

Browse files
release: v0.5.4
1 parent b5509b1 commit 82b43bb

File tree

9 files changed

+20
-12
lines changed

9 files changed

+20
-12
lines changed

CHANGELOG.md

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

21+
# [0.5.4] - 2022-04-26
22+
23+
## 🐛 Fixes
24+
25+
- **_Really_ fixes v0.5.2/v0.5.3 broken npm installs - @EverlastingBugstopper**
26+
27+
It turns out that it's hard to test changes to npm installers without actually publishing to npm. In order to save burning another patch version I release v0.5.4-rc.0 to ensure that my changes would actually fix things.
28+
2129
# [0.5.3] - 2022-04-26
2230

2331
## 🐛 Fixes

Cargo.lock

+1-1
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.4-rc.0"
14+
version = "0.5.4"
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.3
40+
Rover 0.5.4
4141

4242
Rover - Your Graph Companion
4343
Read the getting started guide by running:
@@ -141,7 +141,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
141141
> 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.
142142
143143
```bash
144-
curl -sSL https://rover.apollo.dev/nix/v0.5.3 | sh
144+
curl -sSL https://rover.apollo.dev/nix/v0.5.4 | sh
145145
```
146146

147147
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).
@@ -159,7 +159,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
159159
> 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.
160160
161161
```bash
162-
iwr 'https://rover.apollo.dev/win/v0.5.3' | iex
162+
iwr 'https://rover.apollo.dev/win/v0.5.4' | iex
163163
```
164164

165165
#### 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.3 | sh
21+
curl -sSL https://rover.apollo.dev/nix/v0.5.4 | 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.3' | iex
40+
iwr 'https://rover.apollo.dev/win/v0.5.4' | 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.4-rc.0"
23+
PACKAGE_VERSION="v0.5.4"
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.4-rc.0'
17+
$package_version = 'v0.5.4'
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.4-rc.0",
3+
"version": "0.5.4",
44
"description": "The new Apollo CLI",
55
"main": "index.js",
66
"bin": {

0 commit comments

Comments
 (0)