Skip to content

Commit 3a5f075

Browse files
authored
Merge pull request #4207 from rust-lang/release-plz-2024-12-18T01-40-14Z
chore: release v0.2.169
2 parents 8ebcf49 + bb5944c commit 3a5f075

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
# Changelog
22

33
## [Unreleased]
4+
## [0.2.169](https://github.com/rust-lang/libc/compare/0.2.168...0.2.169) - 2024-12-18
5+
6+
### Added
7+
8+
- FreeBSD: add more socket TCP stack constants <https://github.com/rust-lang/libc/pull/4193>
9+
- Fuchsia: add a `sockaddr_vm` definition <https://github.com/rust-lang/libc/pull/4194>
10+
11+
### Fixed
12+
13+
**Breaking**: [rust-lang/rust#132975](https://github.com/rust-lang/rust/pull/132975) corrected the signedness of `core::ffi::c_char` on various Tier 2 and Tier 3 platforms (mostly Arm and RISC-V) to match Clang. This release contains the corresponding changes to `libc`, including the following specific pull requests:
14+
15+
- ESP-IDF: Replace arch-conditional `c_char` with a reexport <https://github.com/rust-lang/libc/pull/4195>
16+
- Fix `c_char` on various targets <https://github.com/rust-lang/libc/pull/4199>
17+
- Mirror `c_char` configuration from `rust-lang/rust` <https://github.com/rust-lang/libc/pull/4198>
18+
19+
### Cleanup
20+
21+
- Do not re-export `c_void` in target-specific code <https://github.com/rust-lang/libc/pull/4200>
422

523
## [0.2.168](https://github.com/rust-lang/libc/compare/0.2.167...0.2.168) - 2024-12-09
624

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libc"
3-
version = "0.2.168"
3+
version = "0.2.169"
44
authors = ["The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

libc-test/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ A test crate for the libc crate.
1414

1515
[dependencies.libc]
1616
path = ".."
17-
version = "0.2.168"
17+
version = "0.2.169"
1818
default-features = false
1919

2020
[build-dependencies]

0 commit comments

Comments
 (0)