Skip to content

Commit a49900c

Browse files
committed
Bump up version to v0.20.0
1 parent c22b27a commit a49900c

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 0.20.0 (2022-09-08)
2+
3+
The minimum supported version of TFLint has changed in this version. TFLint v0.40.0+ is required for this plugin to work.
4+
5+
### Breaking Changes
6+
7+
- [#207](https://github.com/terraform-linters/tflint-ruleset-google/pull/207): Bump tflint-plugin-sdk to v0.12.0
8+
- [#209](https://github.com/terraform-linters/tflint-ruleset-google/pull/209): Update Magic Modules
9+
- Removed `google_certificate_manager_certificate_invalid_scope` rule
10+
- Removed `google_certificate_manager_certificate_map_entry_invalid_matcher` rule
11+
12+
### Chores
13+
14+
- [#199](https://github.com/terraform-linters/tflint-ruleset-google/pull/199): go 1.19
15+
- [#202](https://github.com/terraform-linters/tflint-ruleset-google/pull/202): Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.20.0 to 2.21.0
16+
- [#204](https://github.com/terraform-linters/tflint-ruleset-google/pull/204) [#208](https://github.com/terraform-linters/tflint-ruleset-google/pull/208): Bump google.golang.org/api from 0.88.0 to 0.95.0
17+
- [#205](https://github.com/terraform-linters/tflint-ruleset-google/pull/205): Bump github.com/hashicorp/hcl/v2 from 2.13.0 to 2.14.0
18+
- [#206](https://github.com/terraform-linters/tflint-ruleset-google/pull/206): build: Use `go-version-file` instead of `go-version`
19+
120
## 0.19.0 (2022-07-31)
221

322
### Enhancements

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ TFLint ruleset plugin for Terraform Google Cloud Platform provider
77

88
## Requirements
99

10-
- TFLint v0.35+
10+
- TFLint v0.40+
1111
- Go v1.19
1212

1313
## Installation
@@ -17,7 +17,7 @@ You can install the plugin by adding a config to `.tflint.hcl` and running `tfli
1717
```hcl
1818
plugin "google" {
1919
enabled = true
20-
version = "0.19.0"
20+
version = "0.20.0"
2121
source = "github.com/terraform-linters/tflint-ruleset-google"
2222
}
2323
```

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.19.0"
6+
const Version string = "0.20.0"
77

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

0 commit comments

Comments
 (0)