Skip to content

Commit 77aed47

Browse files
committed
Bump up version to v0.8.0
1 parent 9dbefc1 commit 77aed47

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 0.8.0 (2024-07-06)
2+
3+
### Enhancements
4+
5+
- [#178](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/178): Add range to terraform_required_version errors
6+
7+
### Bug Fixes
8+
9+
- [#189](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/189): deprecated_interpolation: Prevent autofix from producing ambiguous attribute keys
10+
11+
### Chores
12+
13+
- [#176](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/176): release: Introduce Artifact Attestations
14+
- [#179](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/179): gofmt rules/terraform_deprecated_lookup.go
15+
- [#180](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/180): Bump github.com/hashicorp/go-version from 1.6.0 to 1.7.0
16+
- [#183](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/183): Bump goreleaser/goreleaser-action from 5 to 6
17+
- [#186](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/186): Bump github.com/hashicorp/hcl/v2 from 2.20.1 to 2.21.0
18+
- [#187](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/187): Bump github.com/hashicorp/go-getter from 1.7.4 to 1.7.5
19+
- [#192](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/192): deps: Go 1.22.5
20+
121
## 0.7.0 (2024-05-02)
222

323
### Enhancements

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.50.3
22-
+ ruleset.terraform (0.5.0-bundled)
21+
TFLint version 0.51.2
22+
+ ruleset.terraform (0.7.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.7.0"
30+
version = "0.8.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.7.0"
6+
const Version string = "0.8.0"
77

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

0 commit comments

Comments
 (0)