Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for release 1.3.0 #277

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
## 1.2.0 (October 30th, 2024)

ENHANCEMENTS:

* [274](https://github.com/perfectsense/gyro-google-provider/pull/274) Implement support for CloudSql.

## 1.1.8 (October 7th, 2024)

ISSUES FIXED:

[267](https://github.com/perfectsense/gyro-google-provider/issues/267): Fixes updating GKE node taints
* [267](https://github.com/perfectsense/gyro-google-provider/issues/267): Fixes updating GKE node taints

## 1.1.7 (September 12th, 2024)

ISSUES FIXED:

[271](https://github.com/perfectsense/gyro-google-provider/issues/271): Fix update GKE node labels.
* [271](https://github.com/perfectsense/gyro-google-provider/issues/271): Fix update GKE node labels.

## 1.1.6 (August 20th, 2024)

ISSUES FIXED:

[268](https://github.com/perfectsense/gyro-google-provider/pull/268): Allow disk names to be autogenerated from instance templates
* [268](https://github.com/perfectsense/gyro-google-provider/pull/268): Allow disk names to be autogenerated from instance templates

## 1.1.5 (May 29th, 2024)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:1.1.0'
@plugin: 'gyro:gyro-google-provider:1.2.0'
```

#### Authentication ####
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ plugins {
id 'maven-publish'
}

def releaseVersion = '1.2.0'
def releaseVersion = '1.3.0'
def releaseBuild = false;

if (System.getenv('CI')) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gyro/google/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* .. code:: shell
*
* {@literal @}repository: 'https://artifactory.psdops.com/gyro-releases'
* {@literal @}plugin: 'gyro:gyro-google-provider:1.1.0'
* {@literal @}plugin: 'gyro:gyro-google-provider:1.2.0'
*
* This lets Gyro load the Google provider plugin and lets you start managing Google Cloud Platform resources using Gyro.
*
Expand Down
Loading