diff --git a/CHANGELOG.md b/CHANGELOG.md index c41f7580..a55cb6a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,13 @@ -## 0.99.2 (Unreleased) +## 0.99.2 (August 25th, 2020) + +ENHANCEMENTS: + +* [190](https://github.com/perfectsense/gyro-google-provider/issues/190): Allow GCP storage to work with remote state backends. + +MISC: + +* [193](https://github.com/perfectsense/gyro-google-provider/issues/193): Fix remote file backend to only delete a file if it exists. +* [195](https://github.com/perfectsense/gyro-google-provider/issues/195): Add `exists(String file)` and `copy(String source, String dest)` methods to FileBackend. ## 0.99.1 (June 10th, 2020) diff --git a/README.md b/README.md index 97e2be88..3c4fa339 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Load the Google provider in your project by consuming it as a `plugin` directive ```shell @repository: 'https://artifactory.psdops.com/gyro-releases' -@plugin: 'gyro:gyro-google-provider:0.99.1' +@plugin: 'gyro:gyro-google-provider:0.99.2' ``` #### Authentication #### diff --git a/build.gradle b/build.gradle index a5fae36e..ef0225d5 100644 --- a/build.gradle +++ b/build.gradle @@ -51,6 +51,10 @@ repositories { maven { url 'https://artifactory.psdops.com/gyro-snapshots' } + + maven { + url 'https://artifactory.psdops.com/gyro-releases' + } } configurations { diff --git a/src/main/java/gyro/google/package-info.java b/src/main/java/gyro/google/package-info.java index 49defcd6..5b66e20c 100644 --- a/src/main/java/gyro/google/package-info.java +++ b/src/main/java/gyro/google/package-info.java @@ -28,7 +28,7 @@ * .. code:: shell * * {@literal @}repository: 'https://artifactory.psdops.com/gyro-releases' - * {@literal @}plugin: 'gyro:gyro-google-provider:0.99.1' + * {@literal @}plugin: 'gyro:gyro-google-provider:0.99.2' * * This lets Gyro load the Google provider plugin and lets you start managing Google Cloud Platform resources using Gyro. *