diff --git a/CHANGELOG.md b/CHANGELOG.md index a16b04cb..5c0f7c77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.2.55](https://github.com/rust-lang/cc-rs/compare/cc-v1.2.54...cc-v1.2.55) - 2026-01-30 + +### Other + +- Regenerate target info ([#1667](https://github.com/rust-lang/cc-rs/pull/1667)) +- Fix RUSTFLAGS typo in test-linker-plugin-lto ([#1665](https://github.com/rust-lang/cc-rs/pull/1665)) +- Disable PIC for armv7-sony-vita-newlibeabihf ([#1664](https://github.com/rust-lang/cc-rs/pull/1664)) + ## [1.2.54](https://github.com/rust-lang/cc-rs/compare/cc-v1.2.53...cc-v1.2.54) - 2026-01-23 ### Other diff --git a/Cargo.toml b/Cargo.toml index 7fef95dc..2cf3fc4b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cc" -version = "1.2.54" +version = "1.2.55" 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.8", path = "find-msvc-tools" } +find-msvc-tools = { version = "0.1.9", 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 283a256d..27dcec91 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.9](https://github.com/rust-lang/cc-rs/compare/find-msvc-tools-v0.1.8...find-msvc-tools-v0.1.9) - 2026-01-30 + +### Other + +- Add `find_windows_sdk` API ([#1663](https://github.com/rust-lang/cc-rs/pull/1663)) + ## [0.1.8](https://github.com/rust-lang/cc-rs/compare/find-msvc-tools-v0.1.7...find-msvc-tools-v0.1.8) - 2026-01-16 ### Other diff --git a/find-msvc-tools/Cargo.toml b/find-msvc-tools/Cargo.toml index 7990c9be..0834c694 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.8" +version = "0.1.9" edition = "2018" license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/cc-rs"