Skip to content

Commit

Permalink
Bump up version to v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Nov 4, 2024
1 parent dcc1b6b commit bbeaf5d
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
## 0.10.0 (2024-11-04)

### Enhancements

- [#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
- The following rules now take provider-defined functions into account:
- `terraform_required_providers`
- `terraform_unused_required_providers`

### Bug Fixes

- [#216](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/216): Fix issues caused by multiple terraform blocks
- The following rule has been fixed to cause inconsistent results when multiple `terraform` blocks are declared:
- `terraform_required_providers`
- `terraform_unused_required_providers`
- `terraform_workspace_remote`

### Chores

- [#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
- [#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
- [#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
- [#217](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/217): deps: Go 1.23
- [#218](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/218): Bump GoReleaser to v2

## 0.9.1 (2024-08-03)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ If you want to use a version different from the built-in version, you can declar
```hcl
plugin "terraform" {
enabled = true
version = "0.9.1"
version = "0.10.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.9.1"
const Version string = "0.10.0"

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

0 comments on commit bbeaf5d

Please sign in to comment.