Skip to content

Commit

Permalink
Bump up version to v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Dec 26, 2022
1 parent c4dd55a commit ed5566c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.2.2 (2022-12-26)

### BugFixes

- [#49](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/49): terraform_deprecated_index: improve perf for files with many expressions

### Chores

- [#45](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/45): Add signatures for keyless signing
- [#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
- [#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
- [#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
- [#51](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/51): Use # comment syntax in configuration example
- [#53](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/53): Bump goreleaser/goreleaser-action from 3 to 4
- [#54](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/54): Bump tflint-plugin-sdk to v0.15.0
- [#55](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/55): Bump terraform-registry-address to v0.1.0

## 0.2.1 (2022-10-26)

### BugFixes
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.42.2
+ ruleset.terraform (0.2.1-bundled)
TFLint version 0.44.0
+ ruleset.terraform (0.2.2-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.2.1"
version = "0.2.2"
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.1"
const Version string = "0.2.2"

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

0 comments on commit ed5566c

Please sign in to comment.