Skip to content

Commit 7f0347f

Browse files
committed
Bump up version to 0.4.1
1 parent da6e11e commit 7f0347f

File tree

3 files changed

+23
-6
lines changed

3 files changed

+23
-6
lines changed

CHANGELOG.md

+21-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,32 @@
1+
## 0.4.1 (2017-07-29)
2+
3+
Patch version update. This release includes terraform meta information interpolation syntax support.
4+
5+
### NewDetectors
6+
7+
- Add AwsECSClusterDuplicateNameDetector ([#128](https://github.com/wata727/tflint/pull/128))
8+
9+
### Enhancements
10+
11+
- Support "${terraform.env}" syntax ([#126](https://github.com/wata727/tflint/pull/126))
12+
- Environment state handling ([#127](https://github.com/wata727/tflint/pull/127))
13+
14+
### Others
15+
16+
- Update deps ([#130](https://github.com/wata727/tflint/pull/130))
17+
118
## 0.4.0 (2017-07-09)
219

320
Minor version update. This release includes big core API changes.
421

5-
## Enhancements
22+
### Enhancements
623

724
- Overrides module ([#118](https://github.com/wata727/tflint/pull/118))
825
- Add document link and detector name on output ([#122](https://github.com/wata727/tflint/pull/122))
926
- Add Terraform version options ([#123](https://github.com/wata727/tflint/pull/123))
1027
- 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))
1128

12-
## Others
29+
### Others
1330

1431
- Provide abstract HCL access ([#112](https://github.com/wata727/tflint/pull/112))
1532
- Fix override logic ([#117](https://github.com/wata727/tflint/pull/117))
@@ -19,11 +36,11 @@ Minor version update. This release includes big core API changes.
1936

2037
Patch version update. This release includes hotfix for module evaluation.
2138

22-
## BugFix
39+
### BugFix
2340

2441
- DO NOT USE Evaluator :bow: ([#114](https://github.com/wata727/tflint/pull/114))
2542

26-
## Others
43+
### Others
2744

2845
- Add HCL syntax highlighting in README ([#110](https://github.com/wata727/tflint/pull/110))
2946
- Update README.md ([#111](https://github.com/wata727/tflint/pull/111))

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

0 commit comments

Comments
 (0)