Skip to content

Commit

Permalink
Bump up version to v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Jul 30, 2024
1 parent 2156dd3 commit 390211c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 0.9.0 (2024-07-30)

### Enhancements

- [#194](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/194) [#196](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/196): Add `terraform_map_duplicate_keys` rule

### Chores

- [#195](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/195): Bump github.com/zclconf/go-cty from 1.14.4 to 1.15.0

## 0.8.0 (2024-07-06)

### Enhancements
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.51.2
+ ruleset.terraform (0.7.0-bundled)
TFLint version 0.52.0
+ ruleset.terraform (0.8.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.8.0"
version = "0.9.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.8.0"
const Version string = "0.9.0"

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

0 comments on commit 390211c

Please sign in to comment.