diff --git a/README.md b/README.md index 8f92135..23212c7 100644 --- a/README.md +++ b/README.md @@ -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" } ``` diff --git a/cfn-lint-serverless/pyproject.toml b/cfn-lint-serverless/pyproject.toml index 269c779..787a76c 100644 --- a/cfn-lint-serverless/pyproject.toml +++ b/cfn-lint-serverless/pyproject.toml @@ -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" diff --git a/docs/tflint.md b/docs/tflint.md index ea7d759..221d0eb 100644 --- a/docs/tflint.md +++ b/docs/tflint.md @@ -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" } ``` @@ -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" } diff --git a/examples/tflint/.tflint.hcl b/examples/tflint/.tflint.hcl index de3be38..172870f 100644 --- a/examples/tflint/.tflint.hcl +++ b/examples/tflint/.tflint.hcl @@ -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" } \ No newline at end of file diff --git a/tflint-ruleset-aws-serverless/main.go b/tflint-ruleset-aws-serverless/main.go index c1c6566..0a307e5 100644 --- a/tflint-ruleset-aws-serverless/main.go +++ b/tflint-ruleset-aws-serverless/main.go @@ -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, }, })