Skip to content

Commit bbeaf5d

Browse files
committed
Bump up version to v0.10.0
1 parent dcc1b6b commit bbeaf5d

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## 0.10.0 (2024-11-04)
2+
3+
### Enhancements
4+
5+
- [#214](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/214) [#215](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/215): Support provider-defined functions
6+
- The following rules now take provider-defined functions into account:
7+
- `terraform_required_providers`
8+
- `terraform_unused_required_providers`
9+
10+
### Bug Fixes
11+
12+
- [#216](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/216): Fix issues caused by multiple terraform blocks
13+
- The following rule has been fixed to cause inconsistent results when multiple `terraform` blocks are declared:
14+
- `terraform_required_providers`
15+
- `terraform_unused_required_providers`
16+
- `terraform_workspace_remote`
17+
18+
### Chores
19+
20+
- [#202](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/202): Bump github.com/hashicorp/go-getter from 1.7.5 to 1.7.6
21+
- [#206](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/206): Bump github.com/Masterminds/semver/v3 from 3.2.1 to 3.3.0
22+
- [#207](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/207): Bump github.com/hashicorp/hcl/v2 from 2.21.0 to 2.22.0
23+
- [#217](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/217): deps: Go 1.23
24+
- [#218](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/218): Bump GoReleaser to v2
25+
126
## 0.9.1 (2024-08-03)
227

328
### Bug Fixes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.9.1"
30+
version = "0.10.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.9.1"
6+
const Version string = "0.10.0"
77

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

0 commit comments

Comments
 (0)