Skip to content

Commit

Permalink
Bump up version to v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Apr 9, 2023
1 parent 9ae0029 commit 1fdd864
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ checksum:
name_template: 'checksums.txt'
signs:
- cmd: cosign
env:
- COSIGN_EXPERIMENTAL=1
signature: '${artifact}.keyless.sig'
certificate: '${artifact}.pem'
output: true
Expand All @@ -33,6 +31,7 @@ signs:
- '--output-certificate=${certificate}'
- '--output-signature=${signature}'
- '${artifact}'
- --yes
release:
github:
owner: terraform-linters
Expand Down
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 0.2.0 (2023-04-10)

### Enhancements

- [#26](https://github.com/terraform-linters/tflint-ruleset-opa/pull/26) [#29](https://github.com/terraform-linters/tflint-ruleset-opa/pull/29) [#32](https://github.com/terraform-linters/tflint-ruleset-opa/pull/32) [#33](https://github.com/terraform-linters/tflint-ruleset-opa/pull/33) [#37](https://github.com/terraform-linters/tflint-ruleset-opa/pull/37) [#39](https://github.com/terraform-linters/tflint-ruleset-opa/pull/39): Bump github.com/open-policy-agent/opa from 0.48.0 to 0.51.0

### BugFixes

- [#40](https://github.com/terraform-linters/tflint-ruleset-opa/pull/40): Fix internal marshal error of sensitive value

### Chores

- [#24](https://github.com/terraform-linters/tflint-ruleset-opa/pull/24) [#25](https://github.com/terraform-linters/tflint-ruleset-opa/pull/25) [#31](https://github.com/terraform-linters/tflint-ruleset-opa/pull/31): Bump github.com/hashicorp/hcl/v2 from 2.15.0 to 2.16.2
- [#27](https://github.com/terraform-linters/tflint-ruleset-opa/pull/27): Bump golang.org/x/net from 0.5.0 to 0.7.0
- [#28](https://github.com/terraform-linters/tflint-ruleset-opa/pull/28) [#35](https://github.com/terraform-linters/tflint-ruleset-opa/pull/35): Bump github.com/zclconf/go-cty from 1.12.1 to 1.13.1
- [#30](https://github.com/terraform-linters/tflint-ruleset-opa/pull/30): Bump sigstore/cosign-installer from 2 to 3
- [#34](https://github.com/terraform-linters/tflint-ruleset-opa/pull/34): Bump actions/setup-go from 3 to 4
- [#36](https://github.com/terraform-linters/tflint-ruleset-opa/pull/36): Bump github.com/hashicorp/go-hclog from 1.4.0 to 1.5.0
- [#38](https://github.com/terraform-linters/tflint-ruleset-opa/pull/38): Bump github.com/terraform-linters/tflint-plugin-sdk from 0.15.0 to 0.16.0
- [#41](https://github.com/terraform-linters/tflint-ruleset-opa/pull/41): deps: Go 1.20

## 0.1.0 (2023-02-02)

Initial release 🎉
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.0"
version = "0.2.0"
source = "github.com/terraform-linters/tflint-ruleset-opa"
}
```
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ func main() {
RuleSet: &opa.RuleSet{
BuiltinRuleSet: tflint.BuiltinRuleSet{
Name: "opa",
Version: "0.1.0",
Version: "0.2.0",
Constraint: ">= 0.43.0",
},
},
Expand Down

0 comments on commit 1fdd864

Please sign in to comment.