Signed-off-by: John Nunley <dev@notgull.net>
This commit is contained in:
John Nunley 2023-10-17 21:12:33 -07:00 committed by GitHub
parent 23af470add
commit c8ecbc41c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View File

@ -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)

View File

@ -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 <stjepang@gmail.com>"]
edition = "2018"
rust-version = "1.63"