diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ca9f1ca..357965a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## 0.9.0 (2021-11-06) + +### Breaking Changes + +- [#198](https://github.com/terraform-linters/tflint-ruleset-aws/pull/198): build: Remove unsupported build targets ([@wata727](https://github.com/wata727)) + +### Enhancements + +- [#197](https://github.com/terraform-linters/tflint-ruleset-aws/pull/197): Bump aws-sdk-go submodule and Terraform provider schema ([@wata727](https://github.com/wata727)) + +### BugFixes + +- [#195](https://github.com/terraform-linters/tflint-ruleset-aws/pull/195): rules: Use EmitIssueOnExpr when emitting an issue for an expression ([@wata727](https://github.com/wata727)) + +### Chores + +- [#196](https://github.com/terraform-linters/tflint-ruleset-aws/pull/196): Bump github.com/aws/aws-sdk-go from 1.40.54 to 1.41.19 + ## 0.8.0 (2021-10-11) ### Enhancements diff --git a/README.md b/README.md index dada0a39..556b4ec5 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can install the plugin by adding a config to `.tflint.hcl` and running `tfli ```hcl plugin "aws" { enabled = true - version = "0.8.0" + version = "0.9.0" source = "github.com/terraform-linters/tflint-ruleset-aws" } ``` diff --git a/project/main.go b/project/main.go index 3335c7a6..d48818b7 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.8.0" +const Version string = "0.9.0" // ReferenceLink returns the rule reference link func ReferenceLink(name string) string {