From 15c1cb9af236d126923bb37a73943e9c05face4f Mon Sep 17 00:00:00 2001 From: wata_mac Date: Sun, 8 Aug 2021 21:21:50 +0900 Subject: [PATCH] Bump up version to v0.11.0 --- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- project/main.go | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39e159c..79f7020 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 0.11.0 (2021-08-08) + +### Breaking Changes + +- [#111](https://github.com/terraform-linters/tflint-ruleset-google/pull/111): Update Magic Modules + - Remove `google_privateca_certificate_authority_invalid_tier` rule + +### Chores + +- [#107](https://github.com/terraform-linters/tflint-ruleset-google/pull/107): Bump github.com/terraform-linters/tflint-plugin-sdk from 0.9.0 to 0.9.1 +- [#108](https://github.com/terraform-linters/tflint-ruleset-google/pull/108): Bump github.com/hashicorp/hcl/v2 from 2.10.0 to 2.10.1 +- [#110](https://github.com/terraform-linters/tflint-ruleset-google/pull/110): Bump google.golang.org/api from 0.49.0 to 0.52.0 + ## 0.10.0 (2021-07-05) The minimum supported version of TFLint has changed in this version. TFLint v0.30.0+ is required for this plugin to work. diff --git a/README.md b/README.md index 7fb8920..1fabd75 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ You can install the plugin by adding a config to `.tflint.hcl` and running `tfli ```hcl plugin "google" { enabled = true - version = "0.10.0" + version = "0.11.0" source = "github.com/terraform-linters/tflint-ruleset-google" } ``` diff --git a/project/main.go b/project/main.go index 697be3a..636472e 100644 --- a/project/main.go +++ b/project/main.go @@ -3,7 +3,7 @@ package project import "fmt" // Version is ruleset version -const Version string = "0.10.0" +const Version string = "0.11.0" // ReferenceLink returns the rule reference link func ReferenceLink(name string) string {