From 49b1017a53cde8ad7c309c3ce99ec9d284eae7a7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 29 Aug 2024 21:06:15 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.toml | 2 +- libc-test/Cargo.toml | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5ac00205b010..067255351371c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ ## [Unreleased] +## [0.2.159](https://github.com/rust-lang/libc/compare/0.2.158...0.2.159) - 2024-08-29 + +### Other +- 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 8fe2ad6badabf..3ca0827a37aed 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 033458e8bd5de..8f25c7f2ca9d9 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]