Skip to content

Commit 83788fe

Browse files
committed
chore: bump to 0.1.9
1 parent d5fd9be commit 83788fe

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ You can enable the Serverless Rules plugin by adding a plugin section in the `.t
4141
```terraform
4242
plugin "aws-serverless" {
4343
enabled = true
44-
version = "0.1.8"
44+
version = "0.1.9"
4545
source = "github.com/awslabs/serverless-rules"
4646
}
4747
```

cfn-lint-serverless/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "cfn_lint_serverless"
3-
version = "0.1.8"
3+
version = "0.1.9"
44
description = "Serverless rules for cfn-lint"
55
authors = ["Amazon Web Services"]
66
readme = "README.md"

docs/tflint.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You can enable the Serverless Rules plugin by adding a plugin section in the `.t
1010
```terraform
1111
plugin "aws-serverless" {
1212
enabled = true
13-
version = "0.1.8"
13+
version = "0.1.9"
1414
source = "github.com/awslabs/serverless-rules"
1515
}
1616
```
@@ -76,7 +76,7 @@ Rules in `tflint` can be disabled either through the `--disable-rule` command-li
7676
```terraform
7777
plugin "aws-serverless" {
7878
enabled = true
79-
version = "0.1.6"
79+
version = "0.1.9"
8080
source = "github.com/awslabs/serverless-rules"
8181
}
8282

examples/tflint/.tflint.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ plugin "aws-serverless" {
66
enabled = true
77
# Uncomment those lines if you are using tflint 0.29 or later
88
# source = "github.com/awslabs/serverless-rules"
9-
# version = "0.1.8"
9+
# version = "0.1.9"
1010
}

tflint-ruleset-aws-serverless/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ func main() {
1010
plugin.Serve(&plugin.ServeOpts{
1111
RuleSet: &tflint.BuiltinRuleSet{
1212
Name: "aws-serverless",
13-
Version: "0.1.8",
13+
Version: "0.1.9",
1414
Rules: rules.Rules,
1515
},
1616
})

0 commit comments

Comments
 (0)