From ba1a629d22b6431a7d28fba4c25fc348e497ffe6 Mon Sep 17 00:00:00 2001 From: Kazuma Watanabe Date: Sat, 24 Feb 2024 07:32:49 +0000 Subject: [PATCH] Bump up version to v0.6.0 --- CHANGELOG.md | 19 +++++++++++++++++++ README.md | 6 +++--- project/main.go | 2 +- 3 files changed, 23 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af3cc22..1681e07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +## 0.6.0 (2024-02-24) + +### Enhancements + +- [#156](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/156): workspace_remote: Suppress issues in Terraform v1.1+ + +### Chores + +- [#140](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/140): Bump golang.org/x/net from 0.13.0 to 0.17.0 +- [#141](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/141): Bump github.com/hashicorp/go-getter from 1.7.2 to 1.7.3 +- [#142](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/142): Bump github.com/google/go-cmp from 0.5.9 to 0.6.0 +- [#143](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/143): Bump github.com/hashicorp/hcl/v2 from 2.18.1 to 2.19.1 +- [#144](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/144): Bump google.golang.org/grpc from 1.57.0 to 1.57.1 +- [#147](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/147): Bump github.com/hashicorp/terraform-registry-address from 0.2.2 to 0.2.3 +- [#152](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/152): Bump actions/setup-go from 4 to 5 +- [#153](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/153): Bump github.com/zclconf/go-cty from 1.14.1 to 1.14.2 +- [#155](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/155): deps: Go 1.22 +- [#158](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/158): Revise rules documentation + ## 0.5.0 (2023-10-09) ### Enhancements diff --git a/README.md b/README.md index 9560bbc..f348f50 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ This ruleset is built into TFLint, so you usually don't need to worry about how ``` $ tflint -v -TFLint version 0.48.0 -+ ruleset.terraform (0.4.0-bundled) +TFLint version 0.50.3 ++ ruleset.terraform (0.5.0-bundled) ``` If you want to use a version different from the built-in version, you can declare `plugin` in `.tflint.hcl` as follows and install it with `tflint --init`: @@ -27,7 +27,7 @@ If you want to use a version different from the built-in version, you can declar ```hcl plugin "terraform" { enabled = true - version = "0.5.0" + version = "0.6.0" source = "github.com/terraform-linters/tflint-ruleset-terraform" } ``` diff --git a/project/main.go b/project/main.go index 9f40c69..aa27119 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.5.0" +const Version string = "0.6.0" // ReferenceLink returns the rule reference link func ReferenceLink(name string) string {