From fa6372da4fafa89fdc1052d966742a070a716725 Mon Sep 17 00:00:00 2001 From: wata_mac Date: Sun, 14 Aug 2022 15:28:27 +0900 Subject: [PATCH] Bump up version to v0.16.0 --- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- integration/cty-based-eval/result.json | 2 +- integration/map-attribute/result.json | 2 +- integration/rule-config/result.json | 2 +- project/main.go | 2 +- 6 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 557c4d43..248bd8e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.16.0 (2022-08-14) + +### Enhancements + +- [#358](https://github.com/terraform-linters/tflint-ruleset-aws/pull/358): autogenerated maintenance + - Removed `aws_cloudwatch_metric_alarm_invalid_extended_statistic` rule +- [#362](https://github.com/terraform-linters/tflint-ruleset-aws/pull/362): Lambda runtime deprecation updates ([@PatMyron](https://github.com/PatMyron)) + +### Chores + +- [#359](https://github.com/terraform-linters/tflint-ruleset-aws/pull/359): go 1.19 ([@PatMyron](https://github.com/PatMyron)) + ## 0.15.0 (2022-07-15) ### Enhancements diff --git a/README.md b/README.md index 041ad62d..98095869 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.15.0" + version = "0.16.0" source = "github.com/terraform-linters/tflint-ruleset-aws" } ``` diff --git a/integration/cty-based-eval/result.json b/integration/cty-based-eval/result.json index b8e13b2d..c1348d08 100644 --- a/integration/cty-based-eval/result.json +++ b/integration/cty-based-eval/result.json @@ -4,7 +4,7 @@ "rule": { "name": "aws_resource_missing_tags", "severity": "info", - "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.15.0/docs/rules/aws_resource_missing_tags.md" + "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.16.0/docs/rules/aws_resource_missing_tags.md" }, "message": "The resource is missing the following tags: \"Environment\", \"Name\", \"Type\".", "range": { diff --git a/integration/map-attribute/result.json b/integration/map-attribute/result.json index f3c803ad..9270b9c4 100644 --- a/integration/map-attribute/result.json +++ b/integration/map-attribute/result.json @@ -4,7 +4,7 @@ "rule": { "name": "aws_resource_missing_tags", "severity": "info", - "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.15.0/docs/rules/aws_resource_missing_tags.md" + "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.16.0/docs/rules/aws_resource_missing_tags.md" }, "message": "The resource is missing the following tags: \"Environment\", \"Name\", \"Type\".", "range": { diff --git a/integration/rule-config/result.json b/integration/rule-config/result.json index 0c17cb6e..6d7c5116 100644 --- a/integration/rule-config/result.json +++ b/integration/rule-config/result.json @@ -4,7 +4,7 @@ "rule": { "name": "aws_s3_bucket_name", "severity": "warning", - "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.15.0/docs/rules/aws_s3_bucket_name.md" + "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.16.0/docs/rules/aws_s3_bucket_name.md" }, "message": "Bucket name \"foo_bar\" does not match regex \"^[a-z\\-]+$\"", "range": { diff --git a/project/main.go b/project/main.go index 05494af5..56dbd846 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.15.0" +const Version string = "0.16.0" // ReferenceLink returns the rule reference link func ReferenceLink(name string) string {