Skip to content

Commit c34979e

Browse files
committed
Bump up version to v0.9.0
1 parent 19d4edf commit c34979e

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.9.0 (2021-11-06)
2+
3+
### Breaking Changes
4+
5+
- [#198](https://github.com/terraform-linters/tflint-ruleset-aws/pull/198): build: Remove unsupported build targets ([@wata727](https://github.com/wata727))
6+
7+
### Enhancements
8+
9+
- [#197](https://github.com/terraform-linters/tflint-ruleset-aws/pull/197): Bump aws-sdk-go submodule and Terraform provider schema ([@wata727](https://github.com/wata727))
10+
11+
### BugFixes
12+
13+
- [#195](https://github.com/terraform-linters/tflint-ruleset-aws/pull/195): rules: Use EmitIssueOnExpr when emitting an issue for an expression ([@wata727](https://github.com/wata727))
14+
15+
### Chores
16+
17+
- [#196](https://github.com/terraform-linters/tflint-ruleset-aws/pull/196): Bump github.com/aws/aws-sdk-go from 1.40.54 to 1.41.19
18+
119
## 0.8.0 (2021-10-11)
220

321
### Enhancements

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.8.0"
22+
version = "0.9.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.8.0"
6+
const Version string = "0.9.0"
77

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

0 commit comments

Comments
 (0)