From e6bafe4f4760f7d9954c7f13ecdae232ccdfb588 Mon Sep 17 00:00:00 2001 From: Paul Sastrasinh Date: Tue, 28 Feb 2023 12:42:29 +0900 Subject: [PATCH] release: 0.3.7 --- Cargo.lock | 12 ++++++------ clang-tidy-sarif/Cargo.toml | 4 ++-- clang-tidy-sarif/src/bin.rs | 2 +- clippy-sarif/Cargo.toml | 4 ++-- clippy-sarif/src/bin.rs | 2 +- hadolint-sarif/Cargo.toml | 4 ++-- hadolint-sarif/src/bin.rs | 2 +- sarif-fmt/Cargo.toml | 4 ++-- sarif-fmt/src/bin.rs | 2 +- serde-sarif/Cargo.toml | 2 +- serde-sarif/src/lib.rs | 2 +- shellcheck-sarif/Cargo.toml | 4 ++-- shellcheck-sarif/src/bin.rs | 2 +- 13 files changed, 23 insertions(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f5dd5984..015bb2cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -73,7 +73,7 @@ checksum = "e9f73505338f7d905b19d18738976aae232eb46b8efc15554ffc56deb5d9ebe4" [[package]] name = "clang-tidy-sarif" -version = "0.3.6" +version = "0.3.7" dependencies = [ "anyhow", "clap", @@ -121,7 +121,7 @@ dependencies = [ [[package]] name = "clippy-sarif" -version = "0.3.6" +version = "0.3.7" dependencies = [ "anyhow", "clap", @@ -264,7 +264,7 @@ dependencies = [ [[package]] name = "hadolint-sarif" -version = "0.3.6" +version = "0.3.7" dependencies = [ "anyhow", "clap", @@ -491,7 +491,7 @@ checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" [[package]] name = "sarif-fmt" -version = "0.3.6" +version = "0.3.7" dependencies = [ "anyhow", "clap", @@ -550,7 +550,7 @@ dependencies = [ [[package]] name = "serde-sarif" -version = "0.3.6" +version = "0.3.7" dependencies = [ "anyhow", "cargo_metadata", @@ -603,7 +603,7 @@ dependencies = [ [[package]] name = "shellcheck-sarif" -version = "0.3.6" +version = "0.3.7" dependencies = [ "anyhow", "clap", diff --git a/clang-tidy-sarif/Cargo.toml b/clang-tidy-sarif/Cargo.toml index 606c7721..0bcb0e3e 100644 --- a/clang-tidy-sarif/Cargo.toml +++ b/clang-tidy-sarif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clang-tidy-sarif" -version = "0.3.6" +version = "0.3.7" authors = ["Paul Sastrasinh "] edition = "2018" description = "Convert clang-tidy output to SARIF" @@ -21,7 +21,7 @@ path = "src/bin.rs" [dependencies] anyhow = "1.0.69" -serde-sarif = { path = "../serde-sarif", version = "0.3.6", features = ["clang-tidy-converters"] } +serde-sarif = { path = "../serde-sarif", version = "0.3.7", features = ["clang-tidy-converters"] } clap = { version = "4.1.7", features = ["derive"] } duct = "0.13.6" diff --git a/clang-tidy-sarif/src/bin.rs b/clang-tidy-sarif/src/bin.rs index f855752e..56ef3dc3 100644 --- a/clang-tidy-sarif/src/bin.rs +++ b/clang-tidy-sarif/src/bin.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/clang-tidy-sarif/0.3.6")] +#![doc(html_root_url = "https://docs.rs/clang-tidy-sarif/0.3.7")] //! This crate provides a command line tool to convert `clang-tidy` diagnostic //! output into SARIF. diff --git a/clippy-sarif/Cargo.toml b/clippy-sarif/Cargo.toml index 918e24d1..d557a36b 100644 --- a/clippy-sarif/Cargo.toml +++ b/clippy-sarif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy-sarif" -version = "0.3.6" +version = "0.3.7" authors = ["Paul Sastrasinh "] edition = "2018" description = "Convert clippy output to SARIF" @@ -21,7 +21,7 @@ path = "src/bin.rs" [dependencies] anyhow = "1.0.69" -serde-sarif = { path = "../serde-sarif", version = "0.3.6", features = ["clippy-converters"] } +serde-sarif = { path = "../serde-sarif", version = "0.3.7", features = ["clippy-converters"] } clap = { version = "4.1.7", features = ["derive"] } [dev-dependencies] diff --git a/clippy-sarif/src/bin.rs b/clippy-sarif/src/bin.rs index 4e066b4e..753692df 100644 --- a/clippy-sarif/src/bin.rs +++ b/clippy-sarif/src/bin.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/clippy-sarif/0.3.6")] +#![doc(html_root_url = "https://docs.rs/clippy-sarif/0.3.7")] //! This crate provides a command line tool to convert `cargo clippy` diagnostic //! output into SARIF. diff --git a/hadolint-sarif/Cargo.toml b/hadolint-sarif/Cargo.toml index fb706ef3..176d98af 100644 --- a/hadolint-sarif/Cargo.toml +++ b/hadolint-sarif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hadolint-sarif" -version = "0.3.6" +version = "0.3.7" authors = ["Paul Sastrasinh "] edition = "2018" description = "Convert hadolint output to SARIF" @@ -21,7 +21,7 @@ path = "src/bin.rs" [dependencies] anyhow = "1.0.69" -serde-sarif = { path = "../serde-sarif", version = "0.3.6", features = ["hadolint-converters"] } +serde-sarif = { path = "../serde-sarif", version = "0.3.7", features = ["hadolint-converters"] } clap = { version = "4.1.7", features = ["derive"] } [dev-dependencies] diff --git a/hadolint-sarif/src/bin.rs b/hadolint-sarif/src/bin.rs index b75783a3..91c235b4 100644 --- a/hadolint-sarif/src/bin.rs +++ b/hadolint-sarif/src/bin.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hadolint-sarif/0.3.6")] +#![doc(html_root_url = "https://docs.rs/hadolint-sarif/0.3.7")] //! This crate provides a command line tool to convert `hadolint` diagnostic //! output into SARIF. diff --git a/sarif-fmt/Cargo.toml b/sarif-fmt/Cargo.toml index 68ae5362..93db2e19 100644 --- a/sarif-fmt/Cargo.toml +++ b/sarif-fmt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sarif-fmt" -version = "0.3.6" +version = "0.3.7" authors = ["Paul Sastrasinh "] edition = "2018" description = "View (pretty print) SARIF files in terminal" @@ -23,7 +23,7 @@ path = "src/bin.rs" anyhow = "1.0.69" codespan-reporting = "0.11.1" serde_json = "1.0.93" -serde-sarif = { path = "../serde-sarif", version = "0.3.6" } +serde-sarif = { path = "../serde-sarif", version = "0.3.7" } clap = { version = "4.1.7", features = ["derive"] } [dev-dependencies] diff --git a/sarif-fmt/src/bin.rs b/sarif-fmt/src/bin.rs index 398f45dd..3ebe2fac 100644 --- a/sarif-fmt/src/bin.rs +++ b/sarif-fmt/src/bin.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/sarif-fmt/0.3.6")] +#![doc(html_root_url = "https://docs.rs/sarif-fmt/0.3.7")] #![recursion_limit = "256"] //! # WARNING: VERY UNSTABLE (EARLY IMPLEMENTATION) //! diff --git a/serde-sarif/Cargo.toml b/serde-sarif/Cargo.toml index a303c676..264914d7 100644 --- a/serde-sarif/Cargo.toml +++ b/serde-sarif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde-sarif" -version = "0.3.6" +version = "0.3.7" authors = ["Paul Sastrasinh "] edition = "2018" description = "Serde serialization for SARIF files" diff --git a/serde-sarif/src/lib.rs b/serde-sarif/src/lib.rs index 3da57303..0af6e4df 100644 --- a/serde-sarif/src/lib.rs +++ b/serde-sarif/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/serde-sarif/0.3.6")] +#![doc(html_root_url = "https://docs.rs/serde-sarif/0.3.7")] //! # WARNING: VERY UNSTABLE (EARLY IMPLEMENTATION) //! diff --git a/shellcheck-sarif/Cargo.toml b/shellcheck-sarif/Cargo.toml index f9ed6c75..df00c535 100644 --- a/shellcheck-sarif/Cargo.toml +++ b/shellcheck-sarif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shellcheck-sarif" -version = "0.3.6" +version = "0.3.7" authors = ["Paul Sastrasinh "] edition = "2018" description = "Convert shellcheck output to SARIF" @@ -21,7 +21,7 @@ path = "src/bin.rs" [dependencies] anyhow = "1.0.69" -serde-sarif = { path = "../serde-sarif", version = "0.3.6", features = ["shellcheck-converters"] } +serde-sarif = { path = "../serde-sarif", version = "0.3.7", features = ["shellcheck-converters"] } clap = { version = "4.1.7", features = ["derive"] } [dev-dependencies] diff --git a/shellcheck-sarif/src/bin.rs b/shellcheck-sarif/src/bin.rs index 449ed9d4..f839cdef 100644 --- a/shellcheck-sarif/src/bin.rs +++ b/shellcheck-sarif/src/bin.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/shellcheck-sarif/0.3.6")] +#![doc(html_root_url = "https://docs.rs/shellcheck-sarif/0.3.7")] //! This crate provides a command line tool to convert `shellcheck` diagnostic //! output into SARIF.