Skip to content

Commit

Permalink
chore: bump to 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nmoutschen committed Nov 16, 2021
1 parent c51dd74 commit 3fbc04a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ You can enable the Serverless Rules plugin by adding a plugin section in the `.t
```terraform
plugin "aws-serverless" {
enabled = true
version = "0.3.0"
version = "0.3.1"
source = "github.com/awslabs/serverless-rules"
}
```
Expand Down
2 changes: 1 addition & 1 deletion cfn-lint-serverless/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cfn_lint_serverless"
version = "0.3.0"
version = "0.3.1"
description = "Serverless rules for cfn-lint"
authors = ["Amazon Web Services"]
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions docs/tflint.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ You can enable the Serverless Rules plugin by adding a plugin section in the `.t
```terraform
plugin "aws-serverless" {
enabled = true
version = "0.3.0"
version = "0.3.1"
source = "github.com/awslabs/serverless-rules"
}
```
Expand Down Expand Up @@ -76,7 +76,7 @@ Rules in `tflint` can be disabled either through the `--disable-rule` command-li
```terraform
plugin "aws-serverless" {
enabled = true
version = "0.3.0"
version = "0.3.1"
source = "github.com/awslabs/serverless-rules"
}

Expand Down
2 changes: 1 addition & 1 deletion examples/tflint/.tflint.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ plugin "aws-serverless" {
enabled = true
# Uncomment those lines if you are using tflint 0.29 or later
# source = "github.com/awslabs/serverless-rules"
# version = "0.3.0"
# version = "0.3.1"
}
2 changes: 1 addition & 1 deletion tflint-ruleset-aws-serverless/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ func main() {
plugin.Serve(&plugin.ServeOpts{
RuleSet: &tflint.BuiltinRuleSet{
Name: "aws-serverless",
Version: "0.3.0",
Version: "0.3.1",
Rules: rules.Rules,
},
})
Expand Down

0 comments on commit 3fbc04a

Please sign in to comment.