diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 606c244b4..2df07be7e 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.39.0 +TFLint version 0.39.1 $ terraform -v -Terraform v1.2.5 +Terraform v1.2.6 ``` --> diff --git a/CHANGELOG.md b/CHANGELOG.md index 703e2a3a5..925c9b46e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 0.39.1 (2022-07-29) + +### BugFixes + +- [#1452](https://github.com/terraform-linters/tflint/pull/1452): terraform_required_version: fix regression with multiple blocks ([@bendrucker](https://github.com/bendrucker)) +- [#1454](https://github.com/terraform-linters/tflint/pull/1454): terraform_required_providers: fix regression with configuration_aliases ([@bendrucker](https://github.com/bendrucker)) +- [#1456](https://github.com/terraform-linters/tflint/pull/1456): Fix panic that occurs when using sensitive count ([@wata727](https://github.com/wata727)) +- [#1458](https://github.com/terraform-linters/tflint/pull/1458): terraformrules: Get module contents with `IncludeNotCreated: true` ([@wata727](https://github.com/wata727)) + +### Chores + +- [#1449](https://github.com/terraform-linters/tflint/pull/1449): Update verification steps for the latest Cosign ([@wata727](https://github.com/wata727)) + ## 0.39.0 (2022-07-28) In this release, the dependencies on Terraform's internal API have been significantly changed. Normally, you should be unlikely to be directly affected by this change, but you may get different results in small details, such as error messages. See the Changes section for more details. diff --git a/tflint/meta.go b/tflint/meta.go index 98f546df8..7bf69b15a 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.39.0" +const Version string = "0.39.1" // ReferenceLink returns the rule reference link func ReferenceLink(name string) string {