Skip to content

Commit

Permalink
release: v0.12.1 (#1520)
Browse files Browse the repository at this point in the history
# [0.12.1] - 2023-02-17

## 🐛 Fixes

- **Updates the output of a skipped operation check to match regular
checks - @EverlastingBugstopper, #1519**
  • Loading branch information
EverlastingBugstopper authored Feb 17, 2023
1 parent e647bb1 commit 85c63f8
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 22 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## 📚 Documentation -->

# [0.12.1] - 2023-02-17

## 🐛 Fixes

- **Updates the output of a skipped operation check to match regular checks - @EverlastingBugstopper, #1519**

A bit of polish to the output of the feature just released in 0.12.0.

# [0.12.0] - 2023-02-17

## 🚀 Features
Expand Down
6 changes: 3 additions & 3 deletions 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
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license-file = "./LICENSE"
name = "rover"
readme = "README.md"
repository = "https://github.com/apollographql/rover/"
version = "0.12.0"
version = "0.12.1"
default-run = "rover"

publish = false
Expand Down
2 changes: 1 addition & 1 deletion crates/rover-client/.schema/last_run.uuid

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

12 changes: 6 additions & 6 deletions crates/rover-client/package-lock.json

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

8 changes: 4 additions & 4 deletions docs/source/ci-cd.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
name: Install
command: |
# download and install Rover
curl -sSL https://rover.apollo.dev/nix/v0.12.0 | sh
curl -sSL https://rover.apollo.dev/nix/v0.12.1 | sh
# This allows the PATH changes to persist to the next `run` step
echo 'export PATH=$HOME/.rover/bin:$PATH' >> $BASH_ENV
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
- name: Install Rover
run: |
curl -sSL https://rover.apollo.dev/nix/v0.12.0 | sh
curl -sSL https://rover.apollo.dev/nix/v0.12.1 | sh
# Add Rover to the $GITHUB_PATH so it can be used in another step
# https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#adding-a-system-path
Expand Down Expand Up @@ -207,10 +207,10 @@ Normally when installing, Rover adds the path of its executable to your `$PATH`.

To avoid this issue, do one of the following:
- Use the script, but reference `rover` by its full path (`$HOME/.rover/bin/rover`)
- Download the latest release via cURL and extract the binary like so (this downloads Rover `0.12.0` for Linux x86 architectures):
- Download the latest release via cURL and extract the binary like so (this downloads Rover `0.12.1` for Linux x86 architectures):

```
curl -L https://github.com/apollographql/rover/releases/download/v0.12.0/rover-v0.12.0-x86_64-unknown-linux-gnu.tar.gz | tar --strip-components=1 -zxv
curl -L https://github.com/apollographql/rover/releases/download/v0.12.1/rover-v0.12.1-x86_64-unknown-linux-gnu.tar.gz | tar --strip-components=1 -zxv
```

#### Permission issues
Expand Down
4 changes: 2 additions & 2 deletions docs/source/getting-started.md
Original file line number Diff line number Diff line change
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.12.0 | sh
curl -sSL https://rover.apollo.dev/nix/v0.12.1 | 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.12.0' | iex
iwr 'https://rover.apollo.dev/win/v0.12.1' | iex
```

### `npm` installer
Expand Down
2 changes: 1 addition & 1 deletion installers/binstall/scripts/nix/install.sh
Original file line number Diff line number Diff line change
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.12.0"
PACKAGE_VERSION="v0.12.1"

download_binary_and_run_installer() {
downloader --check
Expand Down
2 changes: 1 addition & 1 deletion installers/binstall/scripts/windows/install.ps1
Original file line number Diff line number Diff line change
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.12.0'
$package_version = 'v0.12.1'

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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apollo/rover",
"version": "0.12.0",
"version": "0.12.1",
"description": "The new Apollo CLI",
"main": "index.js",
"bin": {
Expand Down

0 comments on commit 85c63f8

Please sign in to comment.