From a6abef2ce2bf332e912313d8ff46659bbf2a930e Mon Sep 17 00:00:00 2001 From: Kazuma Watanabe Date: Mon, 9 Oct 2023 09:06:41 +0000 Subject: [PATCH] Bump up version to v0.4.0 --- CHANGELOG.md | 16 ++++++++++++++++ README.md | 2 +- main.go | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad500c7..f93e438 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## 0.4.0 (2023-10-09) + +### Enhancements + +- [#53](https://github.com/terraform-linters/tflint-ruleset-opa/pull/53) [#59](https://github.com/terraform-linters/tflint-ruleset-opa/pull/59) [#63](https://github.com/terraform-linters/tflint-ruleset-opa/pull/63): Bump github.com/open-policy-agent/opa from 0.54.0 to 0.57.0 + +### Chores + +- [#54](https://github.com/terraform-linters/tflint-ruleset-opa/pull/54): Bump github.com/terraform-linters/tflint-plugin-sdk from 0.17.0 to 0.18.0 +- [#55](https://github.com/terraform-linters/tflint-ruleset-opa/pull/55): Add raw binary entries to checksums.txt +- [#56](https://github.com/terraform-linters/tflint-ruleset-opa/pull/56) [#58](https://github.com/terraform-linters/tflint-ruleset-opa/pull/58): Bump github.com/zclconf/go-cty from 1.13.2 to 1.14.0 +- [#57](https://github.com/terraform-linters/tflint-ruleset-opa/pull/57): Bump actions/checkout from 3 to 4 +- [#60](https://github.com/terraform-linters/tflint-ruleset-opa/pull/60): Bump github.com/hashicorp/hcl/v2 from 2.17.0 to 2.18.0 +- [#61](https://github.com/terraform-linters/tflint-ruleset-opa/pull/61): deps: Go 1.21 +- [#62](https://github.com/terraform-linters/tflint-ruleset-opa/pull/62): Bump goreleaser/goreleaser-action from 4 to 5 + ## 0.3.0 (2023-07-19) ### Enhancements diff --git a/README.md b/README.md index 58706cc..7f2643f 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 "opa" { enabled = true - version = "0.3.0" + version = "0.4.0" source = "github.com/terraform-linters/tflint-ruleset-opa" } ``` diff --git a/main.go b/main.go index bc4de57..ec70628 100644 --- a/main.go +++ b/main.go @@ -11,7 +11,7 @@ func main() { RuleSet: &opa.RuleSet{ BuiltinRuleSet: tflint.BuiltinRuleSet{ Name: "opa", - Version: "0.3.0", + Version: "0.4.0", Constraint: ">= 0.43.0", }, },