Skip to content

Commit 1c31b74

Browse files
committed
Bump up version to 0.11.1
1 parent 1fdf077 commit 1c31b74

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 0.11.1 (2019-09-11)
2+
3+
### Chores
4+
5+
- [#429](https://github.com/wata727/tflint/pull/429) [#433](https://github.com/wata727/tflint/pull/433): build: Upgrade to go 1.13 ([@chenrui333](https://github.com/chenrui333))
6+
- [#431](https://github.com/wata727/tflint/pull/431): build: Disable CGO in GoReleaser ([@craigfurman](https://github.com/craigfurman))
7+
18
## 0.11.0 (2019-09-08)
29

310
This release includes major changes to the output format. In particular, third-party tool developers should be aware of changes to the JSON output format. Please see the "Breaking Changes" section for details.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ TFLint finds such errors in advance:
3030
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:
3131

3232
```console
33-
$ wget https://github.com/wata727/tflint/releases/download/v0.11.0/tflint_darwin_amd64.zip
33+
$ wget https://github.com/wata727/tflint/releases/download/v0.11.1/tflint_darwin_amd64.zip
3434
$ unzip tflint_darwin_amd64.zip
3535
Archive: tflint_darwin_amd64.zip
3636
inflating: tflint

integration/basic/result.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"rule": {
55
"name": "aws_route_not_specified_target",
66
"severity": "error",
7-
"link": "https://github.com/wata727/tflint/blob/v0.11.0/docs/rules/aws_route_not_specified_target.md"
7+
"link": "https://github.com/wata727/tflint/blob/v0.11.1/docs/rules/aws_route_not_specified_target.md"
88
},
99
"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.",
1010
"range": {
@@ -24,7 +24,7 @@
2424
"rule": {
2525
"name": "aws_route_specified_multiple_targets",
2626
"severity": "error",
27-
"link": "https://github.com/wata727/tflint/blob/v0.11.0/docs/rules/aws_route_specified_multiple_targets.md"
27+
"link": "https://github.com/wata727/tflint/blob/v0.11.1/docs/rules/aws_route_specified_multiple_targets.md"
2828
},
2929
"message": "More than one routing target specified. It must be one.",
3030
"range": {
@@ -64,7 +64,7 @@
6464
"rule": {
6565
"name": "aws_route_not_specified_target",
6666
"severity": "error",
67-
"link": "https://github.com/wata727/tflint/blob/v0.11.0/docs/rules/aws_route_not_specified_target.md"
67+
"link": "https://github.com/wata727/tflint/blob/v0.11.1/docs/rules/aws_route_not_specified_target.md"
6868
},
6969
"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.",
7070
"range": {

project/meta.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 application version
6-
const Version string = "0.11.0"
6+
const Version string = "0.11.1"
77

88
// ReferenceLink returns the rule reference link
99
func ReferenceLink(name string) string {

0 commit comments

Comments
 (0)