Skip to content

Commit 1fdd864

Browse files
committed
Bump up version to v0.2.0
1 parent 9ae0029 commit 1fdd864

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

.goreleaser.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ checksum:
2222
name_template: 'checksums.txt'
2323
signs:
2424
- cmd: cosign
25-
env:
26-
- COSIGN_EXPERIMENTAL=1
2725
signature: '${artifact}.keyless.sig'
2826
certificate: '${artifact}.pem'
2927
output: true
@@ -33,6 +31,7 @@ signs:
3331
- '--output-certificate=${certificate}'
3432
- '--output-signature=${signature}'
3533
- '${artifact}'
34+
- --yes
3635
release:
3736
github:
3837
owner: terraform-linters

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## 0.2.0 (2023-04-10)
2+
3+
### Enhancements
4+
5+
- [#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
6+
7+
### BugFixes
8+
9+
- [#40](https://github.com/terraform-linters/tflint-ruleset-opa/pull/40): Fix internal marshal error of sensitive value
10+
11+
### Chores
12+
13+
- [#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
14+
- [#27](https://github.com/terraform-linters/tflint-ruleset-opa/pull/27): Bump golang.org/x/net from 0.5.0 to 0.7.0
15+
- [#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
16+
- [#30](https://github.com/terraform-linters/tflint-ruleset-opa/pull/30): Bump sigstore/cosign-installer from 2 to 3
17+
- [#34](https://github.com/terraform-linters/tflint-ruleset-opa/pull/34): Bump actions/setup-go from 3 to 4
18+
- [#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
19+
- [#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
20+
- [#41](https://github.com/terraform-linters/tflint-ruleset-opa/pull/41): deps: Go 1.20
21+
122
## 0.1.0 (2023-02-02)
223

324
Initial release 🎉

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ You can install the plugin by adding a config to `.tflint.hcl` and running `tfli
1919
```hcl
2020
plugin "opa" {
2121
enabled = true
22-
version = "0.1.0"
22+
version = "0.2.0"
2323
source = "github.com/terraform-linters/tflint-ruleset-opa"
2424
}
2525
```

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ func main() {
1111
RuleSet: &opa.RuleSet{
1212
BuiltinRuleSet: tflint.BuiltinRuleSet{
1313
Name: "opa",
14-
Version: "0.1.0",
14+
Version: "0.2.0",
1515
Constraint: ">= 0.43.0",
1616
},
1717
},

0 commit comments

Comments
 (0)