diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c3b24b42..19cd64f90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -81,6 +81,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.2.38](https://github.com/rust-lang/cc-rs/compare/cc-v1.2.37...cc-v1.2.38) - 2025-09-19 + +### Other + +- updated the following local packages: find-msvc-tools + ## [1.2.37](https://github.com/rust-lang/cc-rs/compare/cc-v1.2.36...cc-v1.2.37) - 2025-09-12 ### Other diff --git a/Cargo.toml b/Cargo.toml index 698309d2e..67d80d185 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cc" -version = "1.2.37" +version = "1.2.38" authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/cc-rs" @@ -22,7 +22,7 @@ rust-version = "1.63" [dependencies] jobserver = { version = "0.1.30", default-features = false, optional = true } shlex = "1.3.0" -find-msvc-tools = { version = "0.1.1", path = "find-msvc-tools" } +find-msvc-tools = { version = "0.1.2", path = "find-msvc-tools" } [target.'cfg(unix)'.dependencies] # Don't turn on the feature "std" for this, see https://github.com/rust-lang/cargo/issues/4866 diff --git a/find-msvc-tools/CHANGELOG.md b/find-msvc-tools/CHANGELOG.md index 527ce922b..73a4fcfc8 100644 --- a/find-msvc-tools/CHANGELOG.md +++ b/find-msvc-tools/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.2](https://github.com/rust-lang/cc-rs/compare/find-msvc-tools-v0.1.1...find-msvc-tools-v0.1.2) - 2025-09-19 + +### Other + +- [win] Search the Windows SDK for tools as well ([#1553](https://github.com/rust-lang/cc-rs/pull/1553)) + ## [0.1.1](https://github.com/rust-lang/cc-rs/compare/find-msvc-tools-v0.1.0...find-msvc-tools-v0.1.1) - 2025-09-05 ### Other diff --git a/find-msvc-tools/Cargo.toml b/find-msvc-tools/Cargo.toml index bd742fe28..0b7db16ee 100644 --- a/find-msvc-tools/Cargo.toml +++ b/find-msvc-tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "find-msvc-tools" -version = "0.1.1" +version = "0.1.2" edition = "2018" license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/cc-rs"