Skip to content

Commit

Permalink
release: 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
psastras committed Sep 7, 2023
1 parent 2a7a894 commit 11c33a5
Show file tree
Hide file tree
Showing 13 changed files with 23 additions and 23 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions clang-tidy-sarif/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clang-tidy-sarif"
version = "0.4.1"
version = "0.4.2"
authors = ["Paul Sastrasinh <[email protected]>"]
edition = "2018"
description = "Convert clang-tidy output to SARIF"
Expand All @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion clang-tidy-sarif/src/bin.rs
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions clippy-sarif/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clippy-sarif"
version = "0.4.1"
version = "0.4.2"
authors = ["Paul Sastrasinh <[email protected]>"]
edition = "2018"
description = "Convert clippy output to SARIF"
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion clippy-sarif/src/bin.rs
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions hadolint-sarif/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hadolint-sarif"
version = "0.4.1"
version = "0.4.2"
authors = ["Paul Sastrasinh <[email protected]>"]
edition = "2018"
description = "Convert hadolint output to SARIF"
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion hadolint-sarif/src/bin.rs
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions sarif-fmt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sarif-fmt"
version = "0.4.1"
version = "0.4.2"
authors = ["Paul Sastrasinh <[email protected]>"]
edition = "2018"
description = "View (pretty print) SARIF files in terminal"
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion sarif-fmt/src/bin.rs
Original file line number Diff line number Diff line change
@@ -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)
//!
Expand Down
2 changes: 1 addition & 1 deletion serde-sarif/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde-sarif"
version = "0.4.1"
version = "0.4.2"
authors = ["Paul Sastrasinh <[email protected]>"]
edition = "2018"
description = "Serde serialization for SARIF files"
Expand Down
2 changes: 1 addition & 1 deletion serde-sarif/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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)
//!
Expand Down
4 changes: 2 additions & 2 deletions shellcheck-sarif/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shellcheck-sarif"
version = "0.4.1"
version = "0.4.2"
authors = ["Paul Sastrasinh <[email protected]>"]
edition = "2018"
description = "Convert shellcheck output to SARIF"
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion shellcheck-sarif/src/bin.rs
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 11c33a5

Please sign in to comment.