diff --git a/Cargo.lock b/Cargo.lock index d58725f9..f58cd0e1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -227,7 +227,7 @@ dependencies = [ [[package]] name = "cargo-cyclonedx" -version = "0.5.4" +version = "0.5.5" dependencies = [ "anyhow", "assert_cmd", diff --git a/cargo-cyclonedx/CHANGELOG.md b/cargo-cyclonedx/CHANGELOG.md index 2f5bd805..492a7655 100644 --- a/cargo-cyclonedx/CHANGELOG.md +++ b/cargo-cyclonedx/CHANGELOG.md @@ -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.5 - 2024-07-01 + +### Changed + + - Build dependencies are now recorded with `scope: "excluded"`, to indicate that they are not used at runtime. ([#755]) + +### Added + + - `--no-build-deps` flag to omit build dependencies entirely. ([#755]) + ## 0.5.4 - 2024-07-17 ### Fixed @@ -131,3 +141,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#724]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/724 [#727]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/727 [#746]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/746 +[#755]: https://github.com/CycloneDX/cyclonedx-rust-cargo/pull/755 \ No newline at end of file diff --git a/cargo-cyclonedx/Cargo.toml b/cargo-cyclonedx/Cargo.toml index 2b34d342..820e48da 100644 --- a/cargo-cyclonedx/Cargo.toml +++ b/cargo-cyclonedx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-cyclonedx" -version = "0.5.4" +version = "0.5.5" 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"]