Skip to content

Commit 42ef15e

Browse files
committed
Bump up version to 0.4.2
1 parent 70eba44 commit 42ef15e

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 0.4.2 (2017-08-03)
2+
3+
Patch version update. This release includes a hotfix.
4+
5+
### BugFix
6+
7+
- Fix panic for integer variables interpolation ([#131](https://github.com/wata727/tflint/pull/131))
8+
19
## 0.4.1 (2017-07-29)
210

311
Patch version update. This release includes terraform meta information interpolation syntax support.

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.4.1/tflint_darwin_amd64.zip
28+
$ wget https://github.com/wata727/tflint/releases/download/v0.4.2/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.4.1"
4+
const Version string = "0.4.2"

0 commit comments

Comments
 (0)