From 25676b3aa2f295b6f23d7160d6e995052d9ddc1a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 17 Nov 2024 05:25:50 +0000 Subject: [PATCH] chore: release v0.2.165 --- 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 1a863b8af17a8..7cf85d0ce1fbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ ## [Unreleased] +## [0.2.165](https://github.com/rust-lang/libc/compare/0.2.164...0.2.165) - 2024-11-17 + +### Other + +- Merge pull request [#4078](https://github.com/rust-lang/libc/pull/4078) from tgross35/posix-spawn-diff-indicators +- Take documentation from `main` +- fix some typos +- Drop the `ptr_addr_of` conditional +- Require rust >= 1.40 and drop libc_non_exhaustive conditional +- Require rust >= 1.33 and drop libc_cfg_target_vendor conditional +- Require rust >= 1.33 and drop libc_packedN conditional +- Require rust >= 1.30 and drop libc_core_cvoid conditional +- Require rust >= 1.26 and drop libc_int128 conditional +- Drop warnings about deprecated cargo features +- Require rust >= 1.25 and drop libc_align conditional +- Explicitly set the edition to 2015 + ## [0.2.164](https://github.com/rust-lang/libc/compare/0.2.163...0.2.164) - 2024-11-16 ### MSRV diff --git a/Cargo.toml b/Cargo.toml index 393db74cc2d8e..0c0eff477a01d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libc" -version = "0.2.164" +version = "0.2.165" 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 62329d609a32f..39e42c8b7875b 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.164" +version = "0.2.165" default-features = false [build-dependencies]