Skip to content

Commit

Permalink
Bump up version to v0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Jun 18, 2022
1 parent 2a9690c commit 9f846ae
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## 0.17.0 (2022-06-18)

### Enhancements

- [#174](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/174): autogenerated maintenance
- [#176](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/176): Add support for Lsv3/Lasv3 series
- [#178](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/178): Bump terraform-provider-azurerm to v3.10.0 from v3.4.0

### BugFixes

- [#179](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/179): Accept 8.0 as a correct version on MySQL server

### Chores

- [#170](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/170): Bump goreleaser/goreleaser-action from 2 to 3
- [#172](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/172): automating maintenance with Github actions
- [#175](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/175): Bump github.com/dave/dst from 0.26.2 to 0.27.0
- [#177](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/177): Tweak autogenerated maintenance frequency

## 0.16.0 (2022-05-05)

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ You can install the plugin by adding a config to `.tflint.hcl` and running `tfli
```hcl
plugin "azurerm" {
enabled = true
version = "0.16.0"
version = "0.17.0"
source = "github.com/terraform-linters/tflint-ruleset-azurerm"
}
```
Expand Down
2 changes: 1 addition & 1 deletion integration/basic/result.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"rule": {
"name": "azurerm_virtual_machine_invalid_vm_size",
"severity": "error",
"link": "https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.16.0/docs/rules/azurerm_virtual_machine_invalid_vm_size.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.17.0/docs/rules/azurerm_virtual_machine_invalid_vm_size.md"
},
"message": "\"Standard_DS1_v3\" is an invalid value as vm_size",
"range": {
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.16.0"
const Version string = "0.17.0"

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

0 comments on commit 9f846ae

Please sign in to comment.