From 00fe87d55e9fb2e221d391dda9e2c3d1080f8743 Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Tue, 14 Feb 2023 11:57:17 +0100 Subject: [PATCH] Release v0.8.6 --- CHANGELOG.md | 21 +++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10d91543..e45a2b3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +# 0.8.6 + +## Added + +* `Interest::PRIORITY` on Linux and Android, to trigger `Event::is_priority` + (https://github.com/tokio-rs/mio/pull/1647). + +## Changed + +* Updated windows-sys to 0.45 + (https://github.com/tokio-rs/mio/pull/1644). +* We started testing with sanitizers on the CI + (https://github.com/tokio-rs/mio/pull/1648). + +## Fixed + +* A number of potential fd leaks when setup resulted in an error right after + creation (https://github.com/tokio-rs/mio/pull/1636). +* Less truncating for timeout values in `Poll::poll` + (https://github.com/tokio-rs/mio/pull/1642). + # 0.8.5 ## Changed diff --git a/Cargo.toml b/Cargo.toml index d146e170..84eb63b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ name = "mio" # When releasing to crates.io: # - Update CHANGELOG.md. # - Create git tag -version = "0.8.5" +version = "0.8.6" license = "MIT" authors = [ "Carl Lerche ",