From 4490f391ed2287856e7fcbf0269c440a6cf5958f Mon Sep 17 00:00:00 2001 From: jtnunley Date: Tue, 21 Mar 2023 00:26:37 -0700 Subject: [PATCH 1/3] v1.12.1 --- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e70081..59e3fbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# Version 1.12.1 + +- Use [`rustix`] instead of [`libc`]/[`windows-sys`] for system calls (#76) +- Add a `will_fire` method to `Timer` to test if it will ever fire (#106) +- Reduce syscalls in `Async::new` (#107) +- Improve the drop ergonomics of `Readable` and `Writable` (#109) + +[`rustix`]: https://crates.io/crates/rustix/ +[`libc`]: https://crates.io/crates/libc/ +[`windows-sys`]: https://crates.io/crates/windows-sys/ + # Version 1.12.0 - Switch from `winapi` to `windows-sys` (#102) diff --git a/Cargo.toml b/Cargo.toml index d3aad54..b0d9cb7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "async-io" # When publishing a new version: # - Update CHANGELOG.md # - Create "v1.x.y" git tag -version = "1.12.0" +version = "1.12.1" authors = ["Stjepan Glavina "] edition = "2018" rust-version = "1.48" From 786da454177a76b57f2cbfa6d94eaca9c6b1bf20 Mon Sep 17 00:00:00 2001 From: jtnunley Date: Tue, 21 Mar 2023 00:33:32 -0700 Subject: [PATCH 2/3] It's a minor version bump --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 59e3fbe..6b13177 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Version 1.12.1 +# Version 1.13.0 - Use [`rustix`] instead of [`libc`]/[`windows-sys`] for system calls (#76) - Add a `will_fire` method to `Timer` to test if it will ever fire (#106) diff --git a/Cargo.toml b/Cargo.toml index b0d9cb7..315447e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "async-io" # When publishing a new version: # - Update CHANGELOG.md # - Create "v1.x.y" git tag -version = "1.12.1" +version = "1.13.0" authors = ["Stjepan Glavina "] edition = "2018" rust-version = "1.48" From 43eb4b92e2cf5b6732232274b3c121da066da4e4 Mon Sep 17 00:00:00 2001 From: jtnunley Date: Tue, 21 Mar 2023 00:35:26 -0700 Subject: [PATCH 3/3] Make sure #116 is in the release as well --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b13177..762b1b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - Add a `will_fire` method to `Timer` to test if it will ever fire (#106) - Reduce syscalls in `Async::new` (#107) - Improve the drop ergonomics of `Readable` and `Writable` (#109) +- Change the "`wepoll`" in documentation to "`IOCP`" (#116) [`rustix`]: https://crates.io/crates/rustix/ [`libc`]: https://crates.io/crates/libc/