Skip to content

Commit 9579728

Browse files
committed
Bump up version to 0.31.0
1 parent 6238096 commit 9579728

File tree

3 files changed

+30
-4
lines changed

3 files changed

+30
-4
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.30.0
31-
+ ruleset.aws (0.5.0-bundled)
30+
TFLint version 0.31.0
31+
+ ruleset.aws (0.6.0-bundled)
3232
$ terraform -v
33-
Terraform v1.0.1
33+
Terraform v1.0.4
3434
```
3535
-->

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
## 0.31.0 (2021-08-08)
2+
3+
### Enhancements
4+
5+
- [#1177](https://github.com/terraform-linters/tflint/pull/1177): Bump bundled AWS ruleset plugin ([@wata727](https://github.com/wata727))
6+
7+
### Changes
8+
9+
- [#1160](https://github.com/terraform-linters/tflint/pull/1160): plugin: Deprecate bundled plugins ([@wata727](https://github.com/wata727))
10+
11+
### BugFixes
12+
13+
- [#1169](https://github.com/terraform-linters/tflint/pull/1169): fix: return error if plugin is not a file ([@josh-barker-coles](https://github.com/josh-barker-coles))
14+
15+
### Chores
16+
17+
- [#1156](https://github.com/terraform-linters/tflint/pull/1156): grammar fix on installation script ([@radius314](https://github.com/radius314))
18+
- [#1158](https://github.com/terraform-linters/tflint/pull/1158): terraform: Remove unused internal packages impl ([@wata727](https://github.com/wata727))
19+
- [#1161](https://github.com/terraform-linters/tflint/pull/1161): build(deps): Bump github.com/zclconf/go-cty from 1.8.4 to 1.9.0
20+
- [#1164](https://github.com/terraform-linters/tflint/pull/1164): Update README about Docker images ([@wata727](https://github.com/wata727))
21+
- [#1166](https://github.com/terraform-linters/tflint/pull/1166): build(deps): Bump github.com/terraform-linters/tflint-plugin-sdk from 0.9.0 to 0.9.1
22+
- [#1167](https://github.com/terraform-linters/tflint/pull/1167): build(deps): Bump github.com/google/uuid from 1.2.0 to 1.3.0
23+
- [#1172](https://github.com/terraform-linters/tflint/pull/1172): build(deps): Bump github.com/hashicorp/hcl/v2 from 2.10.0 to 2.10.1
24+
- [#1174](https://github.com/terraform-linters/tflint/pull/1174): Bump github.com/sourcegraph/jsonrpc2 to v0.1.0 ([@wata727](https://github.com/wata727))
25+
- [#1175](https://github.com/terraform-linters/tflint/pull/1175): build(deps): Bump github.com/hashicorp/go-getter from 1.5.5 to 1.5.6
26+
127
## 0.30.0 (2021-07-04)
228

329
This release follows the package internalization of Terraform v1.0, and copied some packages as part of TFLint. As a result, the hashicorp/terraform dependency has remove from go.mod, but the copied packages are still included. Therefore, it does not have a significant impact on users. See https://github.com/terraform-linters/tflint/issues/937 for more information.

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

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

0 commit comments

Comments
 (0)