From 04e7ad9a1e569ee0be74b5b66e70e7344b5a3583 Mon Sep 17 00:00:00 2001 From: Paul Sastrasinh Date: Thu, 22 Jun 2023 07:56:29 +0900 Subject: [PATCH] release: 0.4.0 --- 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 a29570ba..78810d20 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -122,7 +122,7 @@ checksum = "e9f73505338f7d905b19d18738976aae232eb46b8efc15554ffc56deb5d9ebe4" [[package]] name = "clang-tidy-sarif" -version = "0.3.7" +version = "0.4.0" dependencies = [ "anyhow", "clap", @@ -175,7 +175,7 @@ checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1" [[package]] name = "clippy-sarif" -version = "0.3.7" +version = "0.4.0" dependencies = [ "anyhow", "clap", @@ -324,7 +324,7 @@ dependencies = [ [[package]] name = "hadolint-sarif" -version = "0.3.7" +version = "0.4.0" dependencies = [ "anyhow", "clap", @@ -518,7 +518,7 @@ checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" [[package]] name = "sarif-fmt" -version = "0.3.7" +version = "0.4.0" dependencies = [ "anyhow", "clap", @@ -577,7 +577,7 @@ dependencies = [ [[package]] name = "serde-sarif" -version = "0.3.7" +version = "0.4.0" dependencies = [ "anyhow", "cargo_metadata", @@ -630,7 +630,7 @@ dependencies = [ [[package]] name = "shellcheck-sarif" -version = "0.3.7" +version = "0.4.0" dependencies = [ "anyhow", "clap", diff --git a/clang-tidy-sarif/Cargo.toml b/clang-tidy-sarif/Cargo.toml index 7cdf214e..bc54de12 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.7" +version = "0.4.0" authors = ["Paul Sastrasinh "] edition = "2018" description = "Convert clang-tidy output to SARIF" @@ -21,7 +21,7 @@ path = "src/bin.rs" [dependencies] anyhow = "1.0.70" -serde-sarif = { path = "../serde-sarif", version = "0.3.7", features = ["clang-tidy-converters"] } +serde-sarif = { path = "../serde-sarif", version = "0.4.0", features = ["clang-tidy-converters"] } clap = { version = "4.2.2", features = ["derive"] } duct = "0.13.6" diff --git a/clang-tidy-sarif/src/bin.rs b/clang-tidy-sarif/src/bin.rs index 56ef3dc3..836ea82c 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.7")] +#![doc(html_root_url = "https://docs.rs/clang-tidy-sarif/0.4.0")] //! 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 00cb3e75..c1e7636b 100644 --- a/clippy-sarif/Cargo.toml +++ b/clippy-sarif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy-sarif" -version = "0.3.7" +version = "0.4.0" authors = ["Paul Sastrasinh "] edition = "2018" description = "Convert clippy output to SARIF" @@ -21,7 +21,7 @@ path = "src/bin.rs" [dependencies] anyhow = "1.0.70" -serde-sarif = { path = "../serde-sarif", version = "0.3.7", features = ["clippy-converters"] } +serde-sarif = { path = "../serde-sarif", version = "0.4.0", features = ["clippy-converters"] } clap = { version = "4.2.2", features = ["derive"] } [dev-dependencies] diff --git a/clippy-sarif/src/bin.rs b/clippy-sarif/src/bin.rs index 753692df..9fa04b7a 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.7")] +#![doc(html_root_url = "https://docs.rs/clippy-sarif/0.4.0")] //! 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 533f77b3..1640fee9 100644 --- a/hadolint-sarif/Cargo.toml +++ b/hadolint-sarif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hadolint-sarif" -version = "0.3.7" +version = "0.4.0" authors = ["Paul Sastrasinh "] edition = "2018" description = "Convert hadolint output to SARIF" @@ -21,7 +21,7 @@ path = "src/bin.rs" [dependencies] anyhow = "1.0.70" -serde-sarif = { path = "../serde-sarif", version = "0.3.7", features = ["hadolint-converters"] } +serde-sarif = { path = "../serde-sarif", version = "0.4.0", features = ["hadolint-converters"] } clap = { version = "4.2.2", features = ["derive"] } [dev-dependencies] diff --git a/hadolint-sarif/src/bin.rs b/hadolint-sarif/src/bin.rs index 91c235b4..568b7d27 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.7")] +#![doc(html_root_url = "https://docs.rs/hadolint-sarif/0.4.0")] //! 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 285bc7fe..304d1695 100644 --- a/sarif-fmt/Cargo.toml +++ b/sarif-fmt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sarif-fmt" -version = "0.3.7" +version = "0.4.0" authors = ["Paul Sastrasinh "] edition = "2018" description = "View (pretty print) SARIF files in terminal" @@ -23,7 +23,7 @@ path = "src/bin.rs" anyhow = "1.0.70" codespan-reporting = "0.11.1" serde_json = "1.0.96" -serde-sarif = { path = "../serde-sarif", version = "0.3.7" } +serde-sarif = { path = "../serde-sarif", version = "0.4.0" } clap = { version = "4.2.2", features = ["derive"] } [dev-dependencies] diff --git a/sarif-fmt/src/bin.rs b/sarif-fmt/src/bin.rs index 6784dec3..2d6b94e0 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.7")] +#![doc(html_root_url = "https://docs.rs/sarif-fmt/0.4.0")] #![recursion_limit = "256"] //! # WARNING: VERY UNSTABLE (EARLY IMPLEMENTATION) //! diff --git a/serde-sarif/Cargo.toml b/serde-sarif/Cargo.toml index 1e89cc60..ac1e2368 100644 --- a/serde-sarif/Cargo.toml +++ b/serde-sarif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde-sarif" -version = "0.3.7" +version = "0.4.0" 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 0af6e4df..77130ddb 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.7")] +#![doc(html_root_url = "https://docs.rs/serde-sarif/0.4.0")] //! # WARNING: VERY UNSTABLE (EARLY IMPLEMENTATION) //! diff --git a/shellcheck-sarif/Cargo.toml b/shellcheck-sarif/Cargo.toml index 58359709..550e814e 100644 --- a/shellcheck-sarif/Cargo.toml +++ b/shellcheck-sarif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shellcheck-sarif" -version = "0.3.7" +version = "0.4.0" authors = ["Paul Sastrasinh "] edition = "2018" description = "Convert shellcheck output to SARIF" @@ -21,7 +21,7 @@ path = "src/bin.rs" [dependencies] anyhow = "1.0.70" -serde-sarif = { path = "../serde-sarif", version = "0.3.7", features = ["shellcheck-converters"] } +serde-sarif = { path = "../serde-sarif", version = "0.4.0", features = ["shellcheck-converters"] } clap = { version = "4.2.2", features = ["derive"] } [dev-dependencies] diff --git a/shellcheck-sarif/src/bin.rs b/shellcheck-sarif/src/bin.rs index f839cdef..c816cc36 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.7")] +#![doc(html_root_url = "https://docs.rs/shellcheck-sarif/0.4.0")] //! This crate provides a command line tool to convert `shellcheck` diagnostic //! output into SARIF.