Skip to content

Commit

Permalink
Bump up version to v0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Sep 2, 2021
1 parent f59ea09 commit 3c32775
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 0.7.1 (2021-09-03)

### BugFixes

- [#176](https://github.com/terraform-linters/tflint-ruleset-aws/pull/176): rules: Fix false positive for IAM policy document without Sid ([@wata727](https://github.com/wata727))
- [#178](https://github.com/terraform-linters/tflint-ruleset-aws/pull/178): rules: Fix an error when policy is not evaluable

### Chores

- [#175](https://github.com/terraform-linters/tflint-ruleset-aws/pull/175): rules: Fix broken `aws_lambda_function_deprecated_runtime` test ([@wata727](https://github.com/wata727))

## 0.7.0 (2021-08-28)

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ You can install the plugin by adding a config to `.tflint.hcl` and running `tfli
```hcl
plugin "aws" {
enabled = true
version = "0.7.0"
version = "0.7.1"
source = "github.com/terraform-linters/tflint-ruleset-aws"
}
```
Expand Down
2 changes: 1 addition & 1 deletion project/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package project
import "fmt"

// Version is ruleset version
const Version string = "0.7.0"
const Version string = "0.7.1"

// ReferenceLink returns the rule reference link
func ReferenceLink(name string) string {
Expand Down

0 comments on commit 3c32775

Please sign in to comment.