Skip to content

Commit

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

### Breaking Changes

- [#64](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/64): required_providers: warn on legacy version syntax, missing source

### BugFixes

- [#63](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/63): required_providers: use required provider entry as range if present
- [#90](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/90): terraform_deprecated_index: Emit issues based on expression types

### Chores

- [#57](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/57): Fix typo in rule documentation
- [#65](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/65) [#70](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/70) [#79](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/79): Bump github.com/hashicorp/hcl/v2 from 2.15.0 to 2.16.2
- [#67](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/67): Bump golang.org/x/net from 0.3.0 to 0.7.0
- [#68](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/68): Bump github.com/aws/aws-sdk-go from 1.15.78 to 1.34.0
- [#69](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/69) [#82](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/82): Bump github.com/hashicorp/go-getter from 1.6.2 to 1.7.1
- [#76](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/76) [#81](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/81): Bump github.com/zclconf/go-cty from 1.12.1 to 1.13.1
- [#78](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/78): Bump sigstore/cosign-installer from 2 to 3
- [#80](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/80): Bump actions/setup-go from 3 to 4
- [#83](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/83): Bump github.com/hashicorp/terraform-registry-address from 0.1.0 to 0.2.0
- [#85](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/85) [#88](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/88): Bump github.com/terraform-linters/tflint-plugin-sdk from 0.15.0 to 0.16.1
- [#87](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/87): Bump github.com/Masterminds/semver/v3 from 3.2.0 to 3.2.1

## 0.2.2 (2022-12-26)

### BugFixes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This ruleset is built into TFLint, so you usually don't need to worry about how

```
$ tflint -v
TFLint version 0.44.0
TFLint version 0.46.1
+ ruleset.terraform (0.2.2-bundled)
```

Expand All @@ -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.2.2"
version = "0.3.0"
source = "github.com/terraform-linters/tflint-ruleset-terraform"
}
```
Expand Down
2 changes: 1 addition & 1 deletion project/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package project
import "fmt"

// Version is ruleset version
const Version string = "0.2.2"
const Version string = "0.3.0"

// ReferenceLink returns the rule reference link
func ReferenceLink(name string) string {
Expand Down

0 comments on commit 599e680

Please sign in to comment.