From 88faf0814d8162478e5df45a91b2700a9b123b39 Mon Sep 17 00:00:00 2001 From: Josh Fried <112121129+joshfried-aws@users.noreply.github.com> Date: Fri, 17 Nov 2023 10:27:06 -0500 Subject: [PATCH] [Misc]: bumping up all 3.0.1 references to reference 3.0.2 (#416) --- Cargo.lock | 6 +++--- README.md | 2 +- guard-ffi/Cargo.toml | 4 ++-- guard-lambda/Cargo.toml | 4 ++-- guard/Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f8bd8a427..c32494279 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -124,7 +124,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "cfn-guard" -version = "3.0.1" +version = "3.0.2" dependencies = [ "Inflector", "clap", @@ -157,7 +157,7 @@ dependencies = [ [[package]] name = "cfn-guard-ffi" -version = "3.0.1" +version = "3.0.2" dependencies = [ "cfn-guard", "ffi-support", @@ -165,7 +165,7 @@ dependencies = [ [[package]] name = "cfn-guard-lambda" -version = "3.0.1" +version = "3.0.2" dependencies = [ "cfn-guard", "lambda_runtime", diff --git a/README.md b/README.md index 19ea674a5..f0c9b2b9f 100644 --- a/README.md +++ b/README.md @@ -229,7 +229,7 @@ Check `help` to see if it is working. ```bash $ cfn-guard help -cfn-guard 3.0.1 +cfn-guard 3.0.2 Guard is a general-purpose tool that provides a simple declarative syntax to define policy-as-code as rules to validate against any structured hierarchical data (like JSON/YAML). diff --git a/guard-ffi/Cargo.toml b/guard-ffi/Cargo.toml index 7f0d4e887..fd8dba28c 100644 --- a/guard-ffi/Cargo.toml +++ b/guard-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cfn-guard-ffi" -version = "3.0.1" +version = "3.0.2" edition = "2018" authors = ["Diwakar Chakravarthy", "John Tompkins", "Omkar Hegde", "Priya Padmanaban", "aws-cloudformation-developers ", "Tyler Southwick"] description = "AWS CloudFormation Guard is an open-source general-purpose policy-as-code evaluation tool. It provides developers with a simple-to-use, yet powerful and expressive domain-specific language (DSL) to define policies and enables developers to validate JSON- or YAML- formatted structured data with those policies." @@ -14,5 +14,5 @@ keywords = ["policy-as-code", "guard", "cfn-guard", "security", "compliance"] crate-type = ["rlib", "dylib"] [dependencies] -cfn-guard = { version = "3.0.1", path = "../guard" } +cfn-guard = { version = "3.0.2", path = "../guard" } ffi-support = "0.4.4" diff --git a/guard-lambda/Cargo.toml b/guard-lambda/Cargo.toml index 7d2464a89..153e94b1b 100644 --- a/guard-lambda/Cargo.toml +++ b/guard-lambda/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cfn-guard-lambda" -version = "3.0.1" +version = "3.0.2" authors = ["Diwakar Chakravarthy", "John Tompkins", "Omkar Hegde", "Priya Padmanaban", "Bryan Ayala", "Kexiang Wang", "Akshay Rane", "Josh Fried", "aws-cloudformation-developers "] description = "Lambda version of cfn-guard. Checks JSON- or YAML- formatted structured data for policy compliance using a simple, policy-as-code, declarative syntax" @@ -17,4 +17,4 @@ serde_derive = "1.0.92" simple_logger = "4.0.0" log = "0.4.6" tokio = "1.24.2" -cfn-guard = { version = "3.0.1", path = "../guard" } +cfn-guard = { version = "3.0.2", path = "../guard" } diff --git a/guard/Cargo.toml b/guard/Cargo.toml index 8f0969308..81a5800f9 100644 --- a/guard/Cargo.toml +++ b/guard/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cfn-guard" -version = "3.0.1" +version = "3.0.2" edition = "2018" authors = ["Diwakar Chakravarthy", "John Tompkins", "Omkar Hegde", "Priya Padmanaban", "Bryan Ayala", "Kexiang Wang", "Akshay Rane", "Tyler Southwick", "Josh Fried", "aws-cloudformation-developers "]