From e4c82eebc395e9e4fe392f2c29371c9b596c8bea Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 14:59:50 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 23 +++++++++++++++++++++++ Cargo.toml | 2 +- libc-test/Cargo.toml | 2 +- 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5ac00205b01..42282524d43d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,29 @@ ## [Unreleased] +## [0.2.159](https://github.com/rust-lang/libc/compare/0.2.158...0.2.159) - 2024-09-10 + +### Other + +- Simplify the RUSTC_WRAPPER check +- Fix rustc version when `clippy-driver` is used +- Revise network definitions for HorizonOS +- Merge pull request [#3900](https://github.com/rust-lang/libc/pull/3900) from tgross35/espid-cherry-pick +- Change signal constants to c_int on espidf +- Add wasm32-wasip2 definitions necessary for std::net support +- Add missing NOTE_MACHTIME and NOTE_MACH_CONTINUOUS_TIME constants to apple. +- linux adding new syscall SYS_mseal for x86_64 glibc/musl. +- adding new syscall id fchmodat2 for glibc/musl x86 (kernel >= 6.6). +- Merge pull request [#3877](https://github.com/rust-lang/libc/pull/3877) from tgross35/backport-butternut +- Add `wasm32-wasip2` to the test matrix on CI +- Re-enable testing of WASI on CI +- Merge pull request [#3873](https://github.com/rust-lang/libc/pull/3873) from tgross35/backport-cilantro +- Add functions from vxCpuLib.h and taskLib.h +- add missing symbols for HermitOS +- add missing error numbers for HermitOS +- Add android-riscv64 API check +- Add missing constant for Android + ## [0.2.158](https://github.com/rust-lang/libc/compare/0.2.157...0.2.158) - 2024-08-19 ### Other diff --git a/Cargo.toml b/Cargo.toml index 8fe2ad6badab..3ca0827a37ae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libc" -version = "0.2.158" +version = "0.2.159" 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 033458e8bd5d..8f25c7f2ca9d 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.158" +version = "0.2.159" default-features = false [build-dependencies]