Skip to content

Commit 45edc46

Browse files
committed
Bump up version to 0.4.0
1 parent af495a0 commit 45edc46

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 0.4.0 (2017-07-09)
2+
3+
Minor version update. This release includes big core API changes.
4+
5+
## Enhancements
6+
7+
- Overrides module ([#118](https://github.com/wata727/tflint/pull/118))
8+
- Add document link and detector name on output ([#122](https://github.com/wata727/tflint/pull/122))
9+
- Add Terraform version options ([#123](https://github.com/wata727/tflint/pull/123))
10+
- Report `aws_instance_not_specified_iam_profile` only when `terraform_version` is less than 0.8.8 ([#124](https://github.com/wata727/tflint/pull/124))
11+
12+
## Others
13+
14+
- Provide abstract HCL access ([#112](https://github.com/wata727/tflint/pull/112))
15+
- Fix override logic ([#117](https://github.com/wata727/tflint/pull/117))
16+
- Fix some output messages and documentation ([#125](https://github.com/wata727/tflint/pull/125))
17+
118
## 0.3.6 (2017-06-05)
219

320
Patch version update. This release includes hotfix for module evaluation.

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

0 commit comments

Comments
 (0)