Skip to content

Commit

Permalink
Merge pull request #726 from Shnatsel/new-releases
Browse files Browse the repository at this point in the history
Bugfix releases
  • Loading branch information
Shnatsel authored Jun 4, 2024
2 parents 9de191c + f67332f commit 23e4666
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 4 deletions.
12 changes: 12 additions & 0 deletions cargo-cyclonedx/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.5.2 - 2024-06-04

### Fixed

- Fixed a panic when outputting CycloneDX v1.5 ([#722])

### Changed

- Removed `--allow-dirty` flag from the publishing workflow so that the provenance of the package uploaded to crates.io can be established ([#724])

## 0.5.1 - 2024-05-22

### Added
Expand Down Expand Up @@ -101,3 +111,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#620]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/620
[#630]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/630
[#634]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/634
[#722]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/722
[#724]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/724
4 changes: 2 additions & 2 deletions cargo-cyclonedx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-cyclonedx"
version = "0.5.1"
version = "0.5.2"
categories = ["command-line-utilities", "development-tools", "development-tools::cargo-plugins"]
description = "CycloneDX Software Bill of Materials (SBOM) for Rust Crates"
keywords = ["sbom", "bom", "components", "dependencies", "owasp"]
Expand All @@ -25,7 +25,7 @@ anyhow = "1.0.75"
cargo-lock = "9.0.0"
cargo_metadata = "0.18.1"
clap = { version = "4.4.11", features = ["derive"] }
cyclonedx-bom = { version = "0.6.0", path = "../cyclonedx-bom" }
cyclonedx-bom = { version = "0.6.1", path = "../cyclonedx-bom" }
env_logger = "0.10.0"
log = "0.4.20"
once_cell = "1.18.0"
Expand Down
17 changes: 17 additions & 0 deletions cyclonedx-bom/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.6.1 - 2024-06-04

### Added

- A series of APIs that serialize and deserialize in the format specified with the `SpecVersion` enum ([#725])

### Fixed

- Fixed a panic when parsing CycloneDX v1.5 from a `serde_json::Value` ([#723])

### Changed

- Removed `--allow-dirty` flag from the publishing workflow so that the provenance of the package uploaded to crates.io can be established ([#724])

## 0.6.0 - 2024-05-22

### Added
Expand Down Expand Up @@ -68,3 +82,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#707]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/707
[#708]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/708
[#709]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/709
[#723]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/723
[#724]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/724
[#725]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/725
4 changes: 2 additions & 2 deletions cyclonedx-bom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "cyclonedx-bom"
version = "0.6.0"
version = "0.6.1"
description = "CycloneDX Software Bill of Materials Library"
categories = []
categories = ["encoding", "parser-implementations"]
keywords = ["sbom", "bom", "components", "dependencies", "owasp"]
readme = "README.md"

Expand Down

0 comments on commit 23e4666

Please sign in to comment.