From 01a584f0553c5dfee5b010156684f2bdee3f8a6e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 12:41:15 +0000 Subject: [PATCH] chore: release v0.2.170 --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- libc-test/Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1efe1f84004..ed4ade3464c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Changelog ## [Unreleased] +## [0.2.170](https://github.com/rust-lang/libc/compare/0.2.169...0.2.170) - 2024-12-23 + +### Other + +- Define c_char at top-level and remove per-target c_char definitions +- Allow `unpredictable_function_pointer_comparisons` in another place + +### Removed + +- Remove `c_char` from the PSP module ## [0.2.169](https://github.com/rust-lang/libc/compare/0.2.168...0.2.169) - 2024-12-18 ### Added diff --git a/Cargo.toml b/Cargo.toml index aa6926ee5f0b..e3b20745500d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libc" -version = "0.2.169" +version = "0.2.170" authors = ["The Rust Project Developers"] license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/libc-test/Cargo.toml b/libc-test/Cargo.toml index 007663f69c42..2cf70f5bbc81 100644 --- a/libc-test/Cargo.toml +++ b/libc-test/Cargo.toml @@ -14,7 +14,7 @@ A test crate for the libc crate. [dependencies.libc] path = ".." -version = "0.2.169" +version = "0.2.170" default-features = false [build-dependencies]