diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b7644dcf..c605956a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,19 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## 🛠 Maintenance ## 📚 Documentation --> +# [0.0.9] - 2021-04-13 + +> This release is a small release to fix the automated release process, and should be considered an extension of the previous (v0.0.8) release + +## 🛠 Maintenance + +- ** Fix boolean logic in release action - [EverlastingBugstopper], [pull/442]** + + 0.0.8 was released to npm as a beta by accident because of an environment variable being treated as a boolean when it's a string. This just fixes that for a new release. + + [EverlastingBugstopper]: https://github.com/EverlastingBugstopper + [pull/442]: https://github.com/apollographql/rover/pull/442 + # [0.0.8] - 2021-04-13 ## 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index 564cab33c..b3accfa1b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1741,7 +1741,7 @@ dependencies = [ [[package]] name = "rover" -version = "0.0.8" +version = "0.0.9" dependencies = [ "ansi_term 0.12.1", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index cf95e5456..bd58eeb12 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.8" +version = "0.0.9" [[bin]] name = "rover" diff --git a/README.md b/README.md index fe41b55ec..f601bb4f4 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,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.0.8 | sh +curl -sSL https://rover.apollo.dev/nix/v0.0.9 | sh ``` #### Windows PowerShell installer @@ -131,7 +131,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.0.8' | iex +iwr 'https://rover.apollo.dev/win/v0.0.9' | iex ``` #### npm installer diff --git a/docs/source/ci-cd.md b/docs/source/ci-cd.md index c7c0c56e8..e24ff327e 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://rover.apollo.dev/nix/v0.0.8 | sh + curl -sSL https://rover.apollo.dev/nix/v0.0.9 | 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://rover.apollo.dev/nix/v0.0.8 | sh + curl -sSL https://rover.apollo.dev/nix/v0.0.9 | 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 ee067705e..ad1992233 100644 --- a/docs/source/getting-started.md +++ b/docs/source/getting-started.md @@ -20,7 +20,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.0.8 | sh +curl -sSL https://rover.apollo.dev/nix/v0.0.9 | sh ``` #### Windows PowerShell installer @@ -34,7 +34,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.0.8' | iex +iwr 'https://rover.apollo.dev/win/v0.0.9' | iex ``` #### npm installer diff --git a/installers/binstall/scripts/nix/install.sh b/installers/binstall/scripts/nix/install.sh index e1cc1d64c..d7bac19e5 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.8" +PACKAGE_VERSION="v0.0.9" download_binary_and_run_installer() { downloader --check diff --git a/installers/binstall/scripts/windows/install.ps1 b/installers/binstall/scripts/windows/install.ps1 index 8a8b923a5..23ebb76ba 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.8' +$package_version = 'v0.0.9' function Install-Binary() { $old_erroractionpreference = $ErrorActionPreference diff --git a/installers/npm/package-lock.json b/installers/npm/package-lock.json index cd4ec05b8..d9c284437 100644 --- a/installers/npm/package-lock.json +++ b/installers/npm/package-lock.json @@ -1,12 +1,12 @@ { "name": "@apollo/rover", - "version": "0.0.8", + "version": "0.0.9", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@apollo/rover", - "version": "0.0.8", + "version": "0.0.9", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/installers/npm/package.json b/installers/npm/package.json index 9152727a3..ae299ce11 100644 --- a/installers/npm/package.json +++ b/installers/npm/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/rover", - "version": "0.0.8", + "version": "0.0.9", "description": "The new Apollo CLI", "main": "index.js", "bin": {