Skip to content

Commit 9e37722

Browse files
committed
v1.13.0 (#119)
- 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) - Change the "`wepoll`" in documentation to "`IOCP`" (#116) [`rustix`]: https://crates.io/crates/rustix/ [`libc`]: https://crates.io/crates/libc/ [`windows-sys`]: https://crates.io/crates/windows-sys/
1 parent 916ed1c commit 9e37722

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# Version 1.13.0
2+
3+
- Use [`rustix`] instead of [`libc`]/[`windows-sys`] for system calls (#76)
4+
- Add a `will_fire` method to `Timer` to test if it will ever fire (#106)
5+
- Reduce syscalls in `Async::new` (#107)
6+
- Improve the drop ergonomics of `Readable` and `Writable` (#109)
7+
- Change the "`wepoll`" in documentation to "`IOCP`" (#116)
8+
9+
[`rustix`]: https://crates.io/crates/rustix/
10+
[`libc`]: https://crates.io/crates/libc/
11+
[`windows-sys`]: https://crates.io/crates/windows-sys/
12+
113
# Version 1.12.0
214

315
- Switch from `winapi` to `windows-sys` (#102)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "async-io"
33
# When publishing a new version:
44
# - Update CHANGELOG.md
55
# - Create "v1.x.y" git tag
6-
version = "1.12.0"
6+
version = "1.13.0"
77
authors = ["Stjepan Glavina <[email protected]>"]
88
edition = "2018"
99
rust-version = "1.48"

0 commit comments

Comments
 (0)