0.3.31
- Fix use after free of task in
FuturesUnorderedwhen dropped future panics (#2886) - Fix soundness bug in
task::waker_ref(#2830) This is a breaking change but allowed because it is soundness bug fix. - Fix bugs in
AsyncBufRead::read_lineandAsyncBufReadExt::lines(#2884) - Fix parsing issue in
select!/select_biased!(#2832) This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted. - Work around issue due to upstream
Waker::will_wakechange (#2865) - Add
stream::Iter::{get_ref,get_mut,into_inner}(#2875) - Add
future::AlwaysReady(#2825) - Relax trait bound on non-constructor methods of
io::{BufReader,BufWriter}(#2848)
0.3.30
- Add
{BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of(#2797) - Fix panic in
FuturesUnordered::clear(#2809) - Fix panic in
AsyncBufReadExt::fill_buf(#2801, #2812) - Improve support for targets without atomic CAS (#2811)
- Remove build scripts (#2811)
0.3.29
- Add
TryStreamExt::try_ready_chunks(#2757) - Add
TryStreamExt::{try_all,try_any}(#2783) - Add
UnboundedSender::{len,is_empty}(#2750) - Fix
Syncimpl ofFuturesUnordered(#2788) - Fix infinite loop caused by invalid UTF-8 bytes (#2785)
- Fix build error with -Z minimal-versions (#2761)
0.3.28
- Update to syn 2. This raises MSRV of utility crates to 1.56. (#2730, #2733)
- Fix bug in
FlattenUnordered(#2726, #2728)
0.3.27
- Add
TryFlattenUnordered(#2577, #2590, #2606, #2607) - Add
AbortHandle::is_aborted(#2710) - Add
AbortRegistration::handle(#2712) - Make
BiLockstrict-provenance compatible (#2716)
0.3.26
- Add
Either::as_pin_mutandEither::as_pin_ref(#2691) - Add
Shared::ptr_eqandShared::ptr_hash(#2691) - Implement
FusedStreamforBuffered(#2676) - Implement
FusedStreamfor all streams inReadyChunks(#2693) - Fix bug in
FuturesOrdered::push_front(#2664) - Remove
Fut::Output: Clonebounds from someSharedmethods (#2662) - Remove
T: Debugbounds fromDebugimplementations ofmpscandoneshottypes (#2666, #2667)
0.3.25
- Fix soundness issue in
join!andtry_join!macros (#2649) - Implement
Cloneforsink::Drain(#2650)
0.3.24
- Fix incorrect termination of
select_with_strategystreams (#2635)
0.3.22
- Fix
Syncimpl ofBiLockGuard(#2570) - Fix partial iteration in
FuturesUnordered(#2574) - Fix false detection of inner panics in
Shared(#2576) - Add
Mutex::lock_ownedandMutex::try_lock_owned(#2571) - Add
io::copy_buf_abortable(#2507) - Remove
Unpinbound fromTryStreamExt::into_async_read(#2599) - Make
run_until_stalledhandle self-waking futures (#2593) - Use
FuturesOrderedintry_join_all(#2556) - Fix orderings in
LocalPoolwaker (#2608) - Fix
stream::Chunkadapters size hints (#2611) - Add
push_frontandpush_backtoFuturesOrdered(#2591) - Deprecate
FuturesOrdered::pushin favor ofFuturesOrdered::push_back(#2591) - Performance improvements (#2583, #2626)
- Documentation improvements (#2579, #2604, #2613)