Skip to content

Commit

Permalink
Bump up version to 0.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Mar 6, 2021
1 parent c22c17c commit 2f050ac
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ Example:
```console
$ tflint -v
TFLint version 0.24.1
+ ruleset.aws (0.2.1-bundled)
TFLint version 0.25.0
+ ruleset.aws (0.3.0-bundled)
$ terraform -v
Terraform v0.14.5
Terraform v0.14.7
```
-->
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## 0.25.0 (2021-03-06)

### Enhancements

- [#1042](https://github.com/terraform-linters/tflint/pull/1042): Added option to enable plugins from the cli ([@janritter](https://github.com/janritter))
- [#1076](https://github.com/terraform-linters/tflint/pull/1076): Bump bundled plugins ([@wata727](https://github.com/wata727))

### BugFixes

- [#1070](https://github.com/terraform-linters/tflint/pull/1070): pass --loglevel to plugins as TFLINT_LOG ([@bendrucker](https://github.com/bendrucker))
- [#1072](https://github.com/terraform-linters/tflint/pull/1072): tflint: Remove duplicate variable references ([@wata727](https://github.com/wata727))

### Chores

- [#1057](https://github.com/terraform-linters/tflint/pull/1057): add stargazers chart ([@chenrui333](https://github.com/chenrui333))
- [#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
- [#1059](https://github.com/terraform-linters/tflint/pull/1059): build(deps): Bump actions/cache from v2.1.3 to v2.1.4
- [#1060](https://github.com/terraform-linters/tflint/pull/1060): docker: remove unused build tools ([@pujan14](https://github.com/pujan14))
- [#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))
- [#1065](https://github.com/terraform-linters/tflint/pull/1065): build(deps): Bump github.com/golang/mock from 1.4.4 to 1.5.0
- [#1071](https://github.com/terraform-linters/tflint/pull/1071): terraform_naming_convention: test with count = 0 ([@bendrucker](https://github.com/bendrucker))
- [#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
- [#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

## 0.24.1 (2021-02-02)

### BugFixes
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ Application Options:
--enable-rule=RULE_NAME Enable rules from the command line
--disable-rule=RULE_NAME Disable rules from the command line
--only=RULE_NAME Enable only this rule, disabling all other defaults. Can be specified multiple times
--enable-plugin=PLUGIN_NAME Enable plugins from the command line
--var-file=FILE Terraform variable file name
--var='foo=bar' Set a Terraform variable
--module Inspect modules
Expand All @@ -84,6 +85,7 @@ Application Options:
Help Options:
-h, --help Show this help message
```

See [User Guide](docs/user-guide) for details.
Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/compatibility.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Compatibility with Terraform

Since TFLint embeds a specific version of Terraform as a library, some features implicitly assume the behavior of Terraform v0.14.5.
Since TFLint embeds a specific version of Terraform as a library, some features implicitly assume the behavior of Terraform v0.14.7.

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

Expand Down
2 changes: 1 addition & 1 deletion tflint/meta.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package tflint
import "fmt"

// Version is application version
const Version string = "0.24.1"
const Version string = "0.25.0"

// ReferenceLink returns the rule reference link
func ReferenceLink(name string) string {
Expand Down

0 comments on commit 2f050ac

Please sign in to comment.