diff --git a/CHANGELOG.md b/CHANGELOG.md index b4652b44e..c8fa494cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ +## 0.3.2 (2017-03-25) + +Patch version update. This release includes hotfix. + +### BugFix + +- Fix panic when parsing empty list ([#78](https://github.com/wata727/tflint/pull/78)) + +### Others + +- Fix unstable test ([#74](https://github.com/wata727/tflint/pull/74)) +- Update README to reference Homebrew tap ([#75](https://github.com/wata727/tflint/pull/75)) + ## 0.3.1 (2017-03-12) -Minor version update. This release includes support for tfvars. +Patch version update. This release includes support for tfvars. ### Enhancements diff --git a/README.md b/README.md index daf1bd17e..7ce5e4a1e 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.1/tflint_darwin_amd64.zip +$ wget https://github.com/wata727/tflint/releases/download/v0.3.2/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 e000a1de1..f430546b9 100644 --- a/version.go +++ b/version.go @@ -1,4 +1,4 @@ package main const Name string = "TFLint" -const Version string = "0.3.1" +const Version string = "0.3.2"