diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fd208d27..6444c6a39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,25 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## ❗ BREAKING ❗ ## 🐛 Fixes ## 🛠 Maintenance -## 📚 Documentation --> +## 📚 Documentation --> + +# [0.0.7] - 2021-04-01 +## 🐛 Fixes +- **Updates URL base in Core Schema output to specs.apollo.dev - [abernix], [pull/418]** + + [abernix]: https://github.com/abernix + [pull/418]: https://github.com/apollographql/rover/pull/418 + +## 📚 Documentation +- **Added specificity to Rover's public preview period docs - [ndintenfass], [pull/415]** + + [ndintenfass]: https://github.com/ndintenfass + [pull/415]: https://github.com/apollographql/rover/pull/415 + +- **Small categorization update - [StephenBarlow], [pull/414]** + + [StephenBarlow]: https://github.com/StephenBarlow + [pull/414]: https://github.com/apollographql/rover/pull/414 # [0.0.6] - 2021-03-31 ## 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index e769c7ef1..0a21a7a8a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1562,9 +1562,9 @@ checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086" [[package]] name = "proc-macro2" -version = "1.0.24" +version = "1.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71" +checksum = "a152013215dca273577e18d2bf00fa862b89b24169fb78c4c95aeb07992c9cec" dependencies = [ "unicode-xid", ] @@ -1741,7 +1741,7 @@ dependencies = [ [[package]] name = "rover" -version = "0.0.6" +version = "0.0.7" dependencies = [ "ansi_term 0.12.1", "anyhow", @@ -2129,9 +2129,9 @@ dependencies = [ [[package]] name = "syn" -version = "1.0.67" +version = "1.0.68" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6498a9efc342871f91cc2d0d694c674368b4ceb40f62b65a7a08c3792935e702" +checksum = "3ce15dd3ed8aa2f8eeac4716d6ef5ab58b6b9256db41d7e1a0224c2788e8fd87" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index fdeed8108..38978ab6d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT" name = "rover" readme = "README.md" repository = "https://github.com/apollographql/rover/" -version = "0.0.6" +version = "0.0.7" [[bin]] name = "rover" diff --git a/README.md b/README.md index 1b20cd72e..9c25a1492 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ rover graph publish --schema ./path-to-valid-schema test@cats ```console $ rover --help -Rover 0.0.5 +Rover 0.0.7 Rover - Your Graph Companion Read the getting started guide by running: @@ -107,25 +107,25 @@ This repo is organized as a [`cargo` workspace], containing several related proj #### Linux and MacOS `curl | sh` installer ```bash -curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.6/installers/binstall/scripts/nix/install.sh | sh +curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.7/installers/binstall/scripts/nix/install.sh | sh ``` **To download older versions of Rover**, use the `VERSION` env variable when executing the installer (note: the `v` in the version number): ```bash -curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.6/installers/binstall/scripts/nix/install.sh | VERSION=v0.0.1 sh +curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.7/installers/binstall/scripts/nix/install.sh | VERSION=v0.0.1 sh ``` #### Windows PowerShell installer ```bash -iwr 'https://raw.githubusercontent.com/apollographql/rover/v0.0.6/installers/binstall/scripts/windows/install.ps1' | iex +iwr 'https://raw.githubusercontent.com/apollographql/rover/v0.0.7/installers/binstall/scripts/windows/install.ps1' | iex ``` **To download older versions of Rover**, use the `VERSION` env variable when executing the installer (note: the `v` in the version number): ```bash -$Env:VERSION='v0.0.1'; iwr 'https://raw.githubusercontent.com/apollographql/rover/v0.0.6/installers/binstall/scripts/windows/install.ps1' | iex +$Env:VERSION='v0.0.1'; iwr 'https://raw.githubusercontent.com/apollographql/rover/v0.0.7/installers/binstall/scripts/windows/install.ps1' | iex ``` #### npm installer diff --git a/docs/source/ci-cd.md b/docs/source/ci-cd.md index ea3a2877f..e07236515 100644 --- a/docs/source/ci-cd.md +++ b/docs/source/ci-cd.md @@ -39,7 +39,7 @@ jobs: name: Install command: | # download and install Rover - curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.6/installers/binstall/scripts/nix/install.sh | sh + curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.7/installers/binstall/scripts/nix/install.sh | sh # This allows the PATH changes to persist to the next `run` step echo 'export PATH=$HOME/.rover/bin:$PATH' >> $BASH_ENV @@ -97,7 +97,7 @@ jobs: - name: Install Rover run: | - curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.6/installers/binstall/scripts/nix/install.sh | sh + curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.7/installers/binstall/scripts/nix/install.sh | 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 diff --git a/docs/source/getting-started.md b/docs/source/getting-started.md index e003e7f74..b482c00a4 100644 --- a/docs/source/getting-started.md +++ b/docs/source/getting-started.md @@ -10,24 +10,24 @@ The Rover CLI is available for Linux, Mac, and Windows. #### Linux and MacOS `curl | sh` installer ```bash -curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.6/installers/binstall/scripts/nix/install.sh | sh +curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.7/installers/binstall/scripts/nix/install.sh | sh ``` **To download older versions of Rover**, use the `VERSION` env variable when executing the installer (note: the `v` in the version number): ```bash -curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.6/installers/binstall/scripts/nix/install.sh | VERSION=v0.0.1 sh +curl -sSL https://raw.githubusercontent.com/apollographql/rover/v0.0.7/installers/binstall/scripts/nix/install.sh | VERSION=v0.0.1 sh ``` #### Windows PowerShell installer ```bash -iwr 'https://raw.githubusercontent.com/apollographql/rover/v0.0.6/installers/binstall/scripts/windows/install.ps1' | iex +iwr 'https://raw.githubusercontent.com/apollographql/rover/v0.0.7/installers/binstall/scripts/windows/install.ps1' | iex ``` **To download older versions of Rover**, use the `VERSION` env variable when executing the installer (note: the `v` in the version number): ```bash -$Env:VERSION='v0.0.1'; iwr 'https://raw.githubusercontent.com/apollographql/rover/v0.0.6/installers/binstall/scripts/windows/install.ps1' | iex +$Env:VERSION='v0.0.1'; iwr 'https://raw.githubusercontent.com/apollographql/rover/v0.0.7/installers/binstall/scripts/windows/install.ps1' | iex ``` #### npm installer diff --git a/installers/binstall/scripts/nix/install.sh b/installers/binstall/scripts/nix/install.sh index a99d92ce7..ee8d7493c 100755 --- a/installers/binstall/scripts/nix/install.sh +++ b/installers/binstall/scripts/nix/install.sh @@ -16,7 +16,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.0.6" +PACKAGE_VERSION="v0.0.7" download_binary_and_run_installer() { downloader --check diff --git a/installers/binstall/scripts/windows/install.ps1 b/installers/binstall/scripts/windows/install.ps1 index 0daaf3c95..48f010589 100644 --- a/installers/binstall/scripts/windows/install.ps1 +++ b/installers/binstall/scripts/windows/install.ps1 @@ -1,7 +1,7 @@ # version found in Rover's Cargo.toml # Note: this line is built automatically # in build.rs. Don't touch it! -$package_version = 'v0.0.6' +$package_version = 'v0.0.7' function Install-Binary() { $old_erroractionpreference = $ErrorActionPreference diff --git a/installers/npm/package-lock.json b/installers/npm/package-lock.json index c9608a185..7e13bdb97 100644 --- a/installers/npm/package-lock.json +++ b/installers/npm/package-lock.json @@ -1,12 +1,12 @@ { "name": "@apollo/rover", - "version": "0.0.6", + "version": "0.0.7", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@apollo/rover", - "version": "0.0.6", + "version": "0.0.7", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/installers/npm/package.json b/installers/npm/package.json index 434199ba4..31f78c8be 100644 --- a/installers/npm/package.json +++ b/installers/npm/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/rover", - "version": "0.0.6", + "version": "0.0.7", "description": "The new Apollo CLI", "main": "index.js", "bin": {