Skip to content

Commit 2d69809

Browse files
committed
Bump up version to v0.12.0
1 parent 6e15860 commit 2d69809

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 0.12.0 (2022-01-28)
2+
3+
### Enhancements
4+
5+
- [#291](https://github.com/terraform-linters/tflint-ruleset-aws/pull/291): mapping aws_devicefarm ([@PatMyron](https://github.com/PatMyron))
6+
- [#292](https://github.com/terraform-linters/tflint-ruleset-aws/pull/292): mapping aws_fsx ([@PatMyron](https://github.com/PatMyron))
7+
- [#293](https://github.com/terraform-linters/tflint-ruleset-aws/pull/293) [#294](https://github.com/terraform-linters/tflint-ruleset-aws/pull/294) [#300](https://github.com/terraform-linters/tflint-ruleset-aws/pull/300) [#301](https://github.com/terraform-linters/tflint-ruleset-aws/pull/301): Update terraform-provider-aws and aws-sdk submodule
8+
- terraform-provider-aws: v3.70.0 -> v3.74.0
9+
- aws-sdk: v1.42.25 -> v1.42.43
10+
- [#295](https://github.com/terraform-linters/tflint-ruleset-aws/pull/295): mapping aws_memorydb ([@PatMyron](https://github.com/PatMyron))
11+
12+
### Chores
13+
14+
- [#286](https://github.com/terraform-linters/tflint-ruleset-aws/pull/286): Updated missing documentation ([@Rihoj](https://github.com/Rihoj))
15+
- [#290](https://github.com/terraform-linters/tflint-ruleset-aws/pull/290): automating maintenance with Github actions ([@PatMyron](https://github.com/PatMyron))
16+
- [#298](https://github.com/terraform-linters/tflint-ruleset-aws/pull/298): Bump github.com/google/go-cmp from 0.5.6 to 0.5.7
17+
- [#302](https://github.com/terraform-linters/tflint-ruleset-aws/pull/302): git submodule update in automated maintenance ([@PatMyron](https://github.com/PatMyron))
18+
119
## 0.11.0 (2022-01-04)
220

321
Many thanks to @PatMyron, a new maintainer! This release adds 589 SDK-based validation rules, significantly increasing resource coverage.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ You can install the plugin by adding a config to `.tflint.hcl` and running `tfli
1919
```hcl
2020
plugin "aws" {
2121
enabled = true
22-
version = "0.11.0"
22+
version = "0.12.0"
2323
source = "github.com/terraform-linters/tflint-ruleset-aws"
2424
}
2525
```

project/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package project
33
import "fmt"
44

55
// Version is ruleset version
6-
const Version string = "0.11.0"
6+
const Version string = "0.12.0"
77

88
// ReferenceLink returns the rule reference link
99
func ReferenceLink(name string) string {

0 commit comments

Comments
 (0)