Skip to content

Commit 869c0a0

Browse files
committed
Bump up version to 0.15.0
1 parent feff44e commit 869c0a0

File tree

5 files changed

+30
-6
lines changed

5 files changed

+30
-6
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ It is a good practice to list the versions where the bug occurred.
2525
2626
Example:
2727
28-
TFLint v0.14.0
28+
TFLint v0.15.0
2929
Terraform v0.12.21
3030
-->

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## 0.15.0 (2020-02-25)
2+
3+
This release introduces advanced rule configuration syntax. This allows you to customize each rule with its own options. At the moment, only the `terraform_module_pinned_source` rule has its own options. See [documentation](https://github.com/terraform-linters/tflint/blob/v0.15.0/docs/rules/terraform_module_pinned_source.md#configuration) for details.
4+
5+
### Breaking Changes
6+
7+
- [#624](https://github.com/terraform-linters/tflint/pull/624): Merge terraform_module_semver_source into terraform_module_pinned_source ([@wata727](https://github.com/wata727))
8+
- The `terraform_module_semver_source` rule has been removed. Instead, use the `terraform_module_pinned_source` rule with `semver` style option.
9+
10+
### Enhancements
11+
12+
- [#609](https://github.com/terraform-linters/tflint/pull/609): Add new terraform_deprecated_interpolation rule ([@wata727](https://github.com/wata727))
13+
- [#619](https://github.com/terraform-linters/tflint/pull/619): Show the actual value in messages ([@wata727](https://github.com/wata727))
14+
- [#629](https://github.com/terraform-linters/tflint/pull/629): Bump terraform to v0.12.21 ([@chenrui333](https://github.com/chenrui333))
15+
- [#617](https://github.com/terraform-linters/tflint/pull/617): Check for tags on AWS resources ([@bwhaley](https://github.com/bwhaley))
16+
- [#635](https://github.com/terraform-linters/tflint/pull/635): Bump terraform-provider-aws to v2.50.0 from v2.46.0 ([@wata727](https://github.com/wata727))
17+
18+
### Chores
19+
20+
- [#607](https://github.com/terraform-linters/tflint/pull/607): Add FAQ ([@wata727](https://github.com/wata727))
21+
- [#608](https://github.com/terraform-linters/tflint/pull/608): Remove go111module on env variable in Dockerfile ([@cedarkuo](https://github.com/cedarkuo))
22+
- [#610](https://github.com/terraform-linters/tflint/pull/610): Add docker build actions ([@wata727](https://github.com/wata727))
23+
- [#637](https://github.com/terraform-linters/tflint/pull/637): Regenerate tags rule ([@wata727](https://github.com/wata727))
24+
125
## 0.14.0 (2020-01-31)
226

327
This release ships an experimental plugin system again! The new plugin system supports all operating systems and works perfectly correctly. See [the documentation](https://github.com/terraform-linters/tflint/blob/v0.14.0/docs/guides/extend.md) about how to use and create plugins.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ TFLint finds such errors in advance:
3030
You can download the binary built for your architecture from [the latest release](https://github.com/terraform-linters/tflint/releases/latest). The following is an example of installation on macOS:
3131

3232
```console
33-
$ wget https://github.com/terraform-linters/tflint/releases/download/v0.14.0/tflint_darwin_amd64.zip
33+
$ wget https://github.com/terraform-linters/tflint/releases/download/v0.15.0/tflint_darwin_amd64.zip
3434
$ unzip tflint_darwin_amd64.zip
3535
Archive: tflint_darwin_amd64.zip
3636
inflating: tflint

integration/basic/result.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"rule": {
55
"name": "aws_route_not_specified_target",
66
"severity": "error",
7-
"link": "https://github.com/terraform-linters/tflint/blob/v0.14.0/docs/rules/aws_route_not_specified_target.md"
7+
"link": "https://github.com/terraform-linters/tflint/blob/v0.15.0/docs/rules/aws_route_not_specified_target.md"
88
},
99
"message": "The routing target is not specified, each aws_route must contain either egress_only_gateway_id, gateway_id, instance_id, nat_gateway_id, network_interface_id, transit_gateway_id, or vpc_peering_connection_id.",
1010
"range": {
@@ -24,7 +24,7 @@
2424
"rule": {
2525
"name": "aws_route_specified_multiple_targets",
2626
"severity": "error",
27-
"link": "https://github.com/terraform-linters/tflint/blob/v0.14.0/docs/rules/aws_route_specified_multiple_targets.md"
27+
"link": "https://github.com/terraform-linters/tflint/blob/v0.15.0/docs/rules/aws_route_specified_multiple_targets.md"
2828
},
2929
"message": "More than one routing target specified. It must be one.",
3030
"range": {
@@ -64,7 +64,7 @@
6464
"rule": {
6565
"name": "aws_route_not_specified_target",
6666
"severity": "error",
67-
"link": "https://github.com/terraform-linters/tflint/blob/v0.14.0/docs/rules/aws_route_not_specified_target.md"
67+
"link": "https://github.com/terraform-linters/tflint/blob/v0.15.0/docs/rules/aws_route_not_specified_target.md"
6868
},
6969
"message": "The routing target is not specified, each aws_route must contain either egress_only_gateway_id, gateway_id, instance_id, nat_gateway_id, network_interface_id, transit_gateway_id, or vpc_peering_connection_id.",
7070
"range": {

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

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

0 commit comments

Comments
 (0)