From 83788fe1430ed519cc6020130dff455ff56c8371 Mon Sep 17 00:00:00 2001 From: Nicolas Moutschen Date: Mon, 14 Jun 2021 19:03:41 +0200 Subject: [PATCH] chore: bump to 0.1.9 --- README.md | 2 +- cfn-lint-serverless/pyproject.toml | 2 +- docs/tflint.md | 4 ++-- examples/tflint/.tflint.hcl | 2 +- tflint-ruleset-aws-serverless/main.go | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7f3d3bb..65bcf43 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.1.8" + version = "0.1.9" source = "github.com/awslabs/serverless-rules" } ``` diff --git a/cfn-lint-serverless/pyproject.toml b/cfn-lint-serverless/pyproject.toml index f018d3e..f6ff7e8 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.1.8" +version = "0.1.9" description = "Serverless rules for cfn-lint" authors = ["Amazon Web Services"] readme = "README.md" diff --git a/docs/tflint.md b/docs/tflint.md index fd7aaa8..33fb792 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.1.8" + version = "0.1.9" 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.1.6" + version = "0.1.9" source = "github.com/awslabs/serverless-rules" } diff --git a/examples/tflint/.tflint.hcl b/examples/tflint/.tflint.hcl index b63f1dc..9be8e44 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.1.8" + # version = "0.1.9" } \ No newline at end of file diff --git a/tflint-ruleset-aws-serverless/main.go b/tflint-ruleset-aws-serverless/main.go index 916ccb0..f0bbb45 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.1.8", + Version: "0.1.9", Rules: rules.Rules, }, })