Skip to content

Commit 0874219

Browse files
committed
Bump up version to v0.2.0
1 parent 5d08395 commit 0874219

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 0.2.0 (2022-10-23)
2+
3+
### Enhancements
4+
5+
- [#34](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/34): deprecated_index: reject legacy splat expressions
6+
7+
### Chores
8+
9+
- [#30](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/30): Bump github.com/hashicorp/hcl/v2 from 2.14.0 to 2.14.1
10+
- [#31](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/31): Fix typo in configuration.md
11+
- [#38](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/38): Bump tflint-plugin-sdk to v0.14.0
12+
113
## 0.1.1 (2022-09-17)
214

315
### BugFixes

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.40.1
22-
+ ruleset.terraform (0.1.1-bundled)
21+
TFLint version 0.42.0
22+
+ ruleset.terraform (0.2.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.1.1"
30+
version = "0.2.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.1.1"
6+
const Version string = "0.2.0"
77

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

0 commit comments

Comments
 (0)