Skip to content

Commit 88e5651

Browse files
committed
Bump up version to v0.5.0
1 parent 43b378e commit 88e5651

File tree

3 files changed

+29
-3
lines changed

3 files changed

+29
-3
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
## 0.5.0 (2023-10-09)
2+
3+
### Enhancements
4+
5+
- [#128](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/128) [#132](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/132): new rule: `terraform_deprecated_lookup`
6+
- [#131](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/131): `terraform_naming_convention`: Add support for checks and scoped data sources
7+
- [#135](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/135): `terraform_unused_declarations`: Add support for scoped data sources
8+
- [#136](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/136): Add support for provider refs in scoped data sources
9+
10+
## BugFixes
11+
12+
- [#133](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/133): `terraform_unused_declarations`: Make unused variable checks aware of validation blocks
13+
14+
### Chores
15+
16+
- [#106](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/106) [#117](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/117): Bump github.com/hashicorp/terraform-registry-address from 0.2.0 to 0.2.2
17+
- [#108](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/108): Bump github.com/hashicorp/go-getter from 1.7.1 to 1.7.2
18+
- [#109](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/109): Bump github.com/terraform-linters/tflint-plugin-sdk from 0.17.0 to 0.18.0
19+
- [#114](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/114): Add raw binary entries to checksums.txt
20+
- [#115](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/115): Fix typo in rule documentation
21+
- [#122](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/122) [#123](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/123) [#137](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/137): Bump github.com/zclconf/go-cty from 1.13.2 to 1.14.1
22+
- [#124](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/124) [#138](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/138): Bump github.com/hashicorp/hcl/v2 from 2.17.0 to 2.18.1
23+
- [#126](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/126): deps: Go 1.21
24+
- [#127](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/127): Bump actions/checkout from 3 to 4
25+
- [#129](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/129): Bump goreleaser/goreleaser-action from 4 to 5
26+
127
## 0.4.0 (2023-06-18)
228

329
### Breaking Changes

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ 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.47.0
21+
TFLint version 0.48.0
2222
+ ruleset.terraform (0.4.0-bundled)
2323
```
2424

@@ -27,7 +27,7 @@ If you want to use a version different from the built-in version, you can declar
2727
```hcl
2828
plugin "terraform" {
2929
enabled = true
30-
version = "0.4.0"
30+
version = "0.5.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.4.0"
6+
const Version string = "0.5.0"
77

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

0 commit comments

Comments
 (0)