Skip to content

Commit 2f050ac

Browse files
committed
Bump up version to 0.25.0
1 parent c22c17c commit 2f050ac

File tree

5 files changed

+31
-5
lines changed

5 files changed

+31
-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.24.1
31-
+ ruleset.aws (0.2.1-bundled)
30+
TFLint version 0.25.0
31+
+ ruleset.aws (0.3.0-bundled)
3232
$ terraform -v
33-
Terraform v0.14.5
33+
Terraform v0.14.7
3434
```
3535
-->

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## 0.25.0 (2021-03-06)
2+
3+
### Enhancements
4+
5+
- [#1042](https://github.com/terraform-linters/tflint/pull/1042): Added option to enable plugins from the cli ([@janritter](https://github.com/janritter))
6+
- [#1076](https://github.com/terraform-linters/tflint/pull/1076): Bump bundled plugins ([@wata727](https://github.com/wata727))
7+
8+
### BugFixes
9+
10+
- [#1070](https://github.com/terraform-linters/tflint/pull/1070): pass --loglevel to plugins as TFLINT_LOG ([@bendrucker](https://github.com/bendrucker))
11+
- [#1072](https://github.com/terraform-linters/tflint/pull/1072): tflint: Remove duplicate variable references ([@wata727](https://github.com/wata727))
12+
13+
### Chores
14+
15+
- [#1057](https://github.com/terraform-linters/tflint/pull/1057): add stargazers chart ([@chenrui333](https://github.com/chenrui333))
16+
- [#1058](https://github.com/terraform-linters/tflint/pull/1058) [#1064](https://github.com/terraform-linters/tflint/pull/1064): build(deps): Bump github.com/hashicorp/terraform from 0.14.5 to 0.14.7
17+
- [#1059](https://github.com/terraform-linters/tflint/pull/1059): build(deps): Bump actions/cache from v2.1.3 to v2.1.4
18+
- [#1060](https://github.com/terraform-linters/tflint/pull/1060): docker: remove unused build tools ([@pujan14](https://github.com/pujan14))
19+
- [#1062](https://github.com/terraform-linters/tflint/pull/1062) [#1073](https://github.com/terraform-linters/tflint/pull/1073): chore: update go to v1.16 ([@chenrui333](https://github.com/chenrui333))
20+
- [#1065](https://github.com/terraform-linters/tflint/pull/1065): build(deps): Bump github.com/golang/mock from 1.4.4 to 1.5.0
21+
- [#1071](https://github.com/terraform-linters/tflint/pull/1071): terraform_naming_convention: test with count = 0 ([@bendrucker](https://github.com/bendrucker))
22+
- [#1074](https://github.com/terraform-linters/tflint/pull/1074): build(deps): Bump github.com/hashicorp/hcl/v2 from 2.8.2 to 2.9.0
23+
- [#1075](https://github.com/terraform-linters/tflint/pull/1075): build(deps): Bump github.com/zclconf/go-cty from 1.7.1 to 1.8.0
24+
125
## 0.24.1 (2021-02-02)
226

327
### BugFixes

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ Application Options:
7575
--enable-rule=RULE_NAME Enable rules from the command line
7676
--disable-rule=RULE_NAME Disable rules from the command line
7777
--only=RULE_NAME Enable only this rule, disabling all other defaults. Can be specified multiple times
78+
--enable-plugin=PLUGIN_NAME Enable plugins from the command line
7879
--var-file=FILE Terraform variable file name
7980
--var='foo=bar' Set a Terraform variable
8081
--module Inspect modules
@@ -84,6 +85,7 @@ Application Options:
8485
8586
Help Options:
8687
-h, --help Show this help message
88+
8789
```
8890

8991
See [User Guide](docs/user-guide) for details.

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.5.
3+
Since TFLint embeds a specific version of Terraform as a library, some features implicitly assume the behavior of Terraform v0.14.7.
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.24.1"
6+
const Version string = "0.25.0"
77

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

0 commit comments

Comments
 (0)