Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
ctron committed Apr 26, 2024
1 parent 805abe8 commit a2b5ba9
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "walker-common"
description = "A common functionality for SBOM and CSAF walker"
version = "0.6.0-rc.5"
version = "0.6.0"
edition = "2021"
authors = ["Jens Reimann <ctron@dentrassi.de>"]
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions csaf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "csaf-walker"
description = "A library to work with CSAF data"
version = "0.6.0-rc.5"
version = "0.6.0"
edition = "2021"
authors = ["Jens Reimann <ctron@dentrassi.de>"]
license = "Apache-2.0"
Expand Down Expand Up @@ -38,7 +38,7 @@ tokio = { version = "1", features = ["macros", "fs"] }
url = { version = "2.3.1", features = ["serde"] }
walkdir = "2.4"

walker-common = { version = "0.6.0-rc.5", path = "../common", features = ["openpgp"] }
walker-common = { version = "0.6.0", path = "../common", features = ["openpgp"] }

sequoia-openpgp = { version = "1", default-features = false }

Expand Down
8 changes: 4 additions & 4 deletions csaf/csaf-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "csaf-cli"
description = "A CLI to work with CSAF data"
version = "0.6.0-rc.5"
version = "0.6.0"
edition = "2021"
authors = ["Jens Reimann <ctron@dentrassi.de>"]
license = "Apache-2.0"
Expand Down Expand Up @@ -29,9 +29,9 @@ thiserror = "1"
time = "0.3.20"
tokio = { version = "1", features = ["full"] }

walker-common = { version = "0.6.0-rc.5", path = "../../common", features = ["openpgp", "cli"] }
walker-extras = { version = "0.6.0-rc.5", path = "../../extras" }
csaf-walker = { version = "0.6.0-rc.5", path = "..", default-features = false, features = ["csaf"] }
walker-common = { version = "0.6.0", path = "../../common", features = ["openpgp", "cli"] }
walker-extras = { version = "0.6.0", path = "../../extras" }
csaf-walker = { version = "0.6.0", path = "..", default-features = false, features = ["csaf"] }

# just there for the feature
openssl = { version = "0.10", optional = true }
Expand Down
8 changes: 4 additions & 4 deletions extras/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "walker-extras"
description = "Additional functionality for SBOM and CSAF walker"
version = "0.6.0-rc.5"
version = "0.6.0"
edition = "2021"
authors = ["Jens Reimann <ctron@dentrassi.de>"]
license = "Apache-2.0"
Expand All @@ -24,10 +24,10 @@ tokio = { version = "1", features = ["time"] }

clap = { version = "4.5.0", features = ["derive"], optional = true }

walker-common = { version = "0.6.0-rc.5", path = "../common" }
walker-common = { version = "0.6.0", path = "../common" }

csaf-walker = { version = "0.6.0-rc.5", path = "../csaf", optional = true, default-features = false }
sbom-walker = { version = "0.6.0-rc.5", path = "../sbom", optional = true, default-features = false }
csaf-walker = { version = "0.6.0", path = "../csaf", optional = true, default-features = false }
sbom-walker = { version = "0.6.0", path = "../sbom", optional = true, default-features = false }

[features]
default = [
Expand Down
4 changes: 2 additions & 2 deletions sbom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "sbom-walker"
description = "A library to work with SBOM data"
version = "0.6.0-rc.5"
version = "0.6.0"
edition = "2021"
authors = ["Jens Reimann <ctron@dentrassi.de>"]
license = "Apache-2.0"
Expand Down Expand Up @@ -34,7 +34,7 @@ time = { version = "0.3.20", features = ["formatting", "parsing", "serde"] }
tokio = { version = "1", features = ["macros", "fs"] }
url = { version = "2.3.1", features = ["serde"] }

walker-common = { version = "0.6.0-rc.5", path = "../common", features = ["openpgp"] }
walker-common = { version = "0.6.0", path = "../common", features = ["openpgp"] }

sequoia-openpgp = { version = "1", default-features = false }

Expand Down
8 changes: 4 additions & 4 deletions sbom/sbom-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "sbom-cli"
description = "A CLI to work with SBOM data"
version = "0.6.0-rc.5"
version = "0.6.0"
edition = "2021"
authors = ["Jens Reimann <ctron@dentrassi.de>"]
license = "Apache-2.0"
Expand Down Expand Up @@ -30,9 +30,9 @@ time = "0.3.20"
tokio = { version = "1", features = ["full"] }
bzip2-rs = { version = "0.1", features = ["rustc_1_51"] }

walker-common = { version = "0.6.0-rc.5", path = "../../common", features = ["openpgp", "cli"] }
walker-extras = { version = "0.6.0-rc.5", path = "../../extras" }
sbom-walker = { version = "0.6.0-rc.5", path = "..", default-features = false, features = ["cyclonedx-bom", "spdx-rs"] }
walker-common = { version = "0.6.0", path = "../../common", features = ["openpgp", "cli"] }
walker-extras = { version = "0.6.0", path = "../../extras" }
sbom-walker = { version = "0.6.0", path = "..", default-features = false, features = ["cyclonedx-bom", "spdx-rs"] }

# just there for the feature
openssl = { version = "0.10", optional = true }
Expand Down

0 comments on commit a2b5ba9

Please sign in to comment.