1# 0.1.8 (October 29, 2021) 2 3- stream: add `From<Receiver<T>>` impl for receiver streams ([#4080]) 4- stream: impl `FromIterator` for `StreamMap` ([#4052]) 5- signal: make windows docs for signal module show up on unix builds ([#3770]) 6 7[#3770]: https://github.com/tokio-rs/tokio/pull/3770 8[#4052]: https://github.com/tokio-rs/tokio/pull/4052 9[#4080]: https://github.com/tokio-rs/tokio/pull/4080 10 11# 0.1.7 (July 7, 2021) 12 13### Fixed 14 15- sync: fix watch wrapper ([#3914]) 16- time: fix `Timeout::size_hint` ([#3902]) 17 18[#3902]: https://github.com/tokio-rs/tokio/pull/3902 19[#3914]: https://github.com/tokio-rs/tokio/pull/3914 20 21# 0.1.6 (May 14, 2021) 22 23### Added 24 25- stream: implement `Error` and `Display` for `BroadcastStreamRecvError` ([#3745]) 26 27### Fixed 28 29- stream: avoid yielding in `AllFuture` and `AnyFuture` ([#3625]) 30 31[#3745]: https://github.com/tokio-rs/tokio/pull/3745 32[#3625]: https://github.com/tokio-rs/tokio/pull/3625 33 34# 0.1.5 (March 20, 2021) 35 36### Fixed 37 38- stream: documentation note for throttle `Unpin` ([#3600]) 39 40[#3600]: https://github.com/tokio-rs/tokio/pull/3600 41 42# 0.1.4 (March 9, 2021) 43 44Added 45 46- signal: add `Signal` wrapper ([#3510]) 47 48Fixed 49 50- stream: remove duplicate `doc_cfg` declaration ([#3561]) 51- sync: yield initial value in `WatchStream` ([#3576]) 52 53[#3510]: https://github.com/tokio-rs/tokio/pull/3510 54[#3561]: https://github.com/tokio-rs/tokio/pull/3561 55[#3576]: https://github.com/tokio-rs/tokio/pull/3576 56 57# 0.1.3 (February 5, 2021) 58 59Added 60 61 - sync: add wrapper for broadcast and watch ([#3384], [#3504]) 62 63[#3384]: https://github.com/tokio-rs/tokio/pull/3384 64[#3504]: https://github.com/tokio-rs/tokio/pull/3504 65 66# 0.1.2 (January 12, 2021) 67 68Fixed 69 70 - docs: fix some wrappers missing in documentation ([#3378]) 71 72[#3378]: https://github.com/tokio-rs/tokio/pull/3378 73 74# 0.1.1 (January 4, 2021) 75 76Added 77 78 - add `Stream` wrappers ([#3343]) 79 80Fixed 81 82 - move `async-stream` to `dev-dependencies` ([#3366]) 83 84[#3366]: https://github.com/tokio-rs/tokio/pull/3366 85[#3343]: https://github.com/tokio-rs/tokio/pull/3343 86 87# 0.1.0 (December 23, 2020) 88 89 - Initial release 90