Skip to content

Commit

Permalink
release: 0.2.23
Browse files Browse the repository at this point in the history
  • Loading branch information
psastras committed Jan 18, 2022
1 parent 3eef4da commit 83ddd2f
Show file tree
Hide file tree
Showing 14 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ jobs:
echo ::set-output name=target_version::$TARGET_VERSION
- name: target binary
id: target-binary
run:
run: |
TARGET_BINARY=./target/release/${{ matrix.target }}-${{steps.target-triple.outputs.target_triple}}
mv ./target/release/${{ matrix.target }} ${TARGET_BINARY}
echo ::set-output name=target_binary::$TARGET_BINARY
Expand Down
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.2.22"
version = "0.2.23"
authors = ["Paul Sastrasinh <psastras@gmail.com>"]
edition = "2018"
description = "Convert clang-tidy output to SARIF"
Expand All @@ -21,7 +21,7 @@ path = "src/bin.rs"

[dependencies]
anyhow = "1.0.52"
serde-sarif = { path = "../serde-sarif", version = "0.2.22", features = ["clang-tidy-converters"] }
serde-sarif = { path = "../serde-sarif", version = "0.2.23", features = ["clang-tidy-converters"] }
clap = "3.0.8"

[dev-dependencies]
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.2.22")]
#![doc(html_root_url = "https://docs.rs/clang-tidy-sarif/0.2.23")]

//! 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.2.22"
version = "0.2.23"
authors = ["Paul Sastrasinh <psastras@gmail.com>"]
edition = "2018"
description = "Convert clippy output to SARIF"
Expand All @@ -21,7 +21,7 @@ path = "src/bin.rs"

[dependencies]
anyhow = "1.0.52"
serde-sarif = { path = "../serde-sarif", version = "0.2.22", features = ["clippy-converters"] }
serde-sarif = { path = "../serde-sarif", version = "0.2.23", features = ["clippy-converters"] }
clap = "3.0.8"

[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.2.22")]
#![doc(html_root_url = "https://docs.rs/clippy-sarif/0.2.23")]

//! 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.2.22"
version = "0.2.23"
authors = ["Paul Sastrasinh <psastras@gmail.com>"]
edition = "2018"
description = "Convert hadolint output to SARIF"
Expand All @@ -21,7 +21,7 @@ path = "src/bin.rs"

[dependencies]
anyhow = "1.0.52"
serde-sarif = { path = "../serde-sarif", version = "0.2.22", features = ["hadolint-converters"] }
serde-sarif = { path = "../serde-sarif", version = "0.2.23", features = ["hadolint-converters"] }
clap = "3.0.8"

[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.2.22")]
#![doc(html_root_url = "https://docs.rs/hadolint-sarif/0.2.23")]

//! 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.2.22"
version = "0.2.23"
authors = ["Paul Sastrasinh <psastras@gmail.com>"]
edition = "2018"
description = "View (pretty print) SARIF files in terminal"
Expand All @@ -23,7 +23,7 @@ path = "src/bin.rs"
anyhow = "1.0.52"
codespan-reporting = "0.11.1"
serde_json = "1.0.75"
serde-sarif = { path = "../serde-sarif", version = "0.2.22" }
serde-sarif = { path = "../serde-sarif", version = "0.2.23" }
clap = "3.0.8"

[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.2.22")]
#![doc(html_root_url = "https://docs.rs/sarif-fmt/0.2.23")]
#![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.2.22"
version = "0.2.23"
authors = ["Paul Sastrasinh <psastras@gmail.com>"]
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.2.22")]
#![doc(html_root_url = "https://docs.rs/serde-sarif/0.2.23")]

//! # 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.2.22"
version = "0.2.23"
authors = ["Paul Sastrasinh <psastras@gmail.com>"]
edition = "2018"
description = "Convert shellcheck output to SARIF"
Expand All @@ -21,7 +21,7 @@ path = "src/bin.rs"

[dependencies]
anyhow = "1.0.52"
serde-sarif = { path = "../serde-sarif", version = "0.2.22", features = ["shellcheck-converters"] }
serde-sarif = { path = "../serde-sarif", version = "0.2.23", features = ["shellcheck-converters"] }
clap = "3.0.8"

[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.2.22")]
#![doc(html_root_url = "https://docs.rs/shellcheck-sarif/0.2.23")]

//! This crate provides a command line tool to convert `shellcheck` diagnostic
//! output into SARIF.
Expand Down

0 comments on commit 83ddd2f

Please sign in to comment.