From 3a262ad60205d3a31aec77d33e6899a5a7be1971 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 28 Oct 2022 22:13:12 +0900 Subject: [PATCH 1/2] Remove msrv field from .clippy.toml Since Rust 1.64, Clippy respects `rust-version` field in Cargo.toml. rust-lang/rust@b776fb8 --- .clippy.toml | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .clippy.toml diff --git a/.clippy.toml b/.clippy.toml deleted file mode 100644 index eb66960..0000000 --- a/.clippy.toml +++ /dev/null @@ -1 +0,0 @@ -msrv = "1.46" From 9699981be1e1612f65610b3a4684c223703ce3a7 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 28 Oct 2022 22:17:45 +0900 Subject: [PATCH 2/2] Release 1.10.0 --- CHANGELOG.md | 6 +++++- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b83227..e4e7a00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ +# Version 1.10.0 + +- Remove the dependency on the `once_cell` crate to restore the MSRV. (#95) + # Version 1.9.0 -- Fix panic on very large timeout. (#87) +- Fix panic on very large durations. (#87) - Add `Timer::never` (#87) # Version 1.8.0 diff --git a/Cargo.toml b/Cargo.toml index ce8043f..d1196b0 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.9.0" +version = "1.10.0" authors = ["Stjepan Glavina "] edition = "2018" rust-version = "1.46"