Skip to content

Commit

Permalink
Bump up version to 0.19.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Aug 23, 2020
1 parent 4818f86 commit 9705e0c
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ It is a good practice to list the versions where the bug occurred.
Example:
TFLint v0.19.0
TFLint v0.19.1
Terraform v0.13.0
-->
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 0.19.1 (2020-08-23)

### Enhancements

- [#870](https://github.com/terraform-linters/tflint/pull/860): Support custom formats in terraform_naming_convention rule ([@angelyan](https://github.com/angelyan))
- [#885](https://github.com/terraform-linters/tflint/pull/885): plugin: Clarify plugin's incompatible API version errors ([@wata727](https://github.com/wata727))

### BugFixes

- [#884](https://github.com/terraform-linters/tflint/pull/884): terraform_rules: Add workaround for skipping child modules inspection ([@wata727](https://github.com/wata727))

## 0.19.0 (2020-08-17)

TFLint v0.19 relies on and is compatible with Terraform v0.13! 🎉
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ TFLint finds such errors in advance:
You can download the binary built for your architecture from [the latest release](https://github.com/terraform-linters/tflint/releases/latest). The following is an example of installation on macOS:

```console
$ curl --location https://github.com/terraform-linters/tflint/releases/download/v0.19.0/tflint_darwin_amd64.zip --output tflint_darwin_amd64.zip
$ curl --location https://github.com/terraform-linters/tflint/releases/download/v0.19.1/tflint_darwin_amd64.zip --output tflint_darwin_amd64.zip
$ unzip tflint_darwin_amd64.zip
Archive: tflint_darwin_amd64.zip
inflating: tflint
Expand Down
6 changes: 3 additions & 3 deletions integration/basic/result.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"rule": {
"name": "aws_route_not_specified_target",
"severity": "error",
"link": "https://github.com/terraform-linters/tflint/blob/v0.19.0/docs/rules/aws_route_not_specified_target.md"
"link": "https://github.com/terraform-linters/tflint/blob/v0.19.1/docs/rules/aws_route_not_specified_target.md"
},
"message": "The routing target is not specified, each aws_route must contain either egress_only_gateway_id, gateway_id, instance_id, nat_gateway_id, network_interface_id, transit_gateway_id, or vpc_peering_connection_id.",
"range": {
Expand All @@ -24,7 +24,7 @@
"rule": {
"name": "aws_route_specified_multiple_targets",
"severity": "error",
"link": "https://github.com/terraform-linters/tflint/blob/v0.19.0/docs/rules/aws_route_specified_multiple_targets.md"
"link": "https://github.com/terraform-linters/tflint/blob/v0.19.1/docs/rules/aws_route_specified_multiple_targets.md"
},
"message": "More than one routing target specified. It must be one.",
"range": {
Expand Down Expand Up @@ -64,7 +64,7 @@
"rule": {
"name": "aws_route_not_specified_target",
"severity": "error",
"link": "https://github.com/terraform-linters/tflint/blob/v0.19.0/docs/rules/aws_route_not_specified_target.md"
"link": "https://github.com/terraform-linters/tflint/blob/v0.19.1/docs/rules/aws_route_not_specified_target.md"
},
"message": "The routing target is not specified, each aws_route must contain either egress_only_gateway_id, gateway_id, instance_id, nat_gateway_id, network_interface_id, transit_gateway_id, or vpc_peering_connection_id.",
"range": {
Expand Down
2 changes: 1 addition & 1 deletion tflint/meta.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package tflint
import "fmt"

// Version is application version
const Version string = "0.19.0"
const Version string = "0.19.1"

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

0 comments on commit 9705e0c

Please sign in to comment.