Skip to content

Commit 23e4666

Browse files
authored
Merge pull request #726 from Shnatsel/new-releases
Bugfix releases
2 parents 9de191c + f67332f commit 23e4666

File tree

4 files changed

+33
-4
lines changed

4 files changed

+33
-4
lines changed

cargo-cyclonedx/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.5.2 - 2024-06-04
9+
10+
### Fixed
11+
12+
- Fixed a panic when outputting CycloneDX v1.5 ([#722])
13+
14+
### Changed
15+
16+
- Removed `--allow-dirty` flag from the publishing workflow so that the provenance of the package uploaded to crates.io can be established ([#724])
17+
818
## 0.5.1 - 2024-05-22
919

1020
### Added
@@ -101,3 +111,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
101111
[#620]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/620
102112
[#630]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/630
103113
[#634]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/634
114+
[#722]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/722
115+
[#724]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/724

cargo-cyclonedx/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-cyclonedx"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
categories = ["command-line-utilities", "development-tools", "development-tools::cargo-plugins"]
55
description = "CycloneDX Software Bill of Materials (SBOM) for Rust Crates"
66
keywords = ["sbom", "bom", "components", "dependencies", "owasp"]
@@ -25,7 +25,7 @@ anyhow = "1.0.75"
2525
cargo-lock = "9.0.0"
2626
cargo_metadata = "0.18.1"
2727
clap = { version = "4.4.11", features = ["derive"] }
28-
cyclonedx-bom = { version = "0.6.0", path = "../cyclonedx-bom" }
28+
cyclonedx-bom = { version = "0.6.1", path = "../cyclonedx-bom" }
2929
env_logger = "0.10.0"
3030
log = "0.4.20"
3131
once_cell = "1.18.0"

cyclonedx-bom/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.6.1 - 2024-06-04
9+
10+
### Added
11+
12+
- A series of APIs that serialize and deserialize in the format specified with the `SpecVersion` enum ([#725])
13+
14+
### Fixed
15+
16+
- Fixed a panic when parsing CycloneDX v1.5 from a `serde_json::Value` ([#723])
17+
18+
### Changed
19+
20+
- Removed `--allow-dirty` flag from the publishing workflow so that the provenance of the package uploaded to crates.io can be established ([#724])
21+
822
## 0.6.0 - 2024-05-22
923

1024
### Added
@@ -68,3 +82,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6882
[#707]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/707
6983
[#708]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/708
7084
[#709]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/709
85+
[#723]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/723
86+
[#724]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/724
87+
[#725]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/725

cyclonedx-bom/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "cyclonedx-bom"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
description = "CycloneDX Software Bill of Materials Library"
5-
categories = []
5+
categories = ["encoding", "parser-implementations"]
66
keywords = ["sbom", "bom", "components", "dependencies", "owasp"]
77
readme = "README.md"
88

0 commit comments

Comments
 (0)