Skip to content

Commit cae28a3

Browse files
committed
Bump up version to v0.10.0
1 parent 06b53f4 commit cae28a3

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## 0.10.0 (2021-12-04)
2+
3+
### Enhancements
4+
5+
- [#202](https://github.com/terraform-linters/tflint-ruleset-aws/pull/202): rules: Add acm certificate lifecycle create before destroy rule ([@AleksaC](https://github.com/AleksaC))
6+
- [#208](https://github.com/terraform-linters/tflint-ruleset-aws/pull/208): Bump aws-sdk-go submodule and Terraform provider schema ([@wata727](https://github.com/wata727))
7+
8+
### Chores
9+
10+
- [#199](https://github.com/terraform-linters/tflint-ruleset-aws/pull/199): Bump github.com/zclconf/go-cty from 1.9.1 to 1.10.0
11+
- [#204](https://github.com/terraform-linters/tflint-ruleset-aws/pull/204): Bump github.com/hashicorp/aws-sdk-go-base from 0.7.1 to 1.0.0
12+
- [#209](https://github.com/terraform-linters/tflint-ruleset-aws/pull/209): Bump github.com/aws/aws-sdk-go from 1.41.19 to 1.42.19
13+
114
## 0.9.0 (2021-11-06)
215

316
### Breaking Changes

README.md

+1-1
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.9.0"
22+
version = "0.10.0"
2323
source = "github.com/terraform-linters/tflint-ruleset-aws"
2424
}
2525
```

project/main.go

+1-1
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.9.0"
6+
const Version string = "0.10.0"
77

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

0 commit comments

Comments
 (0)