diff --git a/CHANGELOG.md b/CHANGELOG.md index 01c340acaa11f..175278aa1c0b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## [Unreleased] +## [0.2.160](https://github.com/rust-lang/libc/compare/0.2.159...0.2.160) - 2024-09-30 + +### Other + +- Fix CI for FreeBSD 15, on libc-0.2 branch ([#3952](https://github.com/rust-lang/libc/pull/3952)) +- Fix "struct stat" on 32-bit FreeBSD 12+ ([#3939](https://github.com/rust-lang/libc/pull/3939)) + ## [0.2.159](https://github.com/rust-lang/libc/compare/0.2.158...0.2.159) - 2024-09-24 ### Added diff --git a/Cargo.toml b/Cargo.toml index 3ca0827a37aed..7001a797f7107 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libc" -version = "0.2.159" +version = "0.2.160" 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 8f25c7f2ca9d9..70b256dfce733 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.159" +version = "0.2.160" default-features = false [build-dependencies]