diff --git a/CHANGELOG.md b/CHANGELOG.md index d6fb0b82c45a7..8d9071a0948c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ ## [Unreleased] +## [0.2.163](https://github.com/rust-lang/libc/compare/0.2.162...0.2.163) - 2024-11-16 + +### Added + +- add `aio` for solarish + +### Other + +- Add the TCP_FUNCTION_BLK and TCP_FUNCTION_ALIAS socket options +- add more dlopen flags +- adding arc4random* api family for solarish. +- Add CI, fix: confstr, uc_lwpid is missing from Solaris 11.4 CBE release +- Specify `rust-version = "1.19"` in Cargo.toml +- Drop using mod align +- Drop unused ssize_t type +- Support confstr on Linux +- Use more standard types + ## [0.2.162](https://github.com/rust-lang/libc/compare/0.2.161...0.2.162) - 2024-11-07 ### Added diff --git a/Cargo.toml b/Cargo.toml index 0658c88bbbaef..57fbc25879219 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libc" -version = "0.2.162" +version = "0.2.163" 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 bb8dfc22a17d0..4e0bb15e673ae 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.162" +version = "0.2.163" default-features = false [build-dependencies]