From 7adfb75fdefe98e3b57438bafa36c09a85377777 Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Sat, 12 Jun 2021 20:44:18 +0200 Subject: [PATCH] Release v0.7.12 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 4 ++-- src/lib.rs | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 72cb770ae..eb08ed513 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 0.7.12 + +## Fixes + +* Set `FD_CLOEXEC` when calling `Registry::try_clone` + (https://github.com/tokio-rs/mio/commit/d1617b567ff6bc669d71e367d22e0e93ff7e2e24 for epoll and + (https://github.com/tokio-rs/mio/commit/b367a05e408ca90a26383c3aa16d8a16f019dc59 for kqueue). + # 0.7.11 ## Fixes diff --git a/Cargo.toml b/Cargo.toml index a14d17ded..f72559752 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.11" +version = "0.7.12" license = "MIT" authors = [ "Carl Lerche ", @@ -14,7 +14,7 @@ authors = [ "Tokio Contributors ", ] description = "Lightweight non-blocking IO" -documentation = "https://docs.rs/mio/0.7.7" +documentation = "https://docs.rs/mio/0.7.12" homepage = "https://github.com/tokio-rs/mio" repository = "https://github.com/tokio-rs/mio" readme = "README.md" diff --git a/src/lib.rs b/src/lib.rs index ad417c2bb..2db039855 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/mio/0.7.11")] +#![doc(html_root_url = "https://docs.rs/mio/0.7.12")] #![deny( missing_docs, missing_debug_implementations,