Skip to content

Commit b8c255c

Browse files
chore: release v0.2.162
Co-authored-by: Trevor Gross <[email protected]>
1 parent acb0c19 commit b8c255c

File tree

3 files changed

+40
-2
lines changed

3 files changed

+40
-2
lines changed

Diff for: CHANGELOG.md

+38
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,44 @@
22

33
## [Unreleased]
44

5+
## [0.2.162](https://github.com/rust-lang/libc/compare/0.2.161...0.2.162) - 2024-11-07
6+
7+
### Added
8+
9+
- Android: fix the alignment of `uc_mcontext` on arm64 <https://github.com/rust-lang/libc/pull/3894>
10+
- Apple: add `host_cpu_load_info` <https://github.com/rust-lang/libc/pull/3916>
11+
- ESP-IDF: add a time flag <https://github.com/rust-lang/libc/pull/3993>
12+
- FreeBSD: add the `CLOSE_RANGE_CLOEXEC` flag<https://github.com/rust-lang/libc/pull/3996>
13+
- FreeBSD: fix test errors regarding `__gregset_t` <https://github.com/rust-lang/libc/pull/3995>
14+
- FreeBSD: fix tests on x86 FreeBSD 15 <https://github.com/rust-lang/libc/pull/3948>
15+
- FreeBSD: make `ucontext_t` and `mcontext_t` available on all architectures <https://github.com/rust-lang/libc/pull/3848>
16+
- Haiku: add `getentropy` <https://github.com/rust-lang/libc/pull/3991>
17+
- Illumos: add `syncfs` <https://github.com/rust-lang/libc/pull/3990>
18+
- Illumos: add some recently-added constants <https://github.com/rust-lang/libc/pull/3999>
19+
- Linux: add `ioctl` flags <https://github.com/rust-lang/libc/pull/3960>
20+
- Linux: add epoll busy polling parameters <https://github.com/rust-lang/libc/pull/3922>
21+
- NuttX: add `pthread_[get/set]name_np` <https://github.com/rust-lang/libc/pull/4003>
22+
- RTEMS: add `arc4random_buf` <https://github.com/rust-lang/libc/pull/3989>
23+
- Trusty OS: add initial support <https://github.com/rust-lang/libc/pull/3942>
24+
- WASIp2: expand socket support <https://github.com/rust-lang/libc/pull/3981>
25+
26+
### Fixed
27+
28+
- Emscripten: don't pass `-lc` <https://github.com/rust-lang/libc/pull/4002>
29+
- Hurd: change `st_fsid` field to `st_dev` <https://github.com/rust-lang/libc/pull/3785>
30+
- Hurd: fix the definition of `utsname` <https://github.com/rust-lang/libc/pull/3992>
31+
- Illumos/Solaris: fix `FNM_CASEFOLD` definition <https://github.com/rust-lang/libc/pull/4004>
32+
- Solaris: fix all tests <https://github.com/rust-lang/libc/pull/3864>
33+
34+
### Other
35+
36+
- CI: Add loongarch64 <https://github.com/rust-lang/libc/pull/4000>
37+
- CI: Check that semver files are sorted <https://github.com/rust-lang/libc/pull/4018>
38+
- CI: Re-enable the FreeBSD 15 job <https://github.com/rust-lang/libc/pull/3988>
39+
- Clean up imports and `extern crate` usage <https://github.com/rust-lang/libc/pull/3897>
40+
- Convert `mode_t` constants to octal <https://github.com/rust-lang/libc/pull/3634>
41+
- Remove the `wasm32-wasi` target that has been deleted upstream <https://github.com/rust-lang/libc/pull/4013>
42+
543
## [0.2.161](https://github.com/rust-lang/libc/compare/0.2.160...0.2.161) - 2024-10-17
644

745
### Fixed

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libc"
3-
version = "0.2.161"
3+
version = "0.2.162"
44
authors = ["The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

Diff for: libc-test/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ A test crate for the libc crate.
1414

1515
[dependencies.libc]
1616
path = ".."
17-
version = "0.2.161"
17+
version = "0.2.162"
1818
default-features = false
1919

2020
[build-dependencies]

0 commit comments

Comments
 (0)