Releases: rust-lang/futures-rs
Releases · rust-lang/futures-rs
0.3.32
- Bump MSRV of utility crates to 1.71. (#2989)
- Soft-deprecate
ready!macro in favor ofstd::task::ready!added in Rust 1.64 (#2925) - Soft-deprecate
pin_mut!macro in favor ofstd::pin::pin!added in Rust 1.68 (#2929) - Add
FuturesOrdered::clear(#2927) - Add
mpsc::*Receiver::recv(#2947) - Add
mpsc::*Receiver::try_recvand deprecatempsc::*Receiver::::try_next(#2944) - Implement
FusedStreamforsink::With(#2948) - Add
no_stdsupport forshared(#2868) - Make
Mutex::new()const (#2956) - Add
#[clippy::has_significant_drop]to guards (#2967) - Remove dependency to
pin-utils(#2929) - Remove dependency on
num_cpus(#2946) - Performance improvements (#2983)
- Documentation improvements (#2925, #2926, #2940, #2971)
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
0.3.29
0.3.28
0.3.27
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
0.3.24
0.3.23
- Work around MSRV increase due to a cargo bug.