From 3ea2f9e6d45c4f3c2730c5506e01ec7a45555d6f Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 13 Sep 2025 23:18:37 +0900 Subject: [PATCH] Release 2.6.0 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 19084c3..7c9561a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# Version 2.6.0 + +- Bump MSRV to 1.71. (#243) +- Expose `Timer::clear`. (#239) +- Implement `IoSafe` for `std::io::PipeReader` and `std::io::PipeWriter` (#237) +- Update to `windows-sys` v0.61. (#243) +- Remove dependency on `async_lock`. (#240) + # Version 2.5.0 - Add a new optional `tracing` feature. When enabled, this feature adds logging diff --git a/Cargo.toml b/Cargo.toml index d25583c..c906617 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "async-io" # When publishing a new version: # - Update CHANGELOG.md # - Create "v2.x.y" git tag -version = "2.5.0" +version = "2.6.0" authors = ["Stjepan Glavina "] edition = "2021" rust-version = "1.71"