mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-25 12:00:35 +00:00
4.8 KiB
4.8 KiB
0.1.15 (March 14th, 2024)
This release bumps the MSRV of tokio-stream to 1.63.
- docs: fix typo in argument name (#6389)
- docs: fix typo in peekable docs (#6130)
- docs: link to latest version of tokio-util docs (#5694)
- docs: typographic improvements (#6262)
- stream: add
StreamExt::peekable
(#6095)
0.1.14 (April 26th, 2023)
This bugfix release bumps the minimum version of Tokio to 1.15, which is
necessary for timeout_repeating
to compile. (#5657)
0.1.13 (April 25th, 2023)
This release bumps the MSRV of tokio-stream to 1.56.
- stream: add "full" feature flag (#5639)
- stream: add
StreamExt::timeout_repeating
(#5577) - stream: add
StreamNotifyClose
(#4851)
0.1.12 (January 20, 2023)
- time: remove
Unpin
bound onThrottle
methods (#5105) - time: document that
throttle
operates on ms granularity (#5101) - sync: add
WatchStream::from_changes
(#5432)
0.1.11 (October 11, 2022)
- time: allow
StreamExt::chunks_timeout
outside of a runtime (#5036)
0.1.10 (Sept 18, 2022)
0.1.9 (June 4, 2022)
- deps: upgrade
tokio-util
dependency to0.7.x
(#3762) - stream: add
StreamExt::map_while
(#4351) - stream: add
StreamExt::then
(#4355) - stream: add cancel-safety docs to
StreamExt::next
andtry_next
(#4715) - stream: expose
Elapsed
error (#4502) - stream: expose
Timeout
(#4601) - stream: implement
Extend
forStreamMap
(#4272) - sync: add
Clone
toRecvError
types (#4560)
0.1.8 (October 29, 2021)
- stream: add
From<Receiver<T>>
impl for receiver streams (#4080) - stream: impl
FromIterator
forStreamMap
(#4052) - signal: make windows docs for signal module show up on unix builds (#3770)
0.1.7 (July 7, 2021)
Fixed
0.1.6 (May 14, 2021)
Added
- stream: implement
Error
andDisplay
forBroadcastStreamRecvError
(#3745)
Fixed
- stream: avoid yielding in
AllFuture
andAnyFuture
(#3625)
0.1.5 (March 20, 2021)
Fixed
- stream: documentation note for throttle
Unpin
(#3600)
0.1.4 (March 9, 2021)
Added
- signal: add
Signal
wrapper (#3510)
Fixed
- stream: remove duplicate
doc_cfg
declaration (#3561) - sync: yield initial value in
WatchStream
(#3576)
0.1.3 (February 5, 2021)
Added
0.1.2 (January 12, 2021)
Fixed
- docs: fix some wrappers missing in documentation (#3378)
0.1.1 (January 4, 2021)
Added
- add
Stream
wrappers (#3343)
Fixed
- move
async-stream
todev-dependencies
(#3366)
0.1.0 (December 23, 2020)
- Initial release