Skip to content

Commit df5a518

Browse files
committed
Bump up version to 0.2.0
1 parent 17622ad commit df5a518

File tree

2 files changed

+42
-1
lines changed

2 files changed

+42
-1
lines changed

CHANGELOG.md

+41
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,44 @@
1+
## 0.2.0 (2016-12-24)
2+
3+
Minor version update. This release includes enhancements and several fixes
4+
5+
### New Detectors
6+
7+
- add AWS Instance Invalid AMI deep detector ([#7](https://github.com/wata727/tflint/pull/7))
8+
- add invalid key name deep detector ([#11](https://github.com/wata727/tflint/pull/11))
9+
- add invalid subnet deep detector ([#12](https://github.com/wata727/tflint/pull/12))
10+
- add invalid vpc security group deep detector ([#13](https://github.com/wata727/tflint/pull/13))
11+
- add invalid security group detector for ELB ([#16](https://github.com/wata727/tflint/pull/16))
12+
- add invalid subnet detector for ELB ([#17](https://github.com/wata727/tflint/pull/17))
13+
- add invalid instance detector for ELB ([#18](https://github.com/wata727/tflint/pull/18))
14+
- add invalid security group detector for ALB ([#20](https://github.com/wata727/tflint/pull/20))
15+
- add invalid subnet detector for ALB ([#21](https://github.com/wata727/tflint/pull/21))
16+
- add invalid security group detector for RDS ([#22](https://github.com/wata727/tflint/pull/22))
17+
- add invalid DB subnet group detector for RDS ([#23](https://github.com/wata727/tflint/pull/23))
18+
- add invalid parameter group detector for RDS ([#24](https://github.com/wata727/tflint/pull/24))
19+
- add invalid option group detector for RDS ([#25](https://github.com/wata727/tflint/pull/25))
20+
- add invalid parameter group detector for ElastiCache ([#27](https://github.com/wata727/tflint/pull/27))
21+
- add invalid subnet group detector for ElastiCache ([#28](https://github.com/wata727/tflint/pull/28))
22+
- add invalid security group detector for ElastiCache ([#29](https://github.com/wata727/tflint/pull/29))
23+
24+
### Enhancements
25+
26+
- Support t2 and r4 types ([#5](https://github.com/wata727/tflint/pull/5))
27+
- Improve ineffecient module detector method ([#10](https://github.com/wata727/tflint/pull/10))
28+
- do not call API when target resources are not found ([#15](https://github.com/wata727/tflint/pull/15))
29+
- support list type variables evaluation ([#19](https://github.com/wata727/tflint/pull/19))
30+
31+
### Bug Fixes
32+
33+
- Fix panic deep detecting with module ([#8](https://github.com/wata727/tflint/pull/8))
34+
35+
### Others
36+
37+
- Fix `Fatalf` format in test ([#3](https://github.com/wata727/tflint/pull/3))
38+
- Remove Zero width space in README.md ([#4](https://github.com/wata727/tflint/pull/4))
39+
- Fix typos ([#6](https://github.com/wata727/tflint/pull/6))
40+
- documentation ([#26](https://github.com/wata727/tflint/pull/26))
41+
142
## 0.1.0 (2016-11-27)
243

344
Initial release

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

0 commit comments

Comments
 (0)