• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# 0.1.14 (April 26th, 2023)
2
3This bugfix release bumps the minimum version of Tokio to 1.15, which is
4necessary for `timeout_repeating` to compile. ([#5657])
5
6[#5657]: https://github.com/tokio-rs/tokio/pull/5657
7
8# 0.1.13 (April 25th, 2023)
9
10This release bumps the MSRV of tokio-stream to 1.56.
11
12- stream: add "full" feature flag ([#5639])
13- stream: add `StreamExt::timeout_repeating` ([#5577])
14- stream: add `StreamNotifyClose` ([#4851])
15
16[#4851]: https://github.com/tokio-rs/tokio/pull/4851
17[#5577]: https://github.com/tokio-rs/tokio/pull/5577
18[#5639]: https://github.com/tokio-rs/tokio/pull/5639
19
20# 0.1.12 (January 20, 2023)
21
22- time: remove `Unpin` bound on `Throttle` methods ([#5105])
23- time: document that `throttle` operates on ms granularity ([#5101])
24- sync: add `WatchStream::from_changes` ([#5432])
25
26[#5105]: https://github.com/tokio-rs/tokio/pull/5105
27[#5101]: https://github.com/tokio-rs/tokio/pull/5101
28[#5432]: https://github.com/tokio-rs/tokio/pull/5432
29
30# 0.1.11 (October 11, 2022)
31
32- time: allow `StreamExt::chunks_timeout` outside of a runtime ([#5036])
33
34[#5036]: https://github.com/tokio-rs/tokio/pull/5036
35
36# 0.1.10 (Sept 18, 2022)
37
38- time: add `StreamExt::chunks_timeout` ([#4695])
39- stream: add track_caller to public APIs ([#4786])
40
41[#4695]: https://github.com/tokio-rs/tokio/pull/4695
42[#4786]: https://github.com/tokio-rs/tokio/pull/4786
43
44# 0.1.9 (June 4, 2022)
45
46- deps: upgrade `tokio-util` dependency to `0.7.x` ([#3762])
47- stream: add `StreamExt::map_while` ([#4351])
48- stream: add `StreamExt::then` ([#4355])
49- stream: add cancel-safety docs to `StreamExt::next` and `try_next` ([#4715])
50- stream: expose `Elapsed` error ([#4502])
51- stream: expose `Timeout` ([#4601])
52- stream: implement `Extend` for `StreamMap` ([#4272])
53- sync: add `Clone` to `RecvError` types ([#4560])
54
55[#3762]: https://github.com/tokio-rs/tokio/pull/3762
56[#4272]: https://github.com/tokio-rs/tokio/pull/4272
57[#4351]: https://github.com/tokio-rs/tokio/pull/4351
58[#4355]: https://github.com/tokio-rs/tokio/pull/4355
59[#4502]: https://github.com/tokio-rs/tokio/pull/4502
60[#4560]: https://github.com/tokio-rs/tokio/pull/4560
61[#4601]: https://github.com/tokio-rs/tokio/pull/4601
62[#4715]: https://github.com/tokio-rs/tokio/pull/4715
63
64# 0.1.8 (October 29, 2021)
65
66- stream: add `From<Receiver<T>>` impl for receiver streams ([#4080])
67- stream: impl `FromIterator` for `StreamMap` ([#4052])
68- signal: make windows docs for signal module show up on unix builds ([#3770])
69
70[#3770]: https://github.com/tokio-rs/tokio/pull/3770
71[#4052]: https://github.com/tokio-rs/tokio/pull/4052
72[#4080]: https://github.com/tokio-rs/tokio/pull/4080
73
74# 0.1.7 (July 7, 2021)
75
76### Fixed
77
78- sync: fix watch wrapper ([#3914])
79- time: fix `Timeout::size_hint` ([#3902])
80
81[#3902]: https://github.com/tokio-rs/tokio/pull/3902
82[#3914]: https://github.com/tokio-rs/tokio/pull/3914
83
84# 0.1.6 (May 14, 2021)
85
86### Added
87
88- stream: implement `Error` and `Display` for `BroadcastStreamRecvError` ([#3745])
89
90### Fixed
91
92- stream: avoid yielding in `AllFuture` and `AnyFuture` ([#3625])
93
94[#3745]: https://github.com/tokio-rs/tokio/pull/3745
95[#3625]: https://github.com/tokio-rs/tokio/pull/3625
96
97# 0.1.5 (March 20, 2021)
98
99### Fixed
100
101- stream: documentation note for throttle `Unpin` ([#3600])
102
103[#3600]: https://github.com/tokio-rs/tokio/pull/3600
104
105# 0.1.4 (March 9, 2021)
106
107Added
108
109- signal: add `Signal` wrapper ([#3510])
110
111Fixed
112
113- stream: remove duplicate `doc_cfg` declaration ([#3561])
114- sync: yield initial value in `WatchStream` ([#3576])
115
116[#3510]: https://github.com/tokio-rs/tokio/pull/3510
117[#3561]: https://github.com/tokio-rs/tokio/pull/3561
118[#3576]: https://github.com/tokio-rs/tokio/pull/3576
119
120# 0.1.3 (February 5, 2021)
121
122Added
123
124 - sync: add wrapper for broadcast and watch ([#3384], [#3504])
125
126[#3384]: https://github.com/tokio-rs/tokio/pull/3384
127[#3504]: https://github.com/tokio-rs/tokio/pull/3504
128
129# 0.1.2 (January 12, 2021)
130
131Fixed
132
133 - docs: fix some wrappers missing in documentation ([#3378])
134
135[#3378]: https://github.com/tokio-rs/tokio/pull/3378
136
137# 0.1.1 (January 4, 2021)
138
139Added
140
141 - add `Stream` wrappers ([#3343])
142
143Fixed
144
145 - move `async-stream` to `dev-dependencies` ([#3366])
146
147[#3366]: https://github.com/tokio-rs/tokio/pull/3366
148[#3343]: https://github.com/tokio-rs/tokio/pull/3343
149
150# 0.1.0 (December 23, 2020)
151
152 - Initial release
153