Skip to content

Commit

Permalink
release: v0.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
EverlastingBugstopper committed Apr 26, 2022
1 parent b5509b1 commit 82b43bb
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 12 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Expand Up @@ -18,6 +18,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## 📚 Documentation -->

# [0.5.4] - 2022-04-26

## 🐛 Fixes

- **_Really_ fixes v0.5.2/v0.5.3 broken npm installs - @EverlastingBugstopper**

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.

# [0.5.3] - 2022-04-26

## 🐛 Fixes
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -11,7 +11,7 @@ license-file = "./LICENSE"
name = "rover"
readme = "README.md"
repository = "https://github.com/apollographql/rover/"
version = "0.5.4-rc.0"
version = "0.5.4"
default-run = "rover"

publish = false
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -37,7 +37,7 @@ rover graph publish --schema ./path-to-valid-schema test@cats
## Command-line options

```console
Rover 0.5.3
Rover 0.5.4

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

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

#### npm installer
Expand Down
4 changes: 2 additions & 2 deletions docs/source/getting-started.md
Expand Up @@ -18,7 +18,7 @@ To install a **specific version** of Rover (recommended for CI environments to e

```bash
# Note the `v` prefixing the version number
curl -sSL https://rover.apollo.dev/nix/v0.5.3 | sh
curl -sSL https://rover.apollo.dev/nix/v0.5.4 | sh
```

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).
Expand All @@ -37,7 +37,7 @@ To install a **specific version** of Rover (recommended for CI environments to e

```bash
# Note the `v` prefixing the version number
iwr 'https://rover.apollo.dev/win/v0.5.3' | iex
iwr 'https://rover.apollo.dev/win/v0.5.4' | iex
```

### `npm` installer
Expand Down
2 changes: 1 addition & 1 deletion installers/binstall/scripts/nix/install.sh
Expand Up @@ -20,7 +20,7 @@ BINARY_DOWNLOAD_PREFIX="https://github.com/apollographql/rover/releases/download
# Rover version defined in root cargo.toml
# Note: this line is built automatically
# in build.rs. Don't touch it!
PACKAGE_VERSION="v0.5.4-rc.0"
PACKAGE_VERSION="v0.5.4"

download_binary_and_run_installer() {
downloader --check
Expand Down
2 changes: 1 addition & 1 deletion installers/binstall/scripts/windows/install.ps1
Expand Up @@ -14,7 +14,7 @@
# version found in Rover's Cargo.toml
# Note: this line is built automatically
# in build.rs. Don't touch it!
$package_version = 'v0.5.4-rc.0'
$package_version = 'v0.5.4'

function Install-Binary($rover_install_args) {
$old_erroractionpreference = $ErrorActionPreference
Expand Down
4 changes: 2 additions & 2 deletions installers/npm/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion installers/npm/package.json
@@ -1,6 +1,6 @@
{
"name": "@apollo/rover",
"version": "0.5.4-rc.0",
"version": "0.5.4",
"description": "The new Apollo CLI",
"main": "index.js",
"bin": {
Expand Down

0 comments on commit 82b43bb

Please sign in to comment.