From 422ebc1666c782d5be583b3ad35193257fcddf8b Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Fri, 29 Nov 2024 16:13:46 +0100 Subject: [PATCH] Release v1.0.3 --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e350c248..91a81a270 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 1.0.3 + +* Implement more I/O safety traits + (https://github.com/tokio-rs/mio/pull/1831). +* Remove hermit-abi dependency, now using libc + (https://github.com/tokio-rs/mio/pull/1830). +* Use `poll(2)` implementation on AIX, removing the need for using + `mio_unsupported_force_poll_poll` + (https://github.com/tokio-rs/mio/pull/1833). + # 1.0.2 * Work around eventfd bug on illumos diff --git a/Cargo.toml b/Cargo.toml index e2f924e84..d63c61d48 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ name = "mio" # When releasing to crates.io: # - Update CHANGELOG.md. # - Create git tag -version = "1.0.2" +version = "1.0.3" license = "MIT" authors = [ "Carl Lerche ",