From c73ad619f6f9a76d6dd87bfcac02231958a4bbad Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 22 Jan 2022 16:38:14 +0900 Subject: [PATCH] Release 2.5.2 --- CHANGELOG.md | 4 ++++ Cargo.toml | 8 +++----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8712b5..0ca7def 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Cargo.toml b/Cargo.toml index fd35e2b..0f0f4f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] 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"