From 20b7298fe0d3da04b965ec4a379db0247cd632be Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Wed, 17 Feb 2021 21:17:29 +0100 Subject: [PATCH] Release v0.7.8 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e5059c9e..2f23320ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.7.8 + +## Fixes + +* Fix `TcpStream::set_linger` on macOS + (https://github.com/tokio-rs/mio/commit/175773ce02e85977db81224c782c8d140aba8543). +* Fix compilation on DragonFlyBSD + (https://github.com/tokio-rs/mio/commit/b51af46b28871f8dd3233b490ee62237ffed6a26). + # 0.7.7 ## Added diff --git a/Cargo.toml b/Cargo.toml index 87c9f20bc..0d4b1d818 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.7" +version = "0.7.8" license = "MIT" authors = [ "Carl Lerche ", diff --git a/src/lib.rs b/src/lib.rs index e81575476..fedb78946 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/mio/0.7.7")] +#![doc(html_root_url = "https://docs.rs/mio/0.7.8")] #![deny( missing_docs, missing_debug_implementations,