Skip to content

Commit 39837ba

Browse files
committed
v3.0.0
1 parent 85ca6d3 commit 39837ba

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# `event-listener` Version 3.0.0 and `event-listener-strategy` Version 0.1.0
2+
3+
- Use the `parking` crate instead of threading APIs (#27)
4+
- Bump MSRV to 1.39 (#29)
5+
- **Breaking:** Make this crate `no_std`-compatible on `default-features = false`. (#34)
6+
- Create a new `event-listener-strategy` crate for abstracting over blocking/non-blocking operations. (#49)
7+
- **Breaking:** Change the `EventListener` API to be `!Unpin`. (#51)
8+
- Enable a feature for the `portable-atomic` crate. (#53)
9+
- **Breaking:** Add a `Notification` trait which is used to enable tagged events. (#52)
10+
- Add an `is_notified()` method to `Event`. (#48)
11+
- **Breaking:** Make it so `notify()` returns the number of listeners notified. (#57)
12+
113
# Version 2.5.3
214

315
- Fix fence on x86 and miri.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
name = "event-listener"
33
# When publishing a new version:
44
# - Update CHANGELOG.md
5-
# - Create "v2.x.y" git tag
6-
version = "2.5.3"
5+
# - Create "v3.x.y" git tag
6+
version = "3.0.0"
77
authors = ["Stjepan Glavina <[email protected]>"]
88
edition = "2018"
99
rust-version = "1.59"

strategy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ categories = ["asynchronous", "concurrency"]
1212
exclude = ["/.*"]
1313

1414
[dependencies]
15-
event-listener = { path = "..", version = "2", default-features = false }
15+
event-listener = { path = "..", version = "3", default-features = false }
1616
pin-project-lite = "0.2.12"
1717

1818
[features]

0 commit comments

Comments
 (0)