Skip to content

Commit e611ed2

Browse files
committed
Bump up version to v0.4.0
1 parent 3f8cdc8 commit e611ed2

File tree

3 files changed

+33
-4
lines changed

3 files changed

+33
-4
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
## 0.4.0 (2023-06-18)
2+
3+
### Breaking Changes
4+
5+
- [#104](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/104): Bump tflint-plugin-sdk to v0.17.0
6+
- This change drops support for TFLint v0.40/v0.41
7+
8+
### Enhancements
9+
10+
- [#93](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/93): Add autofix support
11+
- `terraform_comment_syntax`
12+
- `terraform_deprecated_index`
13+
- `terraform_deprecated_interpolation`
14+
- `terraform_empty_list_equality`
15+
- `terraform_required_provider`
16+
- However, only issues with missing `source` can be fixed
17+
- `terraform_unused_declarations`
18+
- HCL native syntax only
19+
20+
### BugFixes
21+
22+
- [#101](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/101): deprecated_index: restore evaluation of JSON expressions
23+
24+
### Chores
25+
26+
- [#96](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/96): terraform_deprecated_index: add example of fix
27+
- [#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
28+
- [#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
29+
130
## 0.3.0 (2023-04-22)
231

332
### Breaking Changes

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ This ruleset is built into TFLint, so you usually don't need to worry about how
1818

1919
```
2020
$ tflint -v
21-
TFLint version 0.46.1
22-
+ ruleset.terraform (0.2.2-bundled)
21+
TFLint version 0.47.0
22+
+ ruleset.terraform (0.4.0-bundled)
2323
```
2424

2525
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`:
2626

2727
```hcl
2828
plugin "terraform" {
2929
enabled = true
30-
version = "0.3.0"
30+
version = "0.4.0"
3131
source = "github.com/terraform-linters/tflint-ruleset-terraform"
3232
}
3333
```

project/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package project
33
import "fmt"
44

55
// Version is ruleset version
6-
const Version string = "0.3.0"
6+
const Version string = "0.4.0"
77

88
// ReferenceLink returns the rule reference link
99
func ReferenceLink(name string) string {

0 commit comments

Comments
 (0)