From c8ecbc41c9a0988a20e98de487d4865694ed957a Mon Sep 17 00:00:00 2001 From: John Nunley Date: Tue, 17 Oct 2023 21:12:33 -0700 Subject: [PATCH] v2.0.0 Signed-off-by: John Nunley --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7df849a..c2fcfbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# Version 2.0.0 + +- **Breaking:** Seal extension traits. (#20) +- **Breaking:** Remove unsafe implementations of the `FromRawFd`/`FromRawHandle` traits. (#26) +- Avoid using a `build.rs` script for feature autodetection. (#17) +- Remove the `autocfg` dependency. (#18) +- Avoid a heap allocation in the `ReadDir` implementation. (#23) + # Version 1.6.0 - Implement I/O safety traits on Rust 1.63+ (#13) diff --git a/Cargo.toml b/Cargo.toml index 7a6194a..840dd43 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,8 +2,8 @@ name = "async-fs" # When publishing a new version: # - Update CHANGELOG.md -# - Create "v1.x.y" git tag -version = "1.6.0" +# - Create "v2.x.y" git tag +version = "2.0.0" authors = ["Stjepan Glavina "] edition = "2018" rust-version = "1.63"