From 1cd41b759a379cf9c57ecae2542f538dc62418f1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 14 Nov 2025 03:21:55 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 6 ++++++ Cargo.toml | 4 ++-- find-msvc-tools/CHANGELOG.md | 6 ++++++ find-msvc-tools/Cargo.toml | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b8092cc..6042dabc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.2.46](https://github.com/rust-lang/cc-rs/compare/cc-v1.2.45...cc-v1.2.46) - 2025-11-14 + +### Other + +- Add Visual Studio 2026 support ([#1609](https://github.com/rust-lang/cc-rs/pull/1609)) + ## [1.2.45](https://github.com/rust-lang/cc-rs/compare/cc-v1.2.44...cc-v1.2.45) - 2025-11-07 ### Other diff --git a/Cargo.toml b/Cargo.toml index f05df9e5..99f20b41 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cc" -version = "1.2.45" +version = "1.2.46" 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.4", path = "find-msvc-tools" } +find-msvc-tools = { version = "0.1.5", 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 b25cae30..6ff338df 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.5](https://github.com/rust-lang/cc-rs/compare/find-msvc-tools-v0.1.4...find-msvc-tools-v0.1.5) - 2025-11-14 + +### Other + +- Add Visual Studio 2026 support ([#1609](https://github.com/rust-lang/cc-rs/pull/1609)) + ## [0.1.4](https://github.com/rust-lang/cc-rs/compare/find-msvc-tools-v0.1.3...find-msvc-tools-v0.1.4) - 2025-10-10 ### Other diff --git a/find-msvc-tools/Cargo.toml b/find-msvc-tools/Cargo.toml index 3bf4118b..ddbc31be 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.4" +version = "0.1.5" edition = "2018" license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/cc-rs"