From 217b2ab86e6a43a8665225ae6552b980f56010fe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 Aug 2024 23:25:29 +0000 Subject: [PATCH] chore: release --- 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 76c07f7f791e6..1f84a755fa556 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ ## [Unreleased] +## [0.2.157](https://github.com/rust-lang/libc/compare/0.2.156...0.2.157) - 2024-08-17 + +### Other +- Merge pull request [#3852](https://github.com/rust-lang/libc/pull/3852) from tgross35/backport-onion +- always use freebsd12 when rustc_dep_of_std is set +- freebsd adding execvpe support from 14.1 release +- Merge pull request [#3845](https://github.com/rust-lang/libc/pull/3845) from nathaniel-bennett/rustc-wrapper-fix-0.2 +- Add RUSTC_WRAPPER support to build script +- Update CHANGELOG.md for 0.2.156 +- Merge pull request [#3835](https://github.com/rust-lang/libc/pull/3835) from tgross35/revert-bsd-getnameinfo-0.2 +- Merge pull request [#3833](https://github.com/rust-lang/libc/pull/3833) from tgross35/backport-potato +- add `pthread_equal` +- netbsd adding _lwp_park api. +- Merge pull request [#3829](https://github.com/rust-lang/libc/pull/3829) from rust-lang/tgross35-patch-2 +- Merge pull request [#3828](https://github.com/rust-lang/libc/pull/3828) from rust-lang/tgross35-patch-1 +- Update CHANGELOG.md + ## [0.2.156](https://github.com/rust-lang/libc/compare/v0.2.155...v0.2.156) - 2024-08-15 ### Added diff --git a/Cargo.toml b/Cargo.toml index 978eeac2121ff..29a9643c3142d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libc" -version = "0.2.156" +version = "0.2.157" 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 14f824424761a..ac531c5826cc2 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.156" +version = "0.2.157" default-features = false [build-dependencies]