From 677f9f13a47b7d6bc89e414887d6828989001569 Mon Sep 17 00:00:00 2001 From: wata_mac Date: Mon, 10 Apr 2017 00:13:27 +0900 Subject: [PATCH] Bump up version to 0.3.4 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ README.md | 2 +- version.go | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f516d6a24..a3a130127 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +## 0.3.4 (2017-04-10) + +Patch version update. This release includes new detectors for `aws_route` + +### NewDetectors + +- Add AwsRouteInvalidRouteTableDetector ([#90](https://github.com/wata727/tflint/pull/90)) +- Add AwsRouteNotSpecifiedTargetDetector ([#91](https://github.com/wata727/tflint/pull/91)) +- Add AwsRouteSpecifiedMultipleTargetsDetector ([#92](https://github.com/wata727/tflint/pull/92)) +- Add AwsRouteInvalidGatewayDetector ([#93](https://github.com/wata727/tflint/pull/93)) +- Add AwsRouteInvalidEgressOnlyGatewayDetector ([#94](https://github.com/wata727/tflint/pull/94)) +- Add AwsRouteInvalidNatGatewayDetector ([#95](https://github.com/wata727/tflint/pull/95)) +- Add AwsRouteInvalidVpcPeeringConnectionDetector ([#96](https://github.com/wata727/tflint/pull/96)) +- Add AwsRouteInvalidInstanceDetector ([#97](https://github.com/wata727/tflint/pull/97)) +- Add AwsRouteInvalidNetworkInterfaceDetector ([#98](https://github.com/wata727/tflint/pull/98)) + +### BugFix + +- Fix panic when security groups are on EC2-Classic ([#89](https://github.com/wata727/tflint/pull/89)) + +### Others + +- Transfer from hakamadare/tflint to wata727/tflint ([#84](https://github.com/wata727/tflint/pull/84)) + ## 0.3.3 (2017-04-02) Patch version update. This release includes support for shared credentials. diff --git a/README.md b/README.md index 745585128..783c09c5b 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ If you run `terraform apply` for this template, it will obviously produce an err ## Installation Download binary built for your architecture from [latest releases](https://github.com/wata727/tflint/releases/latest). After downloading, place the binary on the directory on the PATH. An example of installation by command is as follows. ``` -$ wget https://github.com/wata727/tflint/releases/download/v0.3.3/tflint_darwin_amd64.zip +$ wget https://github.com/wata727/tflint/releases/download/v0.3.4/tflint_darwin_amd64.zip $ unzip tflint_darwin_amd64.zip Archive: tflint_darwin_amd64.zip inflating: tflint diff --git a/version.go b/version.go index d9246f137..b353485fa 100644 --- a/version.go +++ b/version.go @@ -1,4 +1,4 @@ package main const Name string = "TFLint" -const Version string = "0.3.3" +const Version string = "0.3.4"