Skip to content

Commit 677f9f1

Browse files
committed
Bump up version to 0.3.4
1 parent 95ef70e commit 677f9f1

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## 0.3.4 (2017-04-10)
2+
3+
Patch version update. This release includes new detectors for `aws_route`
4+
5+
### NewDetectors
6+
7+
- Add AwsRouteInvalidRouteTableDetector ([#90](https://github.com/wata727/tflint/pull/90))
8+
- Add AwsRouteNotSpecifiedTargetDetector ([#91](https://github.com/wata727/tflint/pull/91))
9+
- Add AwsRouteSpecifiedMultipleTargetsDetector ([#92](https://github.com/wata727/tflint/pull/92))
10+
- Add AwsRouteInvalidGatewayDetector ([#93](https://github.com/wata727/tflint/pull/93))
11+
- Add AwsRouteInvalidEgressOnlyGatewayDetector ([#94](https://github.com/wata727/tflint/pull/94))
12+
- Add AwsRouteInvalidNatGatewayDetector ([#95](https://github.com/wata727/tflint/pull/95))
13+
- Add AwsRouteInvalidVpcPeeringConnectionDetector ([#96](https://github.com/wata727/tflint/pull/96))
14+
- Add AwsRouteInvalidInstanceDetector ([#97](https://github.com/wata727/tflint/pull/97))
15+
- Add AwsRouteInvalidNetworkInterfaceDetector ([#98](https://github.com/wata727/tflint/pull/98))
16+
17+
### BugFix
18+
19+
- Fix panic when security groups are on EC2-Classic ([#89](https://github.com/wata727/tflint/pull/89))
20+
21+
### Others
22+
23+
- Transfer from hakamadare/tflint to wata727/tflint ([#84](https://github.com/wata727/tflint/pull/84))
24+
125
## 0.3.3 (2017-04-02)
226

327
Patch version update. This release includes support for shared credentials.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ If you run `terraform apply` for this template, it will obviously produce an err
2525
## Installation
2626
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.
2727
```
28-
$ wget https://github.com/wata727/tflint/releases/download/v0.3.3/tflint_darwin_amd64.zip
28+
$ wget https://github.com/wata727/tflint/releases/download/v0.3.4/tflint_darwin_amd64.zip
2929
$ unzip tflint_darwin_amd64.zip
3030
Archive: tflint_darwin_amd64.zip
3131
inflating: tflint

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package main
22

33
const Name string = "TFLint"
4-
const Version string = "0.3.3"
4+
const Version string = "0.3.4"

0 commit comments

Comments
 (0)