From a1aa6e3c029d73c19a867ba4edb518153f98a794 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Oct 2025 03:11:14 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 4 ++-- find-msvc-tools/CHANGELOG.md | 6 ++++++ find-msvc-tools/Cargo.toml | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f00863f..549fb5e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.2.40](https://github.com/rust-lang/cc-rs/compare/cc-v1.2.39...cc-v1.2.40) - 2025-10-03 + +### Other + +- Reorder changelog and remove duplicate Unreleased section ([#1579](https://github.com/rust-lang/cc-rs/pull/1579)) +- Prefer clang if linker-plugin-lto specified ([#1573](https://github.com/rust-lang/cc-rs/pull/1573)) +- Fix building for Mac Catalyst ([#1577](https://github.com/rust-lang/cc-rs/pull/1577)) +- Improve ESP microcontroller targets ([#1574](https://github.com/rust-lang/cc-rs/pull/1574)) + ## [1.2.39](https://github.com/rust-lang/cc-rs/compare/cc-v1.2.38...cc-v1.2.39) - 2025-09-26 ### Other diff --git a/Cargo.toml b/Cargo.toml index e171ea4e..7e7f2425 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cc" -version = "1.2.39" +version = "1.2.40" 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.2", path = "find-msvc-tools" } +find-msvc-tools = { version = "0.1.3", 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 73a4fcfc..a6464856 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.3](https://github.com/rust-lang/cc-rs/compare/find-msvc-tools-v0.1.2...find-msvc-tools-v0.1.3) - 2025-10-03 + +### Other + +- Regenerate windows sys bindings ([#1572](https://github.com/rust-lang/cc-rs/pull/1572)) + ## [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 diff --git a/find-msvc-tools/Cargo.toml b/find-msvc-tools/Cargo.toml index 0b7db16e..07dd11c5 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.2" +version = "0.1.3" edition = "2018" license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/cc-rs"