From 17720b098a32454fdc522e527bd86a8bdeae33fe Mon Sep 17 00:00:00 2001 From: John Nunley Date: Fri, 29 Mar 2024 20:58:08 -0700 Subject: [PATCH] v1.9.1 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 256fbd4..05ad9e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 1.9.1 + +- Remove the thread-local optimization due to the bugs that it introduces. (#106) + # Version 1.9.0 - Re-introduce the thread-local task push optimization to the executor. (#93) diff --git a/Cargo.toml b/Cargo.toml index c7af992..0b8011d 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.9.0" +version = "1.9.1" authors = ["Stjepan Glavina "] edition = "2021" rust-version = "1.60"