async-net/CHANGELOG.md

89 lines
1.6 KiB
Markdown
Raw Permalink Normal View History

# Version 2.0.0
- **Breaking:** Bump `async-io` to version 2.0.0. (#28)
- Bump `futures-lite` to version 2.0.0. (#29)
# Version 1.8.0
- Bump MSRV to 1.63. (#23)
2022-08-17 20:31:01 +00:00
# Version 1.7.0
- Implement I/O safety traits on Rust 1.63+ (#21)
2021-06-30 13:56:22 +00:00
# Version 1.6.1
- Override `AsyncWrite::poll_write_vectored` for `TcpStream`.
- Remove boxed futures from `TcpStream` and `UnixStream`.
2021-04-24 09:34:15 +00:00
# Version 1.6.0
- Add `From` impls for conversion into inner networking types `Arc<Async<T>>`. (#12)
- Optimize allocations in Listeners. (#11)
2020-10-20 21:15:27 +00:00
# Version 1.5.0
- Add `Into` impls for conversion into inner networking types `Arc<Async<T>>`.
2020-10-09 12:29:16 +00:00
# Version 1.4.7
- Update `futures-lite`.
2020-09-29 17:02:16 +00:00
# Version 1.4.6
- Remove random yielding - rely on `async-io` for that instead.
2020-09-28 17:10:01 +00:00
# Version 1.4.5
- Don't poll `readiness()` future again after it has returned an error.
2020-09-27 22:31:22 +00:00
# Version 1.4.4
- Store `readable` future inside `Incoming` struct.
2020-09-21 10:49:01 +00:00
# Version 1.4.3
- Minor nits in the docs.
2022-08-17 20:48:01 +00:00
# Version 1.4.2
2020-09-20 23:04:28 +00:00
- Make `TcpStream` and `UnixStream` unwind-safe.
2020-09-20 00:45:38 +00:00
# Version 1.4.1
- Make `TcpStream` and `UnixStream` implement `Sync`.
2020-09-20 00:42:52 +00:00
# Version 1.4.0
- Remove `AsyncRead`/`AsyncWrite` impls for `&TcpStream`/`&UnixStream`
(technically a breaking change, but the existence of these impls is a bug)
2020-09-14 14:22:04 +00:00
# Version 1.3.0
- Add type converstions using `From` and `TryFrom` impls.
2020-09-07 13:55:52 +00:00
# Version 1.2.0
- Update `blocking` and `async-io` to v1.0
2020-09-06 08:59:55 +00:00
# Version 1.1.0
- Reexport `AddrParseError`.
2020-08-26 21:19:47 +00:00
# Version 1.0.0
- Add `resolve()`.
- Re-export more types from `std::net`.
2020-07-25 15:14:24 +00:00
# Version 0.1.2
- Update `blocking` to v0.5.0
2020-07-19 17:37:29 +00:00
# Version 0.1.1
2020-07-04 08:39:40 +00:00
2020-07-19 17:37:29 +00:00
- Reduce the number of dependencies
2020-07-04 08:39:40 +00:00
2020-07-19 17:37:29 +00:00
# Version 0.1.0
2020-07-04 08:39:40 +00:00
- Initial version