Skip to content

Commit 08fe81f

Browse files
committed
Bump up version to v0.37.0
1 parent e220ad1 commit 08fe81f

File tree

4 files changed

+26
-4
lines changed

4 files changed

+26
-4
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Example:
2727
2828
```console
2929
$ tflint -v
30-
TFLint version 0.36.2
30+
TFLint version 0.37.0
3131
$ terraform -v
32-
Terraform v1.1.9
32+
Terraform v1.2.1
3333
```
3434
-->

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## 0.37.0 (2022-05-30)
2+
3+
### Enhancements
4+
5+
- [#1401](https://github.com/terraform-linters/tflint/pull/1401) [#1403](https://github.com/terraform-linters/tflint/pull/1403): terraform: Add support for Terraform v1.2 syntax ([@lonegunmanb](https://github.com/lonegunmanb) [@wata727](https://github.com/wata727))
6+
7+
### Chores
8+
9+
- [#1378](https://github.com/terraform-linters/tflint/pull/1378): build(deps): Bump github.com/hashicorp/go-plugin from 1.4.3 to 1.4.4
10+
- [#1379](https://github.com/terraform-linters/tflint/pull/1379): build(deps): Bump docker/metadata-action from 3 to 4
11+
- [#1380](https://github.com/terraform-linters/tflint/pull/1380): build(deps): Bump docker/login-action from 1 to 2
12+
- [#1381](https://github.com/terraform-linters/tflint/pull/1381): build(deps): Bump docker/setup-buildx-action from 1 to 2
13+
- [#1382](https://github.com/terraform-linters/tflint/pull/1382): build(deps): Bump docker/build-push-action from 2 to 3
14+
- [#1383](https://github.com/terraform-linters/tflint/pull/1383): build(deps): Bump docker/setup-qemu-action from 1 to 2
15+
- [#1385](https://github.com/terraform-linters/tflint/pull/1385): Remove a redundant log message ([@alexjurkiewicz](https://github.com/alexjurkiewicz))
16+
- [#1386](https://github.com/terraform-linters/tflint/pull/1386): build(deps): Bump golangci/golangci-lint-action from 3.1.0 to 3.2.0
17+
- [#1387](https://github.com/terraform-linters/tflint/pull/1387): build(deps): Bump golang from 1.18.1-alpine3.15 to 1.18.2-alpine3.15
18+
- [#1389](https://github.com/terraform-linters/tflint/pull/1389): build(deps): Bump github.com/hashicorp/go-version from 1.4.0 to 1.5.0
19+
- [#1390](https://github.com/terraform-linters/tflint/pull/1390): build(deps): Bump github.com/hashicorp/go-getter from 1.5.11 to 1.6.1
20+
- [#1391](https://github.com/terraform-linters/tflint/pull/1391): build(deps): Bump goreleaser/goreleaser-action from 2 to 3
21+
- [#1404](https://github.com/terraform-linters/tflint/pull/1404): Remove testify ([@wata727](https://github.com/wata727))
22+
123
## 0.36.2 (2022-05-06)
224

325
### BugFixes

docs/user-guide/compatibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
TFLint bundles Terraform internal packages as a library. This allows the Terraform language to be parsed correctly even if Terraform is not installed at runtime.
44

5-
On the other hand, language semantics depend on the behavior of a particular bundled version. For example, a configuration parsed by Terraform v1.0 may be parsed by v1.1 language parser. The currently bundled version is v1.1.0.
5+
On the other hand, language semantics depend on the behavior of a particular bundled version. For example, a configuration parsed by Terraform v1.0 may be parsed by v1.1 language parser. The currently bundled version is v1.2.1.
66

77
The best practice is to match the Terraform version bundled with TFLint to the version you actually use. However, the Terraform language guarantees some backward compatibility, so different versions may not cause immediate problems. However, keep in mind that false positives/negatives can occur depending on this assumption.
88

tflint/meta.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package tflint
33
import "fmt"
44

55
// Version is application version
6-
const Version string = "0.36.2"
6+
const Version string = "0.37.0"
77

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

0 commit comments

Comments
 (0)