Skip to content

Commit 1366d96

Browse files
committed
release: 0.2.26
1 parent 2120bf3 commit 1366d96

File tree

14 files changed

+33
-23
lines changed

14 files changed

+33
-23
lines changed

.github/workflows/main.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,3 +203,13 @@ jobs:
203203
allowUpdates: true
204204
tag: ${{ matrix.target }}-v${{steps.target-version.outputs.target_version}}
205205
name: ${{ matrix.target }} ${{steps.target-version.outputs.target_version}}
206+
- uses: ncipollo/release-action@v1
207+
with:
208+
artifacts: ${{steps.target-binary.outputs.target_binary}}
209+
body: |
210+
${{steps.github_release.outputs.changelog}}
211+
token: ${{ secrets.GITHUB_TOKEN }}
212+
allowUpdates: true
213+
tag: ${{ matrix.target }}-latest
214+
name: ${{ matrix.target }} latest
215+
replacesArtifacts: true

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clang-tidy-sarif/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clang-tidy-sarif"
3-
version = "0.2.25"
3+
version = "0.2.26"
44
authors = ["Paul Sastrasinh <psastras@gmail.com>"]
55
edition = "2018"
66
description = "Convert clang-tidy output to SARIF"
@@ -21,7 +21,7 @@ path = "src/bin.rs"
2121

2222
[dependencies]
2323
anyhow = "1.0.52"
24-
serde-sarif = { path = "../serde-sarif", version = "0.2.25", features = ["clang-tidy-converters"] }
24+
serde-sarif = { path = "../serde-sarif", version = "0.2.26", features = ["clang-tidy-converters"] }
2525
clap = "3.0.8"
2626

2727
[dev-dependencies]

clang-tidy-sarif/src/bin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/clang-tidy-sarif/0.2.25")]
1+
#![doc(html_root_url = "https://docs.rs/clang-tidy-sarif/0.2.26")]
22

33
//! This crate provides a command line tool to convert `clang-tidy` diagnostic
44
//! output into SARIF.

clippy-sarif/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clippy-sarif"
3-
version = "0.2.25"
3+
version = "0.2.26"
44
authors = ["Paul Sastrasinh <psastras@gmail.com>"]
55
edition = "2018"
66
description = "Convert clippy output to SARIF"
@@ -21,7 +21,7 @@ path = "src/bin.rs"
2121

2222
[dependencies]
2323
anyhow = "1.0.52"
24-
serde-sarif = { path = "../serde-sarif", version = "0.2.25", features = ["clippy-converters"] }
24+
serde-sarif = { path = "../serde-sarif", version = "0.2.26", features = ["clippy-converters"] }
2525
clap = "3.0.8"
2626

2727
[dev-dependencies]

clippy-sarif/src/bin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/clippy-sarif/0.2.25")]
1+
#![doc(html_root_url = "https://docs.rs/clippy-sarif/0.2.26")]
22

33
//! This crate provides a command line tool to convert `cargo clippy` diagnostic
44
//! output into SARIF.

hadolint-sarif/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hadolint-sarif"
3-
version = "0.2.25"
3+
version = "0.2.26"
44
authors = ["Paul Sastrasinh <psastras@gmail.com>"]
55
edition = "2018"
66
description = "Convert hadolint output to SARIF"
@@ -21,7 +21,7 @@ path = "src/bin.rs"
2121

2222
[dependencies]
2323
anyhow = "1.0.52"
24-
serde-sarif = { path = "../serde-sarif", version = "0.2.25", features = ["hadolint-converters"] }
24+
serde-sarif = { path = "../serde-sarif", version = "0.2.26", features = ["hadolint-converters"] }
2525
clap = "3.0.8"
2626

2727
[dev-dependencies]

hadolint-sarif/src/bin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/hadolint-sarif/0.2.25")]
1+
#![doc(html_root_url = "https://docs.rs/hadolint-sarif/0.2.26")]
22

33
//! This crate provides a command line tool to convert `hadolint` diagnostic
44
//! output into SARIF.

sarif-fmt/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sarif-fmt"
3-
version = "0.2.25"
3+
version = "0.2.26"
44
authors = ["Paul Sastrasinh <psastras@gmail.com>"]
55
edition = "2018"
66
description = "View (pretty print) SARIF files in terminal"
@@ -23,7 +23,7 @@ path = "src/bin.rs"
2323
anyhow = "1.0.52"
2424
codespan-reporting = "0.11.1"
2525
serde_json = "1.0.75"
26-
serde-sarif = { path = "../serde-sarif", version = "0.2.25" }
26+
serde-sarif = { path = "../serde-sarif", version = "0.2.26" }
2727
clap = "3.0.8"
2828

2929
[dev-dependencies]

sarif-fmt/src/bin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/sarif-fmt/0.2.25")]
1+
#![doc(html_root_url = "https://docs.rs/sarif-fmt/0.2.26")]
22
#![recursion_limit = "256"]
33
//! # WARNING: VERY UNSTABLE (EARLY IMPLEMENTATION)
44
//!

0 commit comments

Comments
 (0)