Skip to content

Commit

Permalink
Bump up version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Oct 13, 2017
1 parent e16c379 commit 5c80687
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 0.5.0 (2017-10-14)

Minor version update. This release includes environment variable support.

### Enhancements

- Support variables from environment variables ([#147](https://github.com/wata727/tflint/pull/147))
- Support moudle path for v0.10.7 ([#149](https://github.com/wata727/tflint/pull/149))

## Others

- Add Makefile target for creating docker image ([#145](https://github.com/wata727/tflint/pull/145))
- Update Go version ([#146](https://github.com/wata727/tflint/pull/146))

## 0.4.3 (2017-09-30)

Patch version update. This release includes Terraform v0.10.6 supports.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Docker Hub](https://img.shields.io/badge/docker-ready-blue.svg)](https://hub.docker.com/r/wata727/tflint/)
[![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE)

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

## Why TFLint is Required?
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)
Expand All @@ -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.3/tflint_darwin_amd64.zip
$ wget https://github.com/wata727/tflint/releases/download/v0.5.0/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.3"
const Version string = "0.5.0"

0 comments on commit 5c80687

Please sign in to comment.