From 2cfb6e4ed03c7eaf6c5fb2d3170ac870ba0a9b9d Mon Sep 17 00:00:00 2001 From: John Nunley Date: Wed, 27 Sep 2023 21:17:03 -0700 Subject: [PATCH] v1.5.4 Signed-off-by: John Nunley --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7cbb7b..b795839 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 1.5.4 + +- Fix a panic that could happen when two concurrent `run()` calls are made and the thread local task slot is left as `None`. (#55) + # Version 1.5.3 - Fix an accidental breaking change in v1.5.2, where `ex.run()` was no longer `Send`. (#50) diff --git a/Cargo.toml b/Cargo.toml index d5a7d2f..c81851b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "async-executor" # When publishing a new version: # - Update CHANGELOG.md # - Create "v1.x.y" git tag -version = "1.5.3" +version = "1.5.4" authors = ["Stjepan Glavina "] edition = "2018" rust-version = "1.61"