From 75f41fb304d299dfbc07679d15193e03273c4597 Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Mon, 14 Jun 2021 21:00:17 +0200 Subject: [PATCH] Release v0.7.13 --- CHANGELOG.md | 9 ++++++++- Cargo.toml | 4 ++-- src/lib.rs | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb08ed513..4e12fc325 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ -# 0.7.12 +# 0.7.13 + +## Fixes + +* Fix `Registry::try_clone` invalid usage of `F_DUPFD_CLOEXEC` (#1497, + https://github.com/tokio-rs/mio/commit/2883f5c1f35bf1a59682c5ffc4afe6b97d7d6e68). + +# 0.7.12 (yanked) ## Fixes diff --git a/Cargo.toml b/Cargo.toml index f72559752..aa2e6776c 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.12" +version = "0.7.13" license = "MIT" authors = [ "Carl Lerche ", @@ -14,7 +14,7 @@ authors = [ "Tokio Contributors ", ] description = "Lightweight non-blocking IO" -documentation = "https://docs.rs/mio/0.7.12" +documentation = "https://docs.rs/mio/0.7.13" 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 2db039855..165a3404e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/mio/0.7.12")] +#![doc(html_root_url = "https://docs.rs/mio/0.7.13")] #![deny( missing_docs, missing_debug_implementations,