From 7bf753b21ac05209c6371e142a9380e359bcadce Mon Sep 17 00:00:00 2001 From: Kazuma Watanabe Date: Fri, 23 Sep 2022 17:19:01 +0000 Subject: [PATCH] Bump up version to v0.41.0 --- .github/ISSUE_TEMPLATE/bug_report.md | 4 ++-- CHANGELOG.md | 11 +++++++++++ tflint/meta.go | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 031fff3f9..3450c6858 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -57,8 +57,8 @@ Example: ```console $ tflint -v -TFLint version 0.40.1 +TFLint version 0.41.0 $ terraform -v -Terraform v1.2.9 +Terraform v1.3.0 ``` --> diff --git a/CHANGELOG.md b/CHANGELOG.md index e948651ba..19b195af7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 0.41.0 (2022-09-24) + +### Enhancements + +- [#1519](https://github.com/terraform-linters/tflint/pull/1519): terraform: Add support for Terraform v1.3 ([@wata727](https://github.com/wata727)) + +### Chores + +- [#1510](https://github.com/terraform-linters/tflint/pull/1510): Move evaluation impl to under the terraform package ([@wata727](https://github.com/wata727)) +- [#1523](https://github.com/terraform-linters/tflint/pull/1523): Update Terraform compatibility notices ([@wata727](https://github.com/wata727)) + ## 0.40.1 (2022-09-17) ### BugFixes diff --git a/tflint/meta.go b/tflint/meta.go index 11b815824..c30025526 100644 --- a/tflint/meta.go +++ b/tflint/meta.go @@ -3,7 +3,7 @@ package tflint import "fmt" // Version is application version -const Version string = "0.40.1" +const Version string = "0.41.0" // ReferenceLink returns the rule reference link func ReferenceLink(name string) string {