diff --git a/Cargo.lock b/Cargo.lock index a447cc2e..5026244c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -116,7 +116,7 @@ dependencies = [ [[package]] name = "clang-tidy-sarif" -version = "0.6.6" +version = "0.7.0" dependencies = [ "anyhow", "clap", @@ -167,7 +167,7 @@ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" [[package]] name = "clippy-sarif" -version = "0.6.6" +version = "0.7.0" dependencies = [ "anyhow", "clap", @@ -235,7 +235,7 @@ dependencies = [ [[package]] name = "hadolint-sarif" -version = "0.6.6" +version = "0.7.0" dependencies = [ "anyhow", "clap", @@ -409,7 +409,7 @@ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" [[package]] name = "sarif-fmt" -version = "0.6.6" +version = "0.7.0" dependencies = [ "anyhow", "clap", @@ -468,7 +468,7 @@ dependencies = [ [[package]] name = "serde-sarif" -version = "0.6.6" +version = "0.7.0" dependencies = [ "anyhow", "cargo_metadata", @@ -531,7 +531,7 @@ dependencies = [ [[package]] name = "shellcheck-sarif" -version = "0.6.6" +version = "0.7.0" dependencies = [ "anyhow", "clap", diff --git a/README.md b/README.md index 21e73e3e..5f722344 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ Using `curl`, ```shell # make sure to adjust the target and version (you may also want to pin to a specific version) -curl -sSL https://github.com/psastras/sarif-rs/releases/download/shellcheck-sarif-v0.6.6/shellcheck-sarif-x86_64-unknown-linux-gnu -o shellcheck-sarif +curl -sSL https://github.com/psastras/sarif-rs/releases/download/shellcheck-sarif-v0.7.0/shellcheck-sarif-x86_64-unknown-linux-gnu -o shellcheck-sarif ``` ### Fedora Linux diff --git a/clang-tidy-sarif/Cargo.toml b/clang-tidy-sarif/Cargo.toml index 7896ab55..bae37d5e 100644 --- a/clang-tidy-sarif/Cargo.toml +++ b/clang-tidy-sarif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clang-tidy-sarif" -version = "0.6.6" +version = "0.7.0" authors = ["Paul Sastrasinh "] edition = "2018" description = "Convert clang-tidy output to SARIF" @@ -8,7 +8,7 @@ license = "MIT" readme = "README.md" keywords = ["sarif", "clang-tidy", "clang", "lint", "cli"] categories = ["command-line-utilities"] -homepage = "https://psastras.github.io/sarif-rs/" +homepage = "https://psastras.github.io/sarif-rs/" documentation = "https://docs.rs/clang_tidy_sarif" repository = "https://github.com/psastras/sarif-rs" @@ -21,7 +21,9 @@ path = "src/bin.rs" [dependencies] anyhow = "1.0.94" -serde-sarif = { path = "../serde-sarif", version = "0.6.6", features = ["clang-tidy-converters"] } +serde-sarif = { path = "../serde-sarif", version = "0.7.0", features = [ + "clang-tidy-converters", +] } clap = { version = "4.5.23", features = ["derive"] } duct = "0.13.7" diff --git a/clang-tidy-sarif/README.md b/clang-tidy-sarif/README.md index 1c401f57..9f201b72 100644 --- a/clang-tidy-sarif/README.md +++ b/clang-tidy-sarif/README.md @@ -34,7 +34,7 @@ or downloaded directly from Github Releases ```shell # make sure to adjust the target and version (you may also want to pin to a specific version) -curl -sSL https://github.com/psastras/sarif-rs/releases/download/clang-tidy-sarif-v0.6.6/clang-tidy-sarif-x86_64-unknown-linux-gnu -o clang-tidy-sarif +curl -sSL https://github.com/psastras/sarif-rs/releases/download/clang-tidy-sarif-v0.7.0/clang-tidy-sarif-x86_64-unknown-linux-gnu -o clang-tidy-sarif ``` ### Fedora Linux diff --git a/clang-tidy-sarif/src/bin.rs b/clang-tidy-sarif/src/bin.rs index f8c718b3..6ed58060 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.6.6")] +#![doc(html_root_url = "https://docs.rs/clang-tidy-sarif/0.7.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 1ca4d00b..5b19628a 100644 --- a/clippy-sarif/Cargo.toml +++ b/clippy-sarif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy-sarif" -version = "0.6.6" +version = "0.7.0" authors = ["Paul Sastrasinh "] edition = "2018" description = "Convert clippy output to SARIF" @@ -8,7 +8,7 @@ license = "MIT" readme = "README.md" keywords = ["sarif", "clippy", "cli"] categories = ["command-line-utilities"] -homepage = "https://psastras.github.io/sarif-rs/" +homepage = "https://psastras.github.io/sarif-rs/" documentation = "https://docs.rs/clippy_sarif" repository = "https://github.com/psastras/sarif-rs" @@ -21,7 +21,9 @@ path = "src/bin.rs" [dependencies] anyhow = "1.0.94" -serde-sarif = { path = "../serde-sarif", version = "0.6.6", features = ["clippy-converters"] } +serde-sarif = { path = "../serde-sarif", version = "0.7.0", features = [ + "clippy-converters", +] } clap = { version = "4.5.23", features = ["derive"] } [dev-dependencies] diff --git a/clippy-sarif/README.md b/clippy-sarif/README.md index 0a8a3f10..7f851957 100644 --- a/clippy-sarif/README.md +++ b/clippy-sarif/README.md @@ -34,7 +34,7 @@ or downloaded directly from Github Releases ```shell # make sure to adjust the target and version (you may also want to pin to a specific version) -curl -sSL https://github.com/psastras/sarif-rs/releases/download/clippy-sarif-v0.6.6/clippy-sarif-x86_64-unknown-linux-gnu -o clippy-sarif +curl -sSL https://github.com/psastras/sarif-rs/releases/download/clippy-sarif-v0.7.0/clippy-sarif-x86_64-unknown-linux-gnu -o clippy-sarif ``` ### Fedora Linux diff --git a/clippy-sarif/src/bin.rs b/clippy-sarif/src/bin.rs index d42c24bf..2b098dac 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.6.6")] +#![doc(html_root_url = "https://docs.rs/clippy-sarif/0.7.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 2fe2e30f..6547b564 100644 --- a/hadolint-sarif/Cargo.toml +++ b/hadolint-sarif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hadolint-sarif" -version = "0.6.6" +version = "0.7.0" authors = ["Paul Sastrasinh "] edition = "2018" description = "Convert hadolint output to SARIF" @@ -8,7 +8,7 @@ license = "MIT" readme = "README.md" keywords = ["sarif", "hadolint", "docker", "cli"] categories = ["command-line-utilities"] -homepage = "https://psastras.github.io/sarif-rs/" +homepage = "https://psastras.github.io/sarif-rs/" documentation = "https://docs.rs/hadolint_sarif" repository = "https://github.com/psastras/sarif-rs" @@ -21,7 +21,9 @@ path = "src/bin.rs" [dependencies] anyhow = "1.0.94" -serde-sarif = { path = "../serde-sarif", version = "0.6.6", features = ["hadolint-converters"] } +serde-sarif = { path = "../serde-sarif", version = "0.7.0", features = [ + "hadolint-converters", +] } clap = { version = "4.5.23", features = ["derive"] } [dev-dependencies] diff --git a/hadolint-sarif/README.md b/hadolint-sarif/README.md index 5d302bb8..6552dd87 100644 --- a/hadolint-sarif/README.md +++ b/hadolint-sarif/README.md @@ -34,7 +34,7 @@ or downloaded directly from Github Releases ```shell # make sure to adjust the target and version (you may also want to pin to a specific version) -curl -sSL https://github.com/psastras/sarif-rs/releases/download/shellcheck-sarif-v0.6.6/hadolint-sarif-x86_64-unknown-linux-gnu -o hadolint-sarif +curl -sSL https://github.com/psastras/sarif-rs/releases/download/shellcheck-sarif-v0.7.0/hadolint-sarif-x86_64-unknown-linux-gnu -o hadolint-sarif ``` ### Fedora Linux diff --git a/hadolint-sarif/src/bin.rs b/hadolint-sarif/src/bin.rs index 1d9a5839..8566546f 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.6.6")] +#![doc(html_root_url = "https://docs.rs/hadolint-sarif/0.7.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 813b8cfb..e5a85f97 100644 --- a/sarif-fmt/Cargo.toml +++ b/sarif-fmt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sarif-fmt" -version = "0.6.6" +version = "0.7.0" authors = ["Paul Sastrasinh "] edition = "2018" description = "View (pretty print) SARIF files in terminal" @@ -8,7 +8,7 @@ license = "MIT" readme = "README.md" keywords = ["sarif", "fmt", "cli", "terminal"] categories = ["command-line-utilities"] -homepage = "https://psastras.github.io/sarif-rs/" +homepage = "https://psastras.github.io/sarif-rs/" documentation = "https://docs.rs/clippy_sarif" repository = "https://github.com/psastras/sarif-rs" @@ -22,7 +22,7 @@ path = "src/bin.rs" [dependencies] anyhow = "1.0.94" codespan-reporting = "0.11.1" -serde-sarif = { path = "../serde-sarif", version = "0.6.6" } +serde-sarif = { path = "../serde-sarif", version = "0.7.0" } serde_json = "1.0.133" clap = { version = "4.5.23", features = ["derive"] } diff --git a/sarif-fmt/README.md b/sarif-fmt/README.md index 072c2626..1c582384 100644 --- a/sarif-fmt/README.md +++ b/sarif-fmt/README.md @@ -30,7 +30,7 @@ or downloaded directly from Github Releases ```shell # make sure to adjust the target and version (you may also want to pin to a specific version) -curl -sSL https://github.com/psastras/sarif-rs/releases/download/sarif-fmt-v0.6.6/sarif-fmt-x86_64-unknown-linux-gnu -o sarif-fmt +curl -sSL https://github.com/psastras/sarif-rs/releases/download/sarif-fmt-v0.7.0/sarif-fmt-x86_64-unknown-linux-gnu -o sarif-fmt ``` ### Fedora Linux diff --git a/sarif-fmt/src/bin.rs b/sarif-fmt/src/bin.rs index 26e78003..b5aee684 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.6.6")] +#![doc(html_root_url = "https://docs.rs/sarif-fmt/0.7.0")] #![recursion_limit = "256"] //! This crate provides a command line tool to pretty print SARIF files to //! easy human readable output. diff --git a/serde-sarif/Cargo.toml b/serde-sarif/Cargo.toml index 9d661bae..86f2cb60 100644 --- a/serde-sarif/Cargo.toml +++ b/serde-sarif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde-sarif" -version = "0.6.6" +version = "0.7.0" authors = ["Paul Sastrasinh "] edition = "2018" description = "Serde serialization for SARIF files" @@ -9,7 +9,7 @@ readme = "README.md" keywords = ["sarif", "serde", "serialization"] categories = ["encoding"] build = "build.rs" -homepage = "https://psastras.github.io/sarif-rs/" +homepage = "https://psastras.github.io/sarif-rs/" documentation = "https://docs.rs/serde_sarif" repository = "https://github.com/psastras/sarif-rs" @@ -29,7 +29,7 @@ clang-tidy-converters = ["regex", "anyhow"] [dependencies] anyhow = { version = "1.0.94", optional = true } cargo_metadata = { version = "0.19.1", optional = true } -regex = { version = "1.11.1", optional = true } +regex = { version = "1.11.1", optional = true } serde = "1.0.216" serde_json = "1.0.133" strum = "0.26" diff --git a/serde-sarif/src/lib.rs b/serde-sarif/src/lib.rs index bd1a4bc3..3179e4d2 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.6.6")] +#![doc(html_root_url = "https://docs.rs/serde-sarif/0.7.0")] //! This crate provides a type safe [serde](https://serde.rs/) compatible //! [SARIF](https://sarifweb.azurewebsites.net/) structure. It is intended diff --git a/shellcheck-sarif/Cargo.toml b/shellcheck-sarif/Cargo.toml index e03a653a..88735d86 100644 --- a/shellcheck-sarif/Cargo.toml +++ b/shellcheck-sarif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shellcheck-sarif" -version = "0.6.6" +version = "0.7.0" authors = ["Paul Sastrasinh "] edition = "2018" description = "Convert shellcheck output to SARIF" @@ -8,7 +8,7 @@ license = "MIT" readme = "README.md" keywords = ["sarif", "shellcheck", "shell", "cli"] categories = ["command-line-utilities"] -homepage = "https://psastras.github.io/sarif-rs/" +homepage = "https://psastras.github.io/sarif-rs/" documentation = "https://docs.rs/shellcheck_sarif" repository = "https://github.com/psastras/sarif-rs" @@ -21,7 +21,9 @@ path = "src/bin.rs" [dependencies] anyhow = "1.0.94" -serde-sarif = { path = "../serde-sarif", version = "0.6.6", features = ["shellcheck-converters"] } +serde-sarif = { path = "../serde-sarif", version = "0.7.0", features = [ + "shellcheck-converters", +] } clap = { version = "4.5.23", features = ["derive"] } [dev-dependencies] diff --git a/shellcheck-sarif/README.md b/shellcheck-sarif/README.md index 8abc5705..e4245a21 100644 --- a/shellcheck-sarif/README.md +++ b/shellcheck-sarif/README.md @@ -34,7 +34,7 @@ or downloaded directly from Github Releases ```shell # make sure to adjust the target and version (you may also want to pin to a specific version) -curl -sSL https://github.com/psastras/sarif-rs/releases/download/shellcheck-sarif-v0.6.6/shellcheck-sarif-x86_64-unknown-linux-gnu -o shellcheck-sarif +curl -sSL https://github.com/psastras/sarif-rs/releases/download/shellcheck-sarif-v0.7.0/shellcheck-sarif-x86_64-unknown-linux-gnu -o shellcheck-sarif ``` ### Fedora Linux diff --git a/shellcheck-sarif/src/bin.rs b/shellcheck-sarif/src/bin.rs index 7c86cf59..ad2136a3 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.6.6")] +#![doc(html_root_url = "https://docs.rs/shellcheck-sarif/0.7.0")] //! This crate provides a command line tool to convert `shellcheck` diagnostic //! output into SARIF.