diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 9d4f5a147..a1354298e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -25,6 +25,6 @@ It is a good practice to list the versions where the bug occurred. Example: -TFLint v0.12.0 -Terraform v0.12.6 +TFLint v0.12.1 +Terraform v0.12.10 --> diff --git a/CHANGELOG.md b/CHANGELOG.md index a0e5cde9f..0543c8ba1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +## 0.12.1 (2019-10-12) + +### Enhancements + +- [#467](https://github.com/wata727/tflint/pull/467): Bump github.com/mattn/go-colorable from 0.1.2 to 0.1.4 +- [#476](https://github.com/wata727/tflint/pull/476): Bump github.com/hashicorp/aws-sdk-go-base from 0.3.0 to 0.4.0 +- [#482](https://github.com/wata727/tflint/pull/482): TFLint is now compatible with Terraform v0.12.10 + - See https://github.com/hashicorp/terraform/releases/tag/v0.12.10 + - Support new built-in functions: `parseint` and `cidrsubnets` +- [#484](https://github.com/wata727/tflint/pull/484): Bump terraform-provider-aws from v2.30.0 to v2.32.0 + +### Chores + +- [#471](https://github.com/wata727/tflint/pull/471): Bump TFLint version in issue template ([@abitrolly](https://github.com/abitrolly)) +- [#474](https://github.com/wata727/tflint/pull/474): Switch to HCL 2.0 in the HCL repository ([@explodingcamera](https://github.com/explodingcamera)) +- [#487](https://github.com/wata727/tflint/pull/487): Test tools in GitHub Actions + ## 0.12.0 (2019-09-29) This release includes an experimental Language Server Procotol support. Using LSP makes it easy to integrate TFLint with your favorite editor. Currently, only diagnostics are provided. diff --git a/README.md b/README.md index 9b1d6703e..0cca15b98 100644 --- a/README.md +++ b/README.md @@ -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/wata727/tflint/releases/latest). The following is an example of installation on macOS: ```console -$ wget https://github.com/wata727/tflint/releases/download/v0.12.0/tflint_darwin_amd64.zip +$ wget https://github.com/wata727/tflint/releases/download/v0.12.1/tflint_darwin_amd64.zip $ unzip tflint_darwin_amd64.zip Archive: tflint_darwin_amd64.zip inflating: tflint diff --git a/integration/basic/result.json b/integration/basic/result.json index 934ff92a0..883e4d195 100644 --- a/integration/basic/result.json +++ b/integration/basic/result.json @@ -4,7 +4,7 @@ "rule": { "name": "aws_route_not_specified_target", "severity": "error", - "link": "https://github.com/wata727/tflint/blob/v0.12.0/docs/rules/aws_route_not_specified_target.md" + "link": "https://github.com/wata727/tflint/blob/v0.12.1/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": { @@ -24,7 +24,7 @@ "rule": { "name": "aws_route_specified_multiple_targets", "severity": "error", - "link": "https://github.com/wata727/tflint/blob/v0.12.0/docs/rules/aws_route_specified_multiple_targets.md" + "link": "https://github.com/wata727/tflint/blob/v0.12.1/docs/rules/aws_route_specified_multiple_targets.md" }, "message": "More than one routing target specified. It must be one.", "range": { @@ -64,7 +64,7 @@ "rule": { "name": "aws_route_not_specified_target", "severity": "error", - "link": "https://github.com/wata727/tflint/blob/v0.12.0/docs/rules/aws_route_not_specified_target.md" + "link": "https://github.com/wata727/tflint/blob/v0.12.1/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": { diff --git a/tflint/meta.go b/tflint/meta.go index f06838fed..83bdd548c 100644 --- a/tflint/meta.go +++ b/tflint/meta.go @@ -3,7 +3,7 @@ package tflint import "fmt" // Version is application version -const Version string = "0.12.0" +const Version string = "0.12.1" // ReferenceLink returns the rule reference link func ReferenceLink(name string) string {