From 11c33a53f6ffeaed736856b86fb6b7b09fabdfd8 Mon Sep 17 00:00:00 2001 From: Paul Sastrasinh Date: Thu, 7 Sep 2023 09:55:43 +0900 Subject: [PATCH] release: 0.4.2 --- 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 ade07e35..44d1b8ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -115,7 +115,7 @@ dependencies = [ [[package]] name = "clang-tidy-sarif" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "clap", @@ -166,7 +166,7 @@ checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" [[package]] name = "clippy-sarif" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "clap", @@ -294,7 +294,7 @@ dependencies = [ [[package]] name = "hadolint-sarif" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "clap", @@ -452,7 +452,7 @@ checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" [[package]] name = "sarif-fmt" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "clap", @@ -511,7 +511,7 @@ dependencies = [ [[package]] name = "serde-sarif" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "cargo_metadata", @@ -564,7 +564,7 @@ dependencies = [ [[package]] name = "shellcheck-sarif" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "clap", diff --git a/clang-tidy-sarif/Cargo.toml b/clang-tidy-sarif/Cargo.toml index cf38b196..a644cb91 100644 --- a/clang-tidy-sarif/Cargo.toml +++ b/clang-tidy-sarif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clang-tidy-sarif" -version = "0.4.1" +version = "0.4.2" authors = ["Paul Sastrasinh "] edition = "2018" description = "Convert clang-tidy output to SARIF" @@ -21,7 +21,7 @@ path = "src/bin.rs" [dependencies] anyhow = "1.0.75" -serde-sarif = { path = "../serde-sarif", version = "0.4.1", features = ["clang-tidy-converters"] } +serde-sarif = { path = "../serde-sarif", version = "0.4.2", features = ["clang-tidy-converters"] } clap = { version = "4.4.2", features = ["derive"] } duct = "0.13.6" diff --git a/clang-tidy-sarif/src/bin.rs b/clang-tidy-sarif/src/bin.rs index 33cc8dd0..31f2d233 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.4.1")] +#![doc(html_root_url = "https://docs.rs/clang-tidy-sarif/0.4.2")] //! 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 d236bb5c..9ad43733 100644 --- a/clippy-sarif/Cargo.toml +++ b/clippy-sarif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy-sarif" -version = "0.4.1" +version = "0.4.2" authors = ["Paul Sastrasinh "] edition = "2018" description = "Convert clippy output to SARIF" @@ -21,7 +21,7 @@ path = "src/bin.rs" [dependencies] anyhow = "1.0.75" -serde-sarif = { path = "../serde-sarif", version = "0.4.1", features = ["clippy-converters"] } +serde-sarif = { path = "../serde-sarif", version = "0.4.2", features = ["clippy-converters"] } clap = { version = "4.4.2", features = ["derive"] } [dev-dependencies] diff --git a/clippy-sarif/src/bin.rs b/clippy-sarif/src/bin.rs index 1a147cc0..b35d5029 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.4.1")] +#![doc(html_root_url = "https://docs.rs/clippy-sarif/0.4.2")] //! 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 6ac4ac0c..79555bc8 100644 --- a/hadolint-sarif/Cargo.toml +++ b/hadolint-sarif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hadolint-sarif" -version = "0.4.1" +version = "0.4.2" authors = ["Paul Sastrasinh "] edition = "2018" description = "Convert hadolint output to SARIF" @@ -21,7 +21,7 @@ path = "src/bin.rs" [dependencies] anyhow = "1.0.75" -serde-sarif = { path = "../serde-sarif", version = "0.4.1", features = ["hadolint-converters"] } +serde-sarif = { path = "../serde-sarif", version = "0.4.2", features = ["hadolint-converters"] } clap = { version = "4.4.2", features = ["derive"] } [dev-dependencies] diff --git a/hadolint-sarif/src/bin.rs b/hadolint-sarif/src/bin.rs index 36891bd4..f154a300 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.4.1")] +#![doc(html_root_url = "https://docs.rs/hadolint-sarif/0.4.2")] //! 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 92e9b395..160ac706 100644 --- a/sarif-fmt/Cargo.toml +++ b/sarif-fmt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sarif-fmt" -version = "0.4.1" +version = "0.4.2" authors = ["Paul Sastrasinh "] edition = "2018" description = "View (pretty print) SARIF files in terminal" @@ -23,7 +23,7 @@ path = "src/bin.rs" anyhow = "1.0.75" codespan-reporting = "0.11.1" serde_json = "1.0.105" -serde-sarif = { path = "../serde-sarif", version = "0.4.1" } +serde-sarif = { path = "../serde-sarif", version = "0.4.2" } clap = { version = "4.4.2", features = ["derive"] } [dev-dependencies] diff --git a/sarif-fmt/src/bin.rs b/sarif-fmt/src/bin.rs index 6a67fa91..c445b2eb 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.4.1")] +#![doc(html_root_url = "https://docs.rs/sarif-fmt/0.4.2")] #![recursion_limit = "256"] //! # WARNING: VERY UNSTABLE (EARLY IMPLEMENTATION) //! diff --git a/serde-sarif/Cargo.toml b/serde-sarif/Cargo.toml index aae9ad2e..7d549c98 100644 --- a/serde-sarif/Cargo.toml +++ b/serde-sarif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde-sarif" -version = "0.4.1" +version = "0.4.2" 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 09685a94..c43c4ee9 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.4.1")] +#![doc(html_root_url = "https://docs.rs/serde-sarif/0.4.2")] //! # WARNING: VERY UNSTABLE (EARLY IMPLEMENTATION) //! diff --git a/shellcheck-sarif/Cargo.toml b/shellcheck-sarif/Cargo.toml index d9e5c23d..db11d123 100644 --- a/shellcheck-sarif/Cargo.toml +++ b/shellcheck-sarif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shellcheck-sarif" -version = "0.4.1" +version = "0.4.2" authors = ["Paul Sastrasinh "] edition = "2018" description = "Convert shellcheck output to SARIF" @@ -21,7 +21,7 @@ path = "src/bin.rs" [dependencies] anyhow = "1.0.75" -serde-sarif = { path = "../serde-sarif", version = "0.4.1", features = ["shellcheck-converters"] } +serde-sarif = { path = "../serde-sarif", version = "0.4.2", features = ["shellcheck-converters"] } clap = { version = "4.4.2", features = ["derive"] } [dev-dependencies] diff --git a/shellcheck-sarif/src/bin.rs b/shellcheck-sarif/src/bin.rs index dd43f402..0f25629f 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.4.1")] +#![doc(html_root_url = "https://docs.rs/shellcheck-sarif/0.4.2")] //! This crate provides a command line tool to convert `shellcheck` diagnostic //! output into SARIF.