Skip to content

Commit 5ee511a

Browse files
committed
Bump up version to v0.16.0
1 parent 88aaf72 commit 5ee511a

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 0.16.0 (2022-05-05)
2+
3+
### Enhancements
4+
5+
- [#168](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/168): Bump terraform-provider-azurerm to v3.4.0 from v3.0.2
6+
- [#169](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/169): Add support for Ebdsv5/Ebsv5 series
7+
8+
### Chores
9+
10+
- [#159](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/159): chores: Remove snaker
11+
- [#160](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/160): Fix rule template for rule generator
12+
- [#163](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/163): Bump actions/setup-go from 2 to 3
13+
- [#164](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/164): Bump github.com/hashicorp/hcl/v2 from 2.11.1 to 2.12.0
14+
- [#165](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/165): Bump github.com/hashicorp/hcl/v2 from 2.11.1 to 2.12.0 in /tools
15+
- [#166](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/166): Bump github.com/google/go-cmp from 0.5.7 to 0.5.8
16+
- [#167](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/167): Bump github.com/terraform-linters/tflint-plugin-sdk from 0.10.0 to 0.11.0
17+
118
## 0.15.0 (2022-03-30)
219

320
The minimum supported version of TFLint has changed in this version. TFLint v0.35.0+ is required for this plugin to work.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ You can install the plugin by adding a config to `.tflint.hcl` and running `tfli
1717
```hcl
1818
plugin "azurerm" {
1919
enabled = true
20-
version = "0.15.0"
20+
version = "0.16.0"
2121
source = "github.com/terraform-linters/tflint-ruleset-azurerm"
2222
}
2323
```

integration/basic/result.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"rule": {
55
"name": "azurerm_virtual_machine_invalid_vm_size",
66
"severity": "error",
7-
"link": "https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.15.0/docs/rules/azurerm_virtual_machine_invalid_vm_size.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.16.0/docs/rules/azurerm_virtual_machine_invalid_vm_size.md"
88
},
99
"message": "\"Standard_DS1_v3\" is an invalid value as vm_size",
1010
"range": {

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)