From 6af41235cce7d27442ae868725af90680e562b07 Mon Sep 17 00:00:00 2001 From: Nicolas Moutschen Date: Thu, 10 Jun 2021 11:05:07 +0200 Subject: [PATCH] chore: bump to 0.1.8 --- README.md | 2 +- cfn-lint-serverless/pyproject.toml | 2 +- docs/tflint.md | 2 +- examples/tflint/.tflint.hcl | 2 +- tflint-ruleset-aws-serverless/main.go | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7e9af88..7f3d3bb 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.7" + version = "0.1.8" source = "github.com/awslabs/serverless-rules" } ``` diff --git a/cfn-lint-serverless/pyproject.toml b/cfn-lint-serverless/pyproject.toml index d1b011e..f018d3e 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.7" +version = "0.1.8" description = "Serverless rules for cfn-lint" authors = ["Amazon Web Services"] readme = "README.md" diff --git a/docs/tflint.md b/docs/tflint.md index ac80654..fd7aaa8 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.7" + version = "0.1.8" source = "github.com/awslabs/serverless-rules" } ``` diff --git a/examples/tflint/.tflint.hcl b/examples/tflint/.tflint.hcl index e10af02..b63f1dc 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.7" + # version = "0.1.8" } \ No newline at end of file diff --git a/tflint-ruleset-aws-serverless/main.go b/tflint-ruleset-aws-serverless/main.go index 16a236d..916ccb0 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.7", + Version: "0.1.8", Rules: rules.Rules, }, })