From e80c3b21b59b92238f4c8c331fcfc4a71508d1c5 Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Mon, 23 Oct 2023 12:12:25 +0200 Subject: [PATCH] Release v0.8.9 --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 690d489c6..94fb3239e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,29 @@ +# 0.8.9 + +## Added + +* ESP-IDF framework support + (https://github.com/tokio-rs/mio/pull/1692). +* AIX operating system support + (https://github.com/tokio-rs/mio/pull/1704). +* Vita support + (https://github.com/tokio-rs/mio/pull/1721). +* `{UnixListener,UnixStream}:bind_addr` + (https://github.com/tokio-rs/mio/pull/1630). +* `mio_unsupported_force_poll_poll` and `mio_unsupported_force_waker_pipe` + **unsupported** configuration flags to force a specific poll or waker + implementation + (https://github.com/tokio-rs/mio/pull/1684, + https://github.com/tokio-rs/mio/pull/1685, + https://github.com/tokio-rs/mio/pull/1692). + +## Fixed + +* The `pipe(2)` based waker (swapped file descriptors) + (https://github.com/tokio-rs/mio/pull/1722). +* The duplicate waker check to work correctly with cloned `Registry`s. + (https://github.com/tokio-rs/mio/pull/1706). + # 0.8.8 ## Fixed diff --git a/Cargo.toml b/Cargo.toml index 20842e89f..447d9d8dd 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.8" +version = "0.8.9" license = "MIT" authors = [ "Carl Lerche ",