diff --git a/CHANGELOG.md b/CHANGELOG.md index ef9fdf2..d9f9965 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# Version 5.3.1 + +- Disable some optimizations that, in rare conditions, can cause race conditions + causing notifications to be dropped. (#139) +- Ensure the portable-atomic feature is set properly. (#134) +- Update `portable-atomic-util` to v0.2.0. (#132) +- Document the std feature. (#134) + # 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 2abe59c..b5ad282 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"