Skip to content

Commit

Permalink
Bump up version to 0.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Mar 14, 2020
1 parent 49009b3 commit 4d470f9
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Expand Up @@ -25,6 +25,6 @@ It is a good practice to list the versions where the bug occurred.
Example:
TFLint v0.15.1
TFLint v0.15.2
Terraform v0.12.23
-->
17 changes: 17 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,20 @@
## 0.15.2 (2020-03-14)

### Enhancements

- [#650](https://github.com/terraform-linters/tflint/pull/650): Bump github.com/zclconf/go-cty from 1.3.0 to 1.3.1
- [#653](https://github.com/terraform-linters/tflint/pull/653): Bump terraform to v0.12.23 ([@chenrui333](https://github.com/chenrui333))
- [#665](https://github.com/terraform-linters/tflint/pull/665): Bump github.com/aws/aws-sdk-go from 1.28.9 to 1.29.24
- [#667](https://github.com/terraform-linters/tflint/pull/667): Bump terraform-provider-aws to v2.53.0 from v2.50.0 ([@wata727](https://github.com/wata727))

### Chores

- [#647](https://github.com/terraform-linters/tflint/pull/647): Bump github.com/hashicorp/go-plugin from 1.0.1 to 1.1.0
- [#649](https://github.com/terraform-linters/tflint/pull/649): Bump golang to v1.14 ([@chenrui333](https://github.com/chenrui333))
- [#657](https://github.com/terraform-linters/tflint/pull/657): Run linters in GitHub Actions ([@wata727](https://github.com/wata727))
- [#660](https://github.com/terraform-linters/tflint/pull/660): Bump github.com/hashicorp/terraform-plugin-sdk from 1.7.0 to 1.8.0 in /tools
- [#666](https://github.com/terraform-linters/tflint/pull/666): Add install guide for Windows (choco install) ([@aaronsteers](https://github.com/aaronsteers))

## 0.15.1 (2020-03-02)

### BugFixes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -30,7 +30,7 @@ TFLint finds such errors in advance:
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:

```console
$ wget https://github.com/terraform-linters/tflint/releases/download/v0.15.1/tflint_darwin_amd64.zip
$ wget https://github.com/terraform-linters/tflint/releases/download/v0.15.2/tflint_darwin_amd64.zip
$ unzip tflint_darwin_amd64.zip
Archive: tflint_darwin_amd64.zip
inflating: tflint
Expand Down
6 changes: 3 additions & 3 deletions integration/basic/result.json
Expand Up @@ -4,7 +4,7 @@
"rule": {
"name": "aws_route_not_specified_target",
"severity": "error",
"link": "https://github.com/terraform-linters/tflint/blob/v0.15.1/docs/rules/aws_route_not_specified_target.md"
"link": "https://github.com/terraform-linters/tflint/blob/v0.15.2/docs/rules/aws_route_not_specified_target.md"
},
"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.",
"range": {
Expand All @@ -24,7 +24,7 @@
"rule": {
"name": "aws_route_specified_multiple_targets",
"severity": "error",
"link": "https://github.com/terraform-linters/tflint/blob/v0.15.1/docs/rules/aws_route_specified_multiple_targets.md"
"link": "https://github.com/terraform-linters/tflint/blob/v0.15.2/docs/rules/aws_route_specified_multiple_targets.md"
},
"message": "More than one routing target specified. It must be one.",
"range": {
Expand Down Expand Up @@ -64,7 +64,7 @@
"rule": {
"name": "aws_route_not_specified_target",
"severity": "error",
"link": "https://github.com/terraform-linters/tflint/blob/v0.15.1/docs/rules/aws_route_not_specified_target.md"
"link": "https://github.com/terraform-linters/tflint/blob/v0.15.2/docs/rules/aws_route_not_specified_target.md"
},
"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.",
"range": {
Expand Down
2 changes: 1 addition & 1 deletion tflint/meta.go
Expand Up @@ -3,7 +3,7 @@ package tflint
import "fmt"

// Version is application version
const Version string = "0.15.1"
const Version string = "0.15.2"

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

0 comments on commit 4d470f9

Please sign in to comment.