Skip to content

Commit

Permalink
Bump up version to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Jul 28, 2017
1 parent da6e11e commit 7f0347f
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
25 changes: 21 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,32 @@
## 0.4.1 (2017-07-29)

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

### NewDetectors

- Add AwsECSClusterDuplicateNameDetector ([#128](https://github.com/wata727/tflint/pull/128))

### Enhancements

- Support "${terraform.env}" syntax ([#126](https://github.com/wata727/tflint/pull/126))
- Environment state handling ([#127](https://github.com/wata727/tflint/pull/127))

### Others

- Update deps ([#130](https://github.com/wata727/tflint/pull/130))

## 0.4.0 (2017-07-09)

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

## Enhancements
### Enhancements

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

## Others
### Others

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

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

## BugFix
### BugFix

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

## Others
### Others

- Add HCL syntax highlighting in README ([#110](https://github.com/wata727/tflint/pull/110))
- Update README.md ([#111](https://github.com/wata727/tflint/pull/111))
Expand Down
2 changes: 1 addition & 1 deletion 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.4.0/tflint_darwin_amd64.zip
$ wget https://github.com/wata727/tflint/releases/download/v0.4.1/tflint_darwin_amd64.zip
$ unzip tflint_darwin_amd64.zip
Archive: tflint_darwin_amd64.zip
inflating: tflint
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.4.0"
const Version string = "0.4.1"

0 comments on commit 7f0347f

Please sign in to comment.