Skip to content

Commit 7f48fde

Browse files
release: v0.1.3 (#572)
1 parent 61d86ef commit 7f48fde

File tree

9 files changed

+33
-20
lines changed

9 files changed

+33
-20
lines changed

CHANGELOG.md

+19-6
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,26 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1212
## 🛠 Maintenance
1313
## 📚 Documentation -->
1414

15-
# [0.2.0] (unreleased) - 2021-05-25
16-
<!-- > Important: X breaking changes below, indicated by **❗ BREAKING ❗**
17-
## ❗ BREAKING ❗
18-
## 🚀 Features
15+
# [0.1.3] - 2021-05-25
16+
1917
## 🐛 Fixes
20-
## 🛠 Maintenance
21-
## 📚 Documentation -->
18+
19+
- **Remove OpenSSL runtime dependency - [EverlastingBugstopper], [issue/554] & [issue/563], [pull/558]**
20+
21+
Attempts to install Rover on M1 Macs were failing due to issues with OpenSSL. Issues with OpenSSL are incredibly common when writing and distributing cross-platform software, so we've attempted to remedy this issue by embedding (or vendoring) the necessary OpenSSL code directly into Rover's binaries.
22+
23+
[EverlastingBugstopper]: https://github.com/EverlastingBugstopper
24+
[pull/558]: https://github.com/apollographql/rover/pull/558
25+
[issue/554]: https://github.com/apollographql/rover/issues/554
26+
[issue/563]: https://github.com/apollographql/rover/issues/563
27+
28+
- **Remove misfired E005 error - [EverlastingBugstopper], [issue/570] [pull/571]**
29+
30+
Detailed description
31+
32+
[EverlastingBugstopper]: https://github.com/EverlastingBugstopper
33+
[pull/571]: https://github.com/apollographql/rover/pull/571
34+
[issue/570]: https://github.com/apollographql/rover/issues/570
2235

2336
# [0.1.2] - 2021-05-20
2437

Cargo.lock

+5-5
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
@@ -12,7 +12,7 @@ license = "MIT"
1212
name = "rover"
1313
readme = "README.md"
1414
repository = "https://github.com/apollographql/rover/"
15-
version = "0.1.2"
15+
version = "0.1.3"
1616
resolver = "2"
1717

1818
[[bin]]

README.md

+1-1
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.1.2
40+
Rover 0.1.3
4141

4242
Rover - Your Graph Companion
4343
Read the getting started guide by running:

docs/source/getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
2020
> 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.
2121
2222
```bash
23-
curl -sSL https://rover.apollo.dev/nix/v0.1.2 | sh
23+
curl -sSL https://rover.apollo.dev/nix/v0.1.3 | sh
2424
```
2525

2626
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).
@@ -38,7 +38,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
3838
> 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.
3939
4040
```bash
41-
iwr 'https://rover.apollo.dev/win/v0.1.2' | iex
41+
iwr 'https://rover.apollo.dev/win/v0.1.3' | iex
4242
```
4343

4444
### `npm` installer

installers/binstall/scripts/nix/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ BINARY_DOWNLOAD_PREFIX="https://github.com/apollographql/rover/releases/download
1616
# Rover version defined in root cargo.toml
1717
# Note: this line is built automatically
1818
# in build.rs. Don't touch it!
19-
PACKAGE_VERSION="v0.1.2"
19+
PACKAGE_VERSION="v0.1.3"
2020

2121
download_binary_and_run_installer() {
2222
downloader --check

installers/binstall/scripts/windows/install.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# version found in Rover's Cargo.toml
1010
# Note: this line is built automatically
1111
# in build.rs. Don't touch it!
12-
$package_version = 'v0.1.2'
12+
$package_version = 'v0.1.3'
1313

1414
function Install-Binary() {
1515
$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.1.2",
3+
"version": "0.1.3",
44
"description": "The new Apollo CLI",
55
"main": "index.js",
66
"bin": {

0 commit comments

Comments
 (0)