2 KiB
2 KiB
Version 2.3.1
- Use the correct version of
async-channelin our manifest. (#93)
Version 2.3.0
- Add
force_sendfor sending items over the channel that displace other items. (#89)
Version 2.2.1
- Fix the CI badge in the
crates.iopage. (#84)
Version 2.2.0
- Bump
event-listenerto v5.0.0. (#79) - Bump MSRV to 1.60. (#80)
Version 2.1.1
- Bump
event-listenerto v4.0.0. (#73)
Version 2.1.0
- Bump
futures-liteto its latest version. (#70)
Version 2.0.0
- Breaking: Make
Send,RecvandReceiver!Unpin. This enables more efficient event notification strategies. (#59) - Breaking: Add an
stdenabled-by-default feature that enables parts of the API that requirestd. (#59) - Add support for the
wasm32target. (#67)
Version 1.9.0
- Fix a bug where
WeakSender/WeakReceivercould incorrectly returnSomeeven if the channel is already closed (#60) - Remove the unnecessary
T: Clonebound fromWeakSender/WeakReceiver'sCloneimplementation (#62)
Version 1.8.0
- Prevent deadlock if sender/receiver is forgotten (#49)
- Add weak sender and receiver (#51)
- Update
concurrent-queueto v2 (#50)
Version 1.7.1
- Work around MSRV increase due to a cargo bug.
Version 1.7.0
- Add
send_blockingandrecv_blocking(#47)
Version 1.6.1
- Make
sendreturnSend(#34)
Version 1.6.0
- Added
SendandRecvfutures (#33) - impl
FusedStreamforReceiver(#30)
Version 1.5.1
- Fix typos in the docs.
Version 1.5.0
- Add
receiver_count()andsender_count().
Version 1.4.2
- Fix a bug that would sometime cause 100% CPU usage.
Version 1.4.1
- Update dependencies.
Version 1.4.0
- Update dependencies.
Version 1.3.0
- Add
Sender::is_closed()andReceiver::is_closed().
Version 1.2.0
- Add
Sender::close()andReceiver::close().
Version 1.1.1
- Replace
usize::MAXwithstd::usize::MAX.
Version 1.1.0
- Add methods to error types.
Version 1.0.0
- Initial version