Skip to content

Commit

Permalink
Release 2.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Jan 22, 2022
1 parent a8af39b commit c73ad61
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 2.5.2

- Fix stacked borrows violation when `-Zmiri-tag-raw-pointers` is enabled. (#24)

# Version 2.5.1

- Replace spinlock with a mutex.
Expand Down
8 changes: 3 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,17 @@ name = "event-listener"
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v2.x.y" git tag
version = "2.5.1"
version = "2.5.2"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
rust-version = "1.36"
description = "Notify async tasks or threads"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/smol-rs/event-listener"
homepage = "https://github.com/smol-rs/event-listener"
documentation = "https://docs.rs/event-listener"
keywords = ["condvar", "eventcount", "wake", "blocking", "park"]
categories = ["asynchronous", "concurrency"]
exclude = ["/.*"]

[dev-dependencies]
futures = { version = "0.3.5", default-features = false, features = ["std"] }
waker-fn = "1.0.0"
futures = { version = "0.3", default-features = false, features = ["std"] }
waker-fn = "1"

0 comments on commit c73ad61

Please sign in to comment.