Skip to content

Commit

Permalink
Bump up version to 0.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Oct 12, 2019
1 parent 4f2cf62 commit 98b9b63
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .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.12.0
Terraform v0.12.6
TFLint v0.12.1
Terraform v0.12.10
-->
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.12.1 (2019-10-12)

### Enhancements

- [#467](https://github.com/wata727/tflint/pull/467): Bump github.com/mattn/go-colorable from 0.1.2 to 0.1.4
- [#476](https://github.com/wata727/tflint/pull/476): Bump github.com/hashicorp/aws-sdk-go-base from 0.3.0 to 0.4.0
- [#482](https://github.com/wata727/tflint/pull/482): TFLint is now compatible with Terraform v0.12.10
- See https://github.com/hashicorp/terraform/releases/tag/v0.12.10
- Support new built-in functions: `parseint` and `cidrsubnets`
- [#484](https://github.com/wata727/tflint/pull/484): Bump terraform-provider-aws from v2.30.0 to v2.32.0

### Chores

- [#471](https://github.com/wata727/tflint/pull/471): Bump TFLint version in issue template ([@abitrolly](https://github.com/abitrolly))
- [#474](https://github.com/wata727/tflint/pull/474): Switch to HCL 2.0 in the HCL repository ([@explodingcamera](https://github.com/explodingcamera))
- [#487](https://github.com/wata727/tflint/pull/487): Test tools in GitHub Actions

## 0.12.0 (2019-09-29)

This release includes an experimental Language Server Procotol support. Using LSP makes it easy to integrate TFLint with your favorite editor. Currently, only diagnostics are provided.
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/wata727/tflint/releases/latest). The following is an example of installation on macOS:

```console
$ wget https://github.com/wata727/tflint/releases/download/v0.12.0/tflint_darwin_amd64.zip
$ wget https://github.com/wata727/tflint/releases/download/v0.12.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 @@ -4,7 +4,7 @@
"rule": {
"name": "aws_route_not_specified_target",
"severity": "error",
"link": "https://github.com/wata727/tflint/blob/v0.12.0/docs/rules/aws_route_not_specified_target.md"
"link": "https://github.com/wata727/tflint/blob/v0.12.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/wata727/tflint/blob/v0.12.0/docs/rules/aws_route_specified_multiple_targets.md"
"link": "https://github.com/wata727/tflint/blob/v0.12.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/wata727/tflint/blob/v0.12.0/docs/rules/aws_route_not_specified_target.md"
"link": "https://github.com/wata727/tflint/blob/v0.12.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.12.0"
const Version string = "0.12.1"

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

0 comments on commit 98b9b63

Please sign in to comment.