Skip to content

Commit

Permalink
Bump up version to 0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Apr 23, 2017
1 parent a7e5415 commit bce7b4b
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
## 0.3.5 (2017-04-23)

Patch version update. This release includes new detectors and bugfix for module.

### NewDetectors

- Module source pinned ref check ([#100](https://github.com/wata727/tflint/pull/100))
- Add AwsCloudWatchMetricAlarmInvalidUnitDetector ([#108](https://github.com/wata727/tflint/pull/108))

### Enhancements

- Support F1 instances ([#107](https://github.com/wata727/tflint/pull/107))

### BugFix

- Interpolate module attributes ([#105](https://github.com/wata727/tflint/pull/105))

### Others

- Improve CLI ([#102](https://github.com/wata727/tflint/pull/102))
- Add integration test ([#106](https://github.com/wata727/tflint/pull/106))

## 0.3.4 (2017-04-10)

Patch version update. This release includes new detectors for `aws_route`
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4/tflint_darwin_amd64.zip
$ wget https://github.com/wata727/tflint/releases/download/v0.3.5/tflint_darwin_amd64.zip
$ unzip tflint_darwin_amd64.zip
Archive: tflint_darwin_amd64.zip
inflating: tflint
Expand All @@ -48,7 +48,7 @@ $ brew install tflint
We provide Docker images for each version on [DockerHub](https://hub.docker.com/r/wata727/tflint/). With docker, you can run TFLint without installing it locally.

```
$ docker run -v $(pwd):/data --workdir=/data -t wata727/tflint
$ docker run --rm -v $(pwd):/data --workdir=/data -t wata727/tflint
```

## Quick Start
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main

const Name string = "TFLint"
const Version string = "0.3.4"
const Version string = "0.3.5"

0 comments on commit bce7b4b

Please sign in to comment.