Files
tokio/tokio-util/CHANGELOG.md
T

61 lines
1.6 KiB
Markdown
Raw Normal View History

2020-12-23 09:26:14 -08:00
# 0.6.0 (December 23, 2020)
### Changed
- depend on `tokio` 1.0.
### Added
- rt: add constructors to `TokioContext` (#3221).
2020-12-03 15:30:52 -08:00
# 0.5.1 (December 3, 2020)
### Added
- io: `poll_read_buf` util fn (#2972).
2020-12-03 15:30:52 -08:00
- io: `poll_write_buf` util fn with vectored write support (#3156).
# 0.5.0 (October 30, 2020)
### Changed
- io: update `bytes` to 0.6 (#3071).
2020-10-15 09:22:07 -07:00
# 0.4.0 (October 15, 2020)
### Added
- sync: `CancellationToken` for coordinating task cancellation (#2747).
- rt: `TokioContext` sets the Tokio runtime for the duration of a future (#2791)
- io: `StreamReader`/`ReaderStream` map between `AsyncRead` values and `Stream`
of bytes (#2788).
- time: `DelayQueue` to manage many delays (#2897).
2020-03-18 20:05:55 -04:00
# 0.3.1 (March 18, 2020)
### Fixed
- Adjust minimum-supported Tokio version to v0.2.5 to account for an internal
2020-04-17 11:23:13 -04:00
dependency on features in that version of Tokio. ([#2326])
2020-03-18 20:05:55 -04:00
2020-03-04 17:27:18 -05:00
# 0.3.0 (March 4, 2020)
2020-03-04 15:54:41 -05:00
2020-03-04 17:27:18 -05:00
### Changed
2020-03-04 15:54:41 -05:00
2020-03-04 17:27:18 -05:00
- **Breaking Change**: Change `Encoder` trait to take a generic `Item` parameter, which allows
2020-04-17 11:23:13 -04:00
codec writers to pass references into `Framed` and `FramedWrite` types. ([#1746])
2020-03-04 15:54:41 -05:00
2020-03-04 17:27:18 -05:00
### Added
2020-03-04 15:54:41 -05:00
2020-04-17 11:23:13 -04:00
- Add futures-io/tokio::io compatibility layer. ([#2117])
- Add `Framed::with_capacity`. ([#2215])
2020-03-04 17:27:18 -05:00
### Fixed
2020-04-17 11:23:13 -04:00
- Use advance over split_to when data is not needed. ([#2198])
2020-03-04 15:54:41 -05:00
2019-11-26 09:17:27 -08:00
# 0.2.0 (November 26, 2019)
- Initial release
2020-04-17 11:23:13 -04:00
[#2326]: https://github.com/tokio-rs/tokio/pull/2326
[#2215]: https://github.com/tokio-rs/tokio/pull/2215
[#2198]: https://github.com/tokio-rs/tokio/pull/2198
[#2117]: https://github.com/tokio-rs/tokio/pull/2117
[#1746]: https://github.com/tokio-rs/tokio/pull/1746