Skip to content

Commit 690d2e2

Browse files
committed
Bump up version to v0.39.0
1 parent 4cc4798 commit 690d2e2

File tree

3 files changed

+32
-3
lines changed

3 files changed

+32
-3
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ Example:
5757
5858
```console
5959
$ tflint -v
60-
TFLint version 0.38.1
60+
TFLint version 0.39.0
6161
$ terraform -v
62-
Terraform v1.2.3
62+
Terraform v1.2.5
6363
```
6464
-->

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
## 0.39.0 (2022-07-28)
2+
3+
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.
4+
5+
### Changes
6+
7+
- [#1428](https://github.com/terraform-linters/tflint/pull/1428): Replace config loader with a new loader ([@wata727](https://github.com/wata727))
8+
- [#1433](https://github.com/terraform-linters/tflint/pull/1433): terraformrules: Remove dependencies on Terraform internal packages from rules ([@wata727](https://github.com/wata727))
9+
10+
### Enhancements
11+
12+
- [#1432](https://github.com/terraform-linters/tflint/pull/1432): terraformrules: Walk map/list expressions deeply ([@wata727](https://github.com/wata727))
13+
14+
### BugFixes
15+
16+
- [#1445](https://github.com/terraform-linters/tflint/pull/1445): terraform: Finalize variable values in Evaluator ([@wata727](https://github.com/wata727))
17+
18+
### Chores
19+
20+
- [#1421](https://github.com/terraform-linters/tflint/pull/1421): build(deps): Bump github.com/hashicorp/go-getter from 1.6.1 to 1.6.2
21+
- [#1425](https://github.com/terraform-linters/tflint/pull/1425): build(deps): Bump github.com/hashicorp/hcl/v2 from 2.12.0 to 2.13.0
22+
- [#1429](https://github.com/terraform-linters/tflint/pull/1429): build(deps): Bump github.com/hashicorp/go-version from 1.5.0 to 1.6.0
23+
- [#1430](https://github.com/terraform-linters/tflint/pull/1430) [#1433](https://github.com/terraform-linters/tflint/pull/1443): build(deps): Bump sigstore/cosign-installer from 2.4.0 to 2.5.0
24+
- [#1431](https://github.com/terraform-linters/tflint/pull/1431): Installing on mac m1 ([@caruccio](https://github.com/caruccio))
25+
- [#1438](https://github.com/terraform-linters/tflint/pull/1438) [#1442](https://github.com/terraform-linters/tflint/pull/1442): build(deps): Bump github.com/spf13/afero from 1.8.2 to 1.9.2
26+
- [#1439](https://github.com/terraform-linters/tflint/pull/1439): build(deps): Bump golang from 1.18.3-alpine3.15 to 1.18.4-alpine3.15
27+
- [#1444](https://github.com/terraform-linters/tflint/pull/1444): build(deps): Bump alpine from 3.16.0 to 3.16.1
28+
- [#1446](https://github.com/terraform-linters/tflint/pull/1446): Bump cosign to v1.10.0 ([@wata727](https://github.com/wata727))
29+
130
## 0.38.1 (2022-06-21)
231

332
- [#1420](https://github.com/terraform-linters/tflint/pull/1420): Use latest Cosign ([@wata727](https://github.com/wata727))

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.38.1"
6+
const Version string = "0.39.0"
77

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

0 commit comments

Comments
 (0)