Skip to content

Commit a9813de

Browse files
committed
Bump up version to v0.42.1
1 parent 785c0e1 commit a9813de

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Example:
5757
5858
```console
5959
$ tflint -v
60-
TFLint version 0.42.0
60+
TFLint version 0.42.1
6161
$ terraform -v
6262
Terraform v1.3.3
6363
```

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.42.1 (2022-10-25)
2+
3+
### BugFixes
4+
5+
- [#1566](https://github.com/terraform-linters/tflint/pull/1566): terraform: Fix incorrect circular reference detection ([@wata727](https://github.com/wata727))
6+
17
## 0.42.0 (2022-10-23)
28

39
This release adds support for evaluating `local.*`, `each.key`, `each.value`, and `count.index`. Support for `each.*` and `count.index` requires plugins built with SDK v0.14+.

integrationtest/inspection/incompatible-host/result.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"issues": [],
33
"errors": [
44
{
5-
"message": "Failed to satisfy version constraints; tflint-ruleset-incompatiblehost requires >= 1.0, but TFLint version is 0.42.0",
5+
"message": "Failed to satisfy version constraints; tflint-ruleset-incompatiblehost requires >= 1.0, but TFLint version is 0.42.1",
66
"severity": "error"
77
}
88
]

tflint/meta.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
)
88

99
// Version is application version
10-
var Version *version.Version = version.Must(version.NewVersion("0.42.0"))
10+
var Version *version.Version = version.Must(version.NewVersion("0.42.1"))
1111

1212
// ReferenceLink returns the rule reference link
1313
func ReferenceLink(name string) string {

0 commit comments

Comments
 (0)