From 4789ece900159fc872b5dc9376590c1bbe388406 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 15 Aug 2024 18:25:26 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 54 ++++++++++++++++++++++++++++++++++++++++++++ Cargo.toml | 2 +- libc-test/Cargo.toml | 2 +- 3 files changed, 56 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000000000..4fcf6c3444619 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,54 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.2.156](https://github.com/rust-lang/libc/compare/0.2.155...0.2.156) - 2024-08-15 + +### Added +- F_ALLOCATEPERSIST for apple +- IP_RECVTTL/IPV6_RECVHOPLIMIT for FreeBSD/DragonFly + +### Fixed +- Remove macOS 11 usage on CI +- Allow dead_code lint + +### Other +- Enable publishing new versions via release-plz +- Add `release-plz` for the 0.2 branch +- Merge pull request [#3821](https://github.com/rust-lang/libc/pull/3821) from tgross35/backport-celery +- Modify QNX NTO platform support +- Adding constant SOMAXCONN to vxworks +- Add XATTR_CREATE, XATTR_REPLACE +- Change ifa_flags type to u64 for Solaris/illumos +- add confstr API and _CS_* to linux-gnu +- Merge pull request [#3814](https://github.com/rust-lang/libc/pull/3814) from tgross35/backport-hermit +- Merge pull request [#3813](https://github.com/rust-lang/libc/pull/3813) from tgross35/backport-futex-constants +- Merge pull request [#3812](https://github.com/rust-lang/libc/pull/3812) from tgross35/backport-fbsd-kinfo_file +- Merge pull request [#3811](https://github.com/rust-lang/libc/pull/3811) from tgross35/backport-riscv64-clone_args +- Merge pull request [#3810](https://github.com/rust-lang/libc/pull/3810) from tgross35/backport-haiku-b_app_image_symbol +- Merge pull request [#3807](https://github.com/rust-lang/libc/pull/3807) from sunshowers/illumos-pthread-pick +- vxWorks adding few errnoLib related constants. +- Disable hexagon-unknown-linux-musl testing for now +- Fix FreeBSD 15 CI +- Remove tier 3 targets from CI +- Tweak comment +- Disable `libregex` for QNX 7.0 +- Reference specific MSRV in comment +- `addr_of!(EXTERN_STATIC)` is now considered safe +- `rmx_state` has been removed +- skip API that requires a newer macOS SDK in tests +- add `os_sync_wait_on_address` and related definitions +- adding preadv2/pwritev2 to linux musl (1.2.5 min.) +- Merge pull request [#3716](https://github.com/rust-lang/libc/pull/3716) from devnexen/ipv6_dontfrag +- generalising IPV6_DONTFRAG to all bsd. +- Merge pull request [#3715](https://github.com/rust-lang/libc/pull/3715) from tesuji/ci-verbosity +- Merge pull request [#3700](https://github.com/rust-lang/libc/pull/3700) from asomers/freebsd-capsicum-libc0.2 +- Merge pull request [#3738](https://github.com/rust-lang/libc/pull/3738) from operutka/getauxval_uclibc +- Merge pull request [#3737](https://github.com/rust-lang/libc/pull/3737) from operutka/si_pid_uclibc +- Merge pull request [#3747](https://github.com/rust-lang/libc/pull/3747) from djkoloski/libc-0.2 +- Merge pull request [#3719](https://github.com/rust-lang/libc/pull/3719) from tesuji/ci-cirrus-cache +- Merge pull request [#3750](https://github.com/rust-lang/libc/pull/3750) from SteveLauC/feat/IP_RECVTTL_FreeBSD diff --git a/Cargo.toml b/Cargo.toml index 0da99d4ba1c32..978eeac2121ff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libc" -version = "0.2.155" +version = "0.2.156" 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 843cd89fccdb7..14f824424761a 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.155" +version = "0.2.156" default-features = false [build-dependencies]