From 07bc32f27b4f2488de91a66cfd489eae97551635 Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Mon, 22 Feb 2021 22:19:44 +0100 Subject: [PATCH] Release v0.7.9 --- CHANGELOG.md | 12 ++++++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f23320ae..4e0460381 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# 0.7.9 + +## Fixes + +* Fix error handling in `NamedPipe::write` + (https://github.com/tokio-rs/mio/commit/aec872be9732e5c6685100674278be27f54a271b). +* Use `accept(2)` on x86 Android instead of `accept4(2)` + (https://github.com/tokio-rs/mio/commit/6f86b925d3e48f30905d5cfa54348acf3f1fa036, + https://github.com/tokio-rs/mio/commit/8d5414880ab82178305ac1d2c16d715e58633d3e). +* Improve error message when opening AFD device + (https://github.com/tokio-rs/mio/commit/139f7c4422321eb4a17b14ae2c296fddd19a8804). + # 0.7.8 ## Fixes diff --git a/Cargo.toml b/Cargo.toml index 0d4b1d818..5cf1dcfdc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ name = "mio" # - Update CHANGELOG.md. # - Update doc URL. # - Create git tag -version = "0.7.8" +version = "0.7.9" license = "MIT" authors = [ "Carl Lerche ", diff --git a/src/lib.rs b/src/lib.rs index fedb78946..a9aa2d7cd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/mio/0.7.8")] +#![doc(html_root_url = "https://docs.rs/mio/0.7.9")] #![deny( missing_docs, missing_debug_implementations,