Skip to content

Commit b64d6c2

Browse files
committed
Bump up version to 0.26.0
1 parent e9ad706 commit b64d6c2

File tree

4 files changed

+27
-5
lines changed

4 files changed

+27
-5
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ Example:
2727
2828
```console
2929
$ tflint -v
30-
TFLint version 0.25.0
31-
+ ruleset.aws (0.3.0-bundled)
30+
TFLint version 0.26.0
31+
+ ruleset.aws (0.3.1-bundled)
3232
$ terraform -v
33-
Terraform v0.14.7
33+
Terraform v0.14.9
3434
```
3535
-->

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## 0.26.0 (2021-04-04)
2+
3+
### Enhancements
4+
5+
- [#1085](https://github.com/terraform-linters/tflint/pull/1085): formatter: Add support for --format compact ([@wata727](https://github.com/wata727))
6+
- [#1093](https://github.com/terraform-linters/tflint/pull/1093): Bump bundled plugins ([@wata727](https://github.com/wata727))
7+
8+
### BugFixes
9+
10+
- [#1080](https://github.com/terraform-linters/tflint/pull/1080): plugin: Wrap errors to avoid gob encoding errors ([@wata727](https://github.com/wata727))
11+
- [#1084](https://github.com/terraform-linters/tflint/pull/1084) [#1092](https://github.com/terraform-linters/tflint/pull/1092): plugin: Pass types to EvalExpr ([@wata727](https://github.com/wata727))
12+
13+
### Chores
14+
15+
- [#1077](https://github.com/terraform-linters/tflint/pull/1077): build(deps): Bump github.com/google/go-cmp from 0.5.4 to 0.5.5
16+
- [#1081](https://github.com/terraform-linters/tflint/pull/1081) [#1091](https://github.com/terraform-linters/tflint/pull/1091): build(deps): Bump github.com/hashicorp/terraform from 0.14.7 to 0.14.9
17+
- [#1082](https://github.com/terraform-linters/tflint/pull/1082): build(deps): Bump github.com/hashicorp/hcl/v2 from 2.9.0 to 2.9.1
18+
- [#1086](https://github.com/terraform-linters/tflint/pull/1086): update dockerfile to use alpine 3.13 ([@chenrui333](https://github.com/chenrui333))
19+
- [#1087](https://github.com/terraform-linters/tflint/pull/1087): update dependabot to manage docker deps ([@chenrui333](https://github.com/chenrui333))
20+
- [#1088](https://github.com/terraform-linters/tflint/pull/1088): build(deps): Bump github.com/zclconf/go-cty from 1.8.0 to 1.8.1
21+
- [#1089](https://github.com/terraform-linters/tflint/pull/1089): build(deps): Bump github.com/jessevdk/go-flags from 1.4.0 to 1.5.0
22+
123
## 0.25.0 (2021-03-06)
224

325
### Enhancements

docs/user-guide/compatibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Compatibility with Terraform
22

3-
Since TFLint embeds a specific version of Terraform as a library, some features implicitly assume the behavior of Terraform v0.14.7.
3+
Since TFLint embeds a specific version of Terraform as a library, some features implicitly assume the behavior of Terraform v0.14.9.
44

55
Of course, TFLint may work correctly if you run it on other versions. But, false positives/negatives can occur based on this assumption.
66

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

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

0 commit comments

Comments
 (0)