From 8f8853c4cbd9ac01253f3432471e5ddd8bbd56ce Mon Sep 17 00:00:00 2001 From: John Nunley Date: Tue, 28 May 2024 18:41:45 -0700 Subject: [PATCH] v5.3.1 Signed-off-by: John Nunley --- CHANGELOG.md | 5 +++++ Cargo.toml | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef9fdf2..19e66d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# Version 5.3.1 + +- Disable some optimizations that, in rare conditions, can cause race conditions + causing notifications to be dropped. (#139) + # Version 5.3.0 - Add a `loom` implementation. This feature is unstable and is not semver-supported. (#126) diff --git a/Cargo.toml b/Cargo.toml index e81af7d..bb1cc1c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,8 +3,8 @@ name = "event-listener" # When publishing a new version: # - Update CHANGELOG.md # - Create "v5.x.y" git tag -version = "5.3.0" -authors = ["Stjepan Glavina "] +version = "5.3.1" +authors = ["Stjepan Glavina ", "John Nunley "] edition = "2021" rust-version = "1.60" description = "Notify async tasks or threads"