diff --git a/Cargo.lock b/Cargo.lock index 448055c..fcc0578 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -110,7 +110,7 @@ dependencies = [ [[package]] name = "cargo-auditable" -version = "0.6.6" +version = "0.6.7" dependencies = [ "auditable-info", "auditable-serde", diff --git a/cargo-auditable/CHANGELOG.md b/cargo-auditable/CHANGELOG.md index c821216..eee2a1c 100644 --- a/cargo-auditable/CHANGELOG.md +++ b/cargo-auditable/CHANGELOG.md @@ -5,6 +5,13 @@ 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.7] - 2025-05-04 + +### Changed + + - Made the `rustc` argument parser more lenient. This allows proc macros such as the `embed-licensing` crate that call arbitrary `rustc` commands to work with `cargo-auditable`. + - Added a heuristic to detect projects that use a "bare" linker. Normally `rustc` uses a C compiler as a linker, but it is possible to (mis)configure it to call a linker directly on some platforms. `cargo auditable` now tries to detect that and adjust its linker arguments accordingly on Unix-like systems. We do not recommend using this configuration, since it is likely to break things other than `cargo auditable`. + ## [0.6.6] - 2024-11-24 ### Changed diff --git a/cargo-auditable/Cargo.toml b/cargo-auditable/Cargo.toml index 7c3cd66..957dd72 100644 --- a/cargo-auditable/Cargo.toml +++ b/cargo-auditable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-auditable" -version = "0.6.6" +version = "0.6.7" edition = "2021" authors = ["Sergey \"Shnatsel\" Davidoff "] license = "MIT OR Apache-2.0"