From 99deb99f3b517cde78c6557bcfc26d4d4f50888f Mon Sep 17 00:00:00 2001 From: "Sergey \"Shnatsel\" Davidoff" Date: Tue, 3 Mar 2026 16:00:41 +0000 Subject: [PATCH 1/3] Update changelog --- cargo-auditable/CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cargo-auditable/CHANGELOG.md b/cargo-auditable/CHANGELOG.md index 9345cc9..5847337 100644 --- a/cargo-auditable/CHANGELOG.md +++ b/cargo-auditable/CHANGELOG.md @@ -5,6 +5,12 @@ 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`. + ## [0.7.2] - 2025-11-09 ### Changed From e910d17825740de19a19cfdfc51b82a4f0871906 Mon Sep 17 00:00:00 2001 From: "Sergey \"Shnatsel\" Davidoff" Date: Tue, 3 Mar 2026 16:00:52 +0000 Subject: [PATCH 2/3] Bump version --- Cargo.lock | 2 +- cargo-auditable/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4551437..299d03d 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/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" From dddb11a809b6da3515361604cd09d4d11b8d8299 Mon Sep 17 00:00:00 2001 From: "Sergey \"Shnatsel\" Davidoff" Date: Tue, 3 Mar 2026 21:33:12 +0000 Subject: [PATCH 3/3] Update changelog --- cargo-auditable/CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cargo-auditable/CHANGELOG.md b/cargo-auditable/CHANGELOG.md index 5847337..f42c23f 100644 --- a/cargo-auditable/CHANGELOG.md +++ b/cargo-auditable/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - 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