Skip to content

Commit

Permalink
Bump up version to v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Jun 18, 2023
1 parent 3f8cdc8 commit e611ed2
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 4 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
## 0.4.0 (2023-06-18)

### Breaking Changes

- [#104](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/104): Bump tflint-plugin-sdk to v0.17.0
- This change drops support for TFLint v0.40/v0.41

### Enhancements

- [#93](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/93): Add autofix support
- `terraform_comment_syntax`
- `terraform_deprecated_index`
- `terraform_deprecated_interpolation`
- `terraform_empty_list_equality`
- `terraform_required_provider`
- However, only issues with missing `source` can be fixed
- `terraform_unused_declarations`
- HCL native syntax only

### BugFixes

- [#101](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/101): deprecated_index: restore evaluation of JSON expressions

### Chores

- [#96](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/96): terraform_deprecated_index: add example of fix
- [#99](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/99): Bump github.com/zclconf/go-cty from 1.13.1 to 1.13.2
- [#102](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/102): Bump github.com/hashicorp/hcl/v2 from 2.16.2 to 2.17.0

## 0.3.0 (2023-04-22)

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

```
$ tflint -v
TFLint version 0.46.1
+ ruleset.terraform (0.2.2-bundled)
TFLint version 0.47.0
+ ruleset.terraform (0.4.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`:

```hcl
plugin "terraform" {
enabled = true
version = "0.3.0"
version = "0.4.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.3.0"
const Version string = "0.4.0"

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

0 comments on commit e611ed2

Please sign in to comment.