From 48ff5e524367af9c0e547d554f2c18af5246bb50 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Nov 2024 06:01:52 +0000 Subject: [PATCH] chore: release v0.2.163 --- 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 d6fb0b82c45a7..3aa0537a98a1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ ## [Unreleased] +## [0.2.163](https://github.com/rust-lang/libc/compare/0.2.162...0.2.163) - 2024-11-16 + +### Other + +- 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]