async-fs/CHANGELOG.md

70 lines
1.5 KiB
Markdown
Raw Permalink Normal View History

# Version 2.1.2
- Ensure that the docs for `create_dir_all` are close to the equivalent function
in libstd. (#35)
# Version 2.1.1
- Fix a copy/paste error in documentation. (#33)
# Version 2.1.0
- Bump `async-lock` and `futures-lite` to their latest versions. (#27, #28)
# 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)
2022-08-17 20:29:13 +00:00
# Version 1.6.0
- Implement I/O safety traits on Rust 1.63+ (#13)
2020-10-09 14:36:16 +00:00
# Version 1.5.0
- Replace `&mut self` with `&self` on the following methods:
- `File::sync_data()`
- `File::sync_all()`
- `File::set_len()`
2020-10-04 10:49:24 +00:00
# Version 1.4.0
- Define new extension traits instead of implementing those from `std`.
2020-09-14 14:56:33 +00:00
# Version 1.3.0
- Implement `FromRawFd`/`FromRawHandle` for `File`.
- Implement `OpenOptionsExt` for `OpenOptions` on Windows.
- Re-export some extension traits into OS-specific modules.
2020-09-07 17:38:23 +00:00
# Version 1.2.1
- Optimization: Don't flush if the file is already flushed.
2020-09-07 13:57:13 +00:00
# Version 1.2.0
- Update `blocking` to v1.0
2020-09-03 10:50:30 +00:00
# Version 1.1.2
- Do not reposition the cursor if the file is not seekable.
2020-08-26 21:25:40 +00:00
# Version 1.1.1
- Update dependencies.
2020-07-31 17:10:35 +00:00
# Version 1.1.0
- Implement `From<std::fs::File>` for `File`.
2020-07-26 12:55:10 +00:00
# Version 1.0.1
- Fix build error on https://docs.rs
2020-07-26 11:57:23 +00:00
# Version 1.0.0
- Initial version