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 <me@carllerche.com>", @@ -14,7 +14,7 @@ authors = [ "Tokio Contributors <team@tokio.rs>", ] 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,