Skip to content

Commit ed5566c

Browse files
committed
Bump up version to v0.2.2
1 parent c4dd55a commit ed5566c

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 0.2.2 (2022-12-26)
2+
3+
### BugFixes
4+
5+
- [#49](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/49): terraform_deprecated_index: improve perf for files with many expressions
6+
7+
### Chores
8+
9+
- [#45](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/45): Add signatures for keyless signing
10+
- [#46](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/46): Bump github.com/hashicorp/hcl/v2 from 2.14.1 to 2.15.0
11+
- [#47](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/47): Bump github.com/zclconf/go-cty from 1.11.1 to 1.12.1
12+
- [#50](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/50): Bump github.com/Masterminds/semver/v3 from 3.1.1 to 3.2.0
13+
- [#51](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/51): Use # comment syntax in configuration example
14+
- [#53](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/53): Bump goreleaser/goreleaser-action from 3 to 4
15+
- [#54](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/54): Bump tflint-plugin-sdk to v0.15.0
16+
- [#55](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/55): Bump terraform-registry-address to v0.1.0
17+
118
## 0.2.1 (2022-10-26)
219

320
### 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.42.2
22-
+ ruleset.terraform (0.2.1-bundled)
21+
TFLint version 0.44.0
22+
+ ruleset.terraform (0.2.2-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.2.1"
30+
version = "0.2.2"
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.2.1"
6+
const Version string = "0.2.2"
77

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

0 commit comments

Comments
 (0)