Skip to content

Commit 629c8c1

Browse files
committed
Bump up version to 0.3.0
1 parent 8bfa17b commit 629c8c1

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
## 0.3.0 (2017-02-12)
2+
3+
Minor version update. This relase includes core enhancements for terraform state file.
4+
5+
### NewDetectors
6+
7+
- Add RDS readable password detector ([#46](https://github.com/wata727/tflint/pull/46))
8+
- Add duplicate security group name detector ([#49](https://github.com/wata727/tflint/pull/49))
9+
- Add duplicate ALB name detector ([#52](https://github.com/wata727/tflint/pull/52))
10+
- Add duplicate ELB name detector ([#54](https://github.com/wata727/tflint/pull/54))
11+
- Add duplicate DB Instance Identifier Detector ([#55](https://github.com/wata727/tflint/pull/55))
12+
- Add duplicate ElastiCache Cluster ID detector ([#56](https://github.com/wata727/tflint/pull/56))
13+
14+
### Enhancements
15+
16+
- Interpret TFState ([#48](https://github.com/wata727/tflint/pull/48))
17+
- Add --fast option ([#58](https://github.com/wata727/tflint/pull/58))
18+
19+
### BugFix
20+
21+
- r4.xlarge is valid type ([#43](https://github.com/wata727/tflint/pull/43))
22+
23+
### Others
24+
25+
- Add sideci.yml ([#42](https://github.com/wata727/tflint/pull/42))
26+
- Update README ([#50](https://github.com/wata727/tflint/pull/50))
27+
- SideCI Settings ([#57](https://github.com/wata727/tflint/pull/57))
28+
129
## 0.2.1 (2017-01-10)
230

331
Patch version update. This release includes new argument options.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ If you run `terraform apply` for this template, it will obviously produce an err
2424
## Installation
2525
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.
2626
```
27-
$ wget https://github.com/wata727/tflint/releases/download/v0.2.1/tflint_darwin_amd64.zip
27+
$ wget https://github.com/wata727/tflint/releases/download/v0.3.0/tflint_darwin_amd64.zip
2828
$ unzip tflint_darwin_amd64.zip
2929
Archive: tflint_darwin_amd64.zip
3030
inflating: tflint
@@ -71,6 +71,7 @@ Please show `tflint --help`
7171
--aws-region set AWS region used in deep check mode.
7272
-d, --debug enable debug mode.
7373
--error-with-issues return error code when issue exists.
74+
--fast ignore slow rules. currently, ignore only 'aws_instance_invalid_ami'
7475
```
7576

7677
## Configuration

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.2.1"
4+
const Version string = "0.3.0"

0 commit comments

Comments
 (0)