Skip to content

Commit

Permalink
Bump up version to v0.42.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Oct 24, 2022
1 parent 785c0e1 commit a9813de
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Example:
```console
$ tflint -v
TFLint version 0.42.0
TFLint version 0.42.1
$ terraform -v
Terraform v1.3.3
```
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.42.1 (2022-10-25)

### BugFixes

- [#1566](https://github.com/terraform-linters/tflint/pull/1566): terraform: Fix incorrect circular reference detection ([@wata727](https://github.com/wata727))

## 0.42.0 (2022-10-23)

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+.
Expand Down
2 changes: 1 addition & 1 deletion integrationtest/inspection/incompatible-host/result.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"issues": [],
"errors": [
{
"message": "Failed to satisfy version constraints; tflint-ruleset-incompatiblehost requires >= 1.0, but TFLint version is 0.42.0",
"message": "Failed to satisfy version constraints; tflint-ruleset-incompatiblehost requires >= 1.0, but TFLint version is 0.42.1",
"severity": "error"
}
]
Expand Down
2 changes: 1 addition & 1 deletion tflint/meta.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

// Version is application version
var Version *version.Version = version.Must(version.NewVersion("0.42.0"))
var Version *version.Version = version.Must(version.NewVersion("0.42.1"))

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

0 comments on commit a9813de

Please sign in to comment.