Skip to content

Commit

Permalink
release: 0.2.26
Browse files Browse the repository at this point in the history
  • Loading branch information
psastras committed Jan 18, 2022
1 parent 2120bf3 commit 1366d96
Show file tree
Hide file tree
Showing 14 changed files with 33 additions and 23 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,3 +203,13 @@ jobs:
allowUpdates: true
tag: ${{ matrix.target }}-v${{steps.target-version.outputs.target_version}}
name: ${{ matrix.target }} ${{steps.target-version.outputs.target_version}}
- uses: ncipollo/release-action@v1
with:
artifacts: ${{steps.target-binary.outputs.target_binary}}
body: |
${{steps.github_release.outputs.changelog}}
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true
tag: ${{ matrix.target }}-latest
name: ${{ matrix.target }} latest
replacesArtifacts: true
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.25"
version = "0.2.26"
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.52"
serde-sarif = { path = "../serde-sarif", version = "0.2.25", features = ["clang-tidy-converters"] }
serde-sarif = { path = "../serde-sarif", version = "0.2.26", 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.25")]
#![doc(html_root_url = "https://docs.rs/clang-tidy-sarif/0.2.26")]

//! 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.25"
version = "0.2.26"
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.52"
serde-sarif = { path = "../serde-sarif", version = "0.2.25", features = ["clippy-converters"] }
serde-sarif = { path = "../serde-sarif", version = "0.2.26", 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.25")]
#![doc(html_root_url = "https://docs.rs/clippy-sarif/0.2.26")]

//! 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.25"
version = "0.2.26"
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.52"
serde-sarif = { path = "../serde-sarif", version = "0.2.25", features = ["hadolint-converters"] }
serde-sarif = { path = "../serde-sarif", version = "0.2.26", 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.25")]
#![doc(html_root_url = "https://docs.rs/hadolint-sarif/0.2.26")]

//! 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.25"
version = "0.2.26"
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.52"
codespan-reporting = "0.11.1"
serde_json = "1.0.75"
serde-sarif = { path = "../serde-sarif", version = "0.2.25" }
serde-sarif = { path = "../serde-sarif", version = "0.2.26" }
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.25")]
#![doc(html_root_url = "https://docs.rs/sarif-fmt/0.2.26")]
#![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.25"
version = "0.2.26"
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.2.25")]
#![doc(html_root_url = "https://docs.rs/serde-sarif/0.2.26")]

//! # 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.25"
version = "0.2.26"
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.52"
serde-sarif = { path = "../serde-sarif", version = "0.2.25", features = ["shellcheck-converters"] }
serde-sarif = { path = "../serde-sarif", version = "0.2.26", 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.25")]
#![doc(html_root_url = "https://docs.rs/shellcheck-sarif/0.2.26")]

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

0 comments on commit 1366d96

Please sign in to comment.