diff --git a/Cargo.lock b/Cargo.lock index 21442d3..9b0a3fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -116,7 +116,7 @@ dependencies = [ [[package]] name = "cargo-auditable" -version = "0.7.2" +version = "0.7.3" dependencies = [ "auditable-info", "auditable-serde", diff --git a/cargo-auditable/CHANGELOG.md b/cargo-auditable/CHANGELOG.md index 9345cc9..f42c23f 100644 --- a/cargo-auditable/CHANGELOG.md +++ b/cargo-auditable/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.7.3] - 2026-03-03 + +### Changed + + - On Unix, use `-u` linker flag instead of `--undefined` for broader compatibility. Most notably fixes compatibility with the Zig toolchain linker, making `cargo zigbuild` work with `cargo auditable`. + +### Fixed + + - Fixed build failures for bare linker configurations on Apple platforms, and added test for bare linker configurations for Apple and linux-musl. + ## [0.7.2] - 2025-11-09 ### Changed diff --git a/cargo-auditable/Cargo.toml b/cargo-auditable/Cargo.toml index 1e36002..d3af312 100644 --- a/cargo-auditable/Cargo.toml +++ b/cargo-auditable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-auditable" -version = "0.7.2" +version = "0.7.3" edition = "2021" authors = ["Sergey \"Shnatsel\" Davidoff "] license = "MIT OR Apache-2.0"