From 90ea98d44704d1672650b5886eb3b5e0942ebdf3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 11:23:56 +0000 Subject: [PATCH] chore: release v0.2.169 --- CHANGELOG.md | 17 +++++++++++++++++ Cargo.toml | 2 +- libc-test/Cargo.toml | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 43f7151f521e..c2113bdb604a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,23 @@ # Changelog ## [Unreleased] +## [0.2.169](https://github.com/rust-lang/libc/compare/0.2.168...0.2.169) - 2024-12-18 + +### Added + +- Update c_char type ([#4195](https://github.com/rust-lang/libc/pull/4195)) +- Add sockaddr_vm definition for Fuchsia + +### Fixed + +- Fix c_char on various targets + +### Other + +- Replace arch-conditional `c_char` with a reexport +- Do not re-export c_void in target-specific code +- Mirror `c_char` configuration from `rust-lang/rust` +- freebsd add more socket TCP stack constants. ## [0.2.168](https://github.com/rust-lang/libc/compare/0.2.167...0.2.168) - 2024-12-09 diff --git a/Cargo.toml b/Cargo.toml index b444a646655a..aa6926ee5f0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libc" -version = "0.2.168" +version = "0.2.169" 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 317c29bedc87..007663f69c42 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.168" +version = "0.2.169" default-features = false [build-dependencies]