Skip to content

Commit 3f60c75

Browse files
committed
Bump up version to v0.16.0
1 parent c483b9f commit 3f60c75

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.16.0 (2022-03-27)
2+
3+
The minimum supported version of TFLint has changed in this version. TFLint v0.35.0+ is required for this plugin to work.
4+
5+
### Breaking Changes
6+
7+
- [#155](https://github.com/terraform-linters/tflint-ruleset-google/pull/155): Bump tflint-plugin-sdk for gRPC-based new plugin system
8+
9+
### Enhancements
10+
11+
- [#158](https://github.com/terraform-linters/tflint-ruleset-google/pull/158): Update Magic Modules
12+
13+
### Chores
14+
15+
- [#151](https://github.com/terraform-linters/tflint-ruleset-google/pull/151): Bump actions/checkout from 2 to 3
16+
- [#154](https://github.com/terraform-linters/tflint-ruleset-google/pull/154): go 1.18
17+
- [#156](https://github.com/terraform-linters/tflint-ruleset-google/pull/156): Bump google.golang.org/api from 0.60.0 to 0.73.0
18+
- [#157](https://github.com/terraform-linters/tflint-ruleset-google/pull/157): Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.9.0 to 2.12.0
19+
120
## 0.15.0 (2021-12-07)
221

322
### Breaking Changes

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.30+
10+
- TFLint v0.35+
1111
- Go v1.18
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.15.0"
20+
version = "0.16.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.15.0"
6+
const Version string = "0.16.0"
77

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

0 commit comments

Comments
 (0)