Skip to content

Commit

Permalink
release: 0.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
psastras committed Jul 13, 2023
1 parent 15c227d commit 6892991
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 20 deletions.
6 changes: 3 additions & 3 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ $ cargo sbom
"creationInfo": {
"created": "2023-07-04T12:38:15.211Z",
"creators": [
"Tool: cargo-sbom-v0.8.3"
"Tool: cargo-sbom-v0.8.4"
]
},
"dataLicense": "CC0-1.0",
"documentNamespace": "https://docs.rs/cargo_sbom/spdxdocs/cargo-sbom-0.8.3-9cae390a-4b46-457c-95b9-e59a5e62b57d",
"documentNamespace": "https://docs.rs/cargo_sbom/spdxdocs/cargo-sbom-0.8.4-9cae390a-4b46-457c-95b9-e59a5e62b57d",
"files": [
{
<rest of output omitted>
Expand Down
6 changes: 3 additions & 3 deletions cargo-sbom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-sbom"
version = "0.8.3"
version = "0.8.4"
edition = "2021"
description = "Create software bill of materials (SBOM) for Rust"
license = "MIT"
Expand All @@ -21,8 +21,8 @@ clap-cargo = "0.10.0"
packageurl = "0.3.0"
petgraph = "0.6.3"
semver = "1.0.17"
serde-cyclonedx = { path = "../serde-cyclonedx", version = "0.8.3" }
serde-spdx = { path = "../serde-spdx", version = "0.8.3" }
serde-cyclonedx = { path = "../serde-cyclonedx", version = "0.8.4" }
serde-spdx = { path = "../serde-spdx", version = "0.8.4" }
serde_json = "1.0.99"
spdx = "0.10.1"
whoami = "1.4.1"
Expand Down
4 changes: 2 additions & 2 deletions cargo-sbom/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ $ cargo sbom
"creationInfo": {
"created": "2023-07-04T12:38:15.211Z",
"creators": [
"Tool: cargo-sbom-v0.8.3"
"Tool: cargo-sbom-v0.8.4"
]
},
"dataLicense": "CC0-1.0",
"documentNamespace": "https://docs.rs/cargo_sbom/spdxdocs/cargo-sbom-0.8.3-9cae390a-4b46-457c-95b9-e59a5e62b57d",
"documentNamespace": "https://docs.rs/cargo_sbom/spdxdocs/cargo-sbom-0.8.4-9cae390a-4b46-457c-95b9-e59a5e62b57d",
"files": [
{
<rest of output omitted>
Expand Down
6 changes: 3 additions & 3 deletions cargo-sbom/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/cargo-sbom/0.8.3")]
#![doc(html_root_url = "https://docs.rs/cargo-sbom/0.8.4")]

//! # cargo-sbom
//!
Expand Down Expand Up @@ -66,11 +66,11 @@
//! "creationInfo": {
//! "created": "2023-07-04T12:38:15.211Z",
//! "creators": [
//! "Tool: cargo-sbom-v0.8.3"
//! "Tool: cargo-sbom-v0.8.4"
//! ]
//! },
//! "dataLicense": "CC0-1.0",
//! "documentNamespace": "https://docs.rs/cargo_sbom/spdxdocs/cargo-sbom-0.8.3-9cae390a-4b46-457c-95b9-e59a5e62b57d",
//! "documentNamespace": "https://docs.rs/cargo_sbom/spdxdocs/cargo-sbom-0.8.4-9cae390a-4b46-457c-95b9-e59a5e62b57d",
//! "files": [
//! {
//! <rest of output omitted>
Expand Down
2 changes: 1 addition & 1 deletion cargo-sbom/tests/data/spdx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "hello-server"
version = "0.8.3"
version = "0.8.4"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion examples/cargo-binary/sbom.cyclonedx.json
Original file line number Diff line number Diff line change
Expand Up @@ -948,7 +948,7 @@
"tools": [
{
"name": "cargo-sbom",
"version": "0.8.3"
"version": "0.8.4"
}
]
},
Expand Down
2 changes: 1 addition & 1 deletion examples/cargo-binary/sbom.spdx.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"creationInfo": {
"created": "2023-07-10T12:38:05.978Z",
"creators": [
"Tool: cargo-sbom-v0.8.3"
"Tool: cargo-sbom-v0.8.4"
]
},
"dataLicense": "CC0-1.0",
Expand Down
2 changes: 1 addition & 1 deletion serde-cyclonedx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde-cyclonedx"
version = "0.8.3"
version = "0.8.4"
authors = ["Paul Sastrasinh <[email protected]>"]
edition = "2018"
description = "Serde serialization for CycloneDx files"
Expand Down
2 changes: 1 addition & 1 deletion serde-cyclonedx/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-cyclonedx/0.8.3")]
#![doc(html_root_url = "https://docs.rs/serde-cyclonedx/0.8.4")]

//! # serde-cyclonedx
//!
Expand Down
2 changes: 1 addition & 1 deletion serde-spdx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde-spdx"
version = "0.8.3"
version = "0.8.4"
authors = ["Paul Sastrasinh <[email protected]>"]
edition = "2018"
description = "Serde serialization for SPDX files"
Expand Down
2 changes: 1 addition & 1 deletion serde-spdx/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-spdx/0.8.3")]
#![doc(html_root_url = "https://docs.rs/serde-spdx/0.8.4")]

//! # serde-spdx
//!
Expand Down

0 comments on commit 6892991

Please sign in to comment.