diff options
author | bors <bors@rust-lang.org> | 2021-04-26 13:10:10 +0000 |
---|---|---|
committer | bors <bors@rust-lang.org> | 2021-04-26 13:10:10 +0000 |
commit | 50af40e2776fa3573bdf8071a3fe98cea41206da (patch) | |
tree | e09099505b29c0b4748d8f0391bd66c4023e28c5 | |
parent | c8941246864e2484fa9c2a8e1a8f573ef4311c5d (diff) | |
parent | b24265e1abaded6a581464287ad52fa94e0687ec (diff) | |
download | rust-libc-50af40e2776fa3573bdf8071a3fe98cea41206da.tar.gz |
Auto merge of #2149 - lucab:ups/release-0.2.94, r=JohnTitor0.2.94
Bump to 0.2.94
Changes:
* Add kqueue1 to NetBSD
* Add Android items from "sys/system_properties.h"
* Add new header to the android header files list
* Add dl_iterate_phdr to Android
* Update dl_phdr_info definition to more closely match header files
* linux: add syncfs(2)
* Add macos clonefile functions
* Add RLIM_NLIMITS constant as alias of RLIMIT_NLIMITS on linux_like
* Add RLIM_NLIMITS on android
* Unified Linux TCP socket options
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | libc-test/Cargo.toml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml index 84f2d29827..1299376e2f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libc" -version = "0.2.93" +version = "0.2.94" 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 b5d12c9653..7f891fa9cb 100644 --- a/libc-test/Cargo.toml +++ b/libc-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libc-test" -version = "0.2.93" +version = "0.2.94" authors = ["The Rust Project Developers"] license = "MIT OR Apache-2.0" build = "build.rs" @@ -12,7 +12,7 @@ A test crate for the libc crate. [dependencies.libc] path = ".." -version = "0.2.93" +version = "0.2.94" default-features = false [build-dependencies] |