Skip to content

Commit

Permalink
Bump up version to 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed May 29, 2019
1 parent ab9ed95 commit 8266cb9
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 0.8.1 (2019-05-30)

### Enhancements

- [#277](https://github.com/wata727/tflint/pull/277): Ignore annotation support.
- `tflint-ignore: rule_name` annotation is now availble. See [README.md](https://github.com/wata727/tflint/blob/v0.8.1/README.md#rules).

### BugFixes

- [#293](https://github.com/wata727/tflint/pull/293): Fix false negatives when `aws_instance_default_standard_volume` rule checks `dynamic` blocks.
- [#297](https://github.com/wata727/tflint/pull/297): Fix panic when checking whether an expression is null.

### Others

- [#292](https://github.com/wata727/tflint/pull/292): Migrating to Go Modules.

## 0.8.0 (2019-05-25)

This release includes major changes due to being dependent on Terraform v0.12 internal API. While we try to keep backward compatibility as much as possible, it does include some breaking changes.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Result: 2 issues (1 errors , 0 warnings , 1 notices)
You can download the binary built for your architecture from [the latest release](https://github.com/wata727/tflint/releases/latest). The following is an example of installation on macOS:

```
$ wget https://github.com/wata727/tflint/releases/download/v0.8.0/tflint_darwin_amd64.zip
$ wget https://github.com/wata727/tflint/releases/download/v0.8.1/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 @@ -5,15 +5,15 @@
"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.",
"line": 1,
"file": "template.tf",
"link": "https://github.com/wata727/tflint/blob/v0.8.0/docs/rules/aws_route_not_specified_target.md"
"link": "https://github.com/wata727/tflint/blob/v0.8.1/docs/rules/aws_route_not_specified_target.md"
},
{
"detector": "aws_route_specified_multiple_targets",
"type": "ERROR",
"message": "More than one routing target specified. It must be one.",
"line": 6,
"file": "template.tf",
"link": "https://github.com/wata727/tflint/blob/v0.8.0/docs/rules/aws_route_specified_multiple_targets.md"
"link": "https://github.com/wata727/tflint/blob/v0.8.1/docs/rules/aws_route_specified_multiple_targets.md"
},
{
"detector": "aws_cloudwatch_metric_alarm_invalid_unit",
Expand All @@ -29,6 +29,6 @@
"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.",
"line": 27,
"file": "template.tf",
"link": "https://github.com/wata727/tflint/blob/v0.8.0/docs/rules/aws_route_not_specified_target.md"
"link": "https://github.com/wata727/tflint/blob/v0.8.1/docs/rules/aws_route_not_specified_target.md"
}
]
2 changes: 1 addition & 1 deletion project/meta.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package project
import "fmt"

// Version is application version
const Version string = "0.8.0"
const Version string = "0.8.1"

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

0 comments on commit 8266cb9

Please sign in to comment.