Releases: smol-rs/async-channel
Releases · smol-rs/async-channel
v2.3.1
- Use the correct version of
async-channel
in our manifest. (#93)
v2.3.0
- Add
force_send
for sending items over the channel that displace other items. (#89)
v2.2.1
- Fix the CI badge in the
crates.io
page. (#84)
v2.2.0
- Bump
event-listener
to v5.0.0. (#79)
- Bump MSRV to 1.60. (#80)
v2.1.1
- Bump
event-listener
to v4.0.0. (#73)
v2.1.0
- Bump
futures-lite
to its latest version. (#70)
v2.0.0
- Breaking: Make
Send
, Recv
and Receiver
!Unpin
. This enables more efficient event notification strategies. (#59)
- Breaking: Add an
std
enabled-by-default feature that enables parts of the API that require std
. (#59)
- Add support for the
wasm32
target. (#67)
v1.9.0
- Fix a bug where
WeakSender/WeakReceiver
could incorrectly return Some
even if the channel is already closed (#60)
- Remove the unnecessary
T: Clone
bound from WeakSender/WeakReceiver
's Clone
implementation (#62)
v1.8.0
- Prevent deadlock if sender/receiver is forgotten (#49)
- Add weak sender and receiver (#51)
- Update
concurrent-queue
to v2 (#50)
v1.7.1
- Work around MSRV increase due to a cargo bug. (#48)