From dbb88ae24605f17f5f166a9117ee6e2eee195529 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 15 Aug 2024 21:45:07 +0000 Subject: [PATCH] chore: release --- 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 4fcf6c3444619..bc6279384c848 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.157](https://github.com/nathaniel-bennett/libc/compare/0.2.156...0.2.157) - 2024-08-15 + +### Other +- Add additional Linux AF_PACKET options +- Merge pull request [#3827](https://github.com/nathaniel-bennett/libc/pull/3827) from tgross35/backport-beetroot +- openbsd/netbsd factorise getnameinfo. +- Add semver/wasi.txt +- Add wasi select, FD_SET, FD_ZERO, FD_ISSET +- Add fcntl OFD commands for macOS + ## [0.2.156](https://github.com/rust-lang/libc/compare/0.2.155...0.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]