diff --git a/CHANGELOG.md b/CHANGELOG.md index 27727c5..3484738 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ 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.3.32] - 2025-03-03 + +### Fixed + +- Suggest installing pkgconf via homebrew on macOS instead of pkg-config (#173) + +- Quote failed pkg-config command correctly in error messages to allow for + directly copy&pasting it into a shell (#175) + ## [0.3.31] - 2024-09-23 ### Fixed diff --git a/Cargo.lock.msrv b/Cargo.lock.msrv index c5dd9c2..6b5f4c2 100644 --- a/Cargo.lock.msrv +++ b/Cargo.lock.msrv @@ -5,7 +5,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "pkg-config" -version = "0.3.30" +version = "0.3.32" dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/Cargo.toml b/Cargo.toml index 5e73117..a40ff76 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pkg-config" -version = "0.3.31" +version = "0.3.32" authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/pkg-config-rs"