Skip to content

Commit 5c80687

Browse files
committed
Bump up version to 0.5.0
1 parent e16c379 commit 5c80687

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 0.5.0 (2017-10-14)
2+
3+
Minor version update. This release includes environment variable support.
4+
5+
### Enhancements
6+
7+
- Support variables from environment variables ([#147](https://github.com/wata727/tflint/pull/147))
8+
- Support moudle path for v0.10.7 ([#149](https://github.com/wata727/tflint/pull/149))
9+
10+
## Others
11+
12+
- Add Makefile target for creating docker image ([#145](https://github.com/wata727/tflint/pull/145))
13+
- Update Go version ([#146](https://github.com/wata727/tflint/pull/146))
14+
115
## 0.4.3 (2017-09-30)
216

317
Patch version update. This release includes Terraform v0.10.6 supports.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Docker Hub](https://img.shields.io/badge/docker-ready-blue.svg)](https://hub.docker.com/r/wata727/tflint/)
55
[![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE)
66

7-
TFLint is [Terraform](https://www.terraform.io/) linter for detecting errors that can not be detected by `terraform plan`
7+
TFLint is a [Terraform](https://www.terraform.io/) linter for detecting errors that can not be detected by `terraform plan`
88

99
## Why TFLint is Required?
1010
Terraform is a great tool for infrastructure as a code. It generates an execution plan, we can rely on this plan to proceed with development. However, this plan does not verify values used in template. For example, following template is invalid configuration (t1.2xlarge is invalid instance type)
@@ -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.3/tflint_darwin_amd64.zip
28+
$ wget https://github.com/wata727/tflint/releases/download/v0.5.0/tflint_darwin_amd64.zip
2929
$ unzip tflint_darwin_amd64.zip
3030
Archive: tflint_darwin_amd64.zip
3131
inflating: tflint

version.go

Lines changed: 1 addition & 1 deletion
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.3"
4+
const Version string = "0.5.0"

0 commit comments

Comments
 (0)