Skip to content

Commit

Permalink
Merge pull request #53 from zeenix/release-0.7
Browse files Browse the repository at this point in the history
Release 0.7.0
  • Loading branch information
zeenix authored Feb 8, 2024
2 parents ab8a1eb + 1833f3d commit 1803434
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Version 0.7.0

- **Breaking:** `Recv` and `Send` are now `!Unpin` to allow for future optimizations.
- Port to event-listener v5.0.

# Version 0.6.0

- Bump to event-listener v3.0.0.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "async-broadcast"
version = "0.6.0"
version = "0.7.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/smol-rs/async-broadcast"
documentation = "https://docs.rs/async-broadcast"
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ impl<T: Clone> Sender<T> {
sender: self,
listener: None,
msg: Some(msg),
_pin: PhantomPinned
_pin: PhantomPinned,
})
}

Expand Down Expand Up @@ -1188,7 +1188,7 @@ impl<T: Clone> Receiver<T> {
Recv::_new(RecvInner {
receiver: self,
listener: None,
_pin: PhantomPinned
_pin: PhantomPinned,
})
}

Expand Down

0 comments on commit 1803434

Please sign in to comment.