Skip to content

Commit ba1a629

Browse files
committed
Bump up version to v0.6.0
1 parent 5ed7d12 commit ba1a629

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 0.6.0 (2024-02-24)
2+
3+
### Enhancements
4+
5+
- [#156](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/156): workspace_remote: Suppress issues in Terraform v1.1+
6+
7+
### Chores
8+
9+
- [#140](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/140): Bump golang.org/x/net from 0.13.0 to 0.17.0
10+
- [#141](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/141): Bump github.com/hashicorp/go-getter from 1.7.2 to 1.7.3
11+
- [#142](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/142): Bump github.com/google/go-cmp from 0.5.9 to 0.6.0
12+
- [#143](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/143): Bump github.com/hashicorp/hcl/v2 from 2.18.1 to 2.19.1
13+
- [#144](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/144): Bump google.golang.org/grpc from 1.57.0 to 1.57.1
14+
- [#147](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/147): Bump github.com/hashicorp/terraform-registry-address from 0.2.2 to 0.2.3
15+
- [#152](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/152): Bump actions/setup-go from 4 to 5
16+
- [#153](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/153): Bump github.com/zclconf/go-cty from 1.14.1 to 1.14.2
17+
- [#155](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/155): deps: Go 1.22
18+
- [#158](https://github.com/terraform-linters/tflint-ruleset-terraform/pull/158): Revise rules documentation
19+
120
## 0.5.0 (2023-10-09)
221

322
### 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.48.0
22-
+ ruleset.terraform (0.4.0-bundled)
21+
TFLint version 0.50.3
22+
+ ruleset.terraform (0.5.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.5.0"
30+
version = "0.6.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.5.0"
6+
const Version string = "0.6.0"
77

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

0 commit comments

Comments
 (0)