From ef512cb3846815f1a8e40a6cd23e9140289f2696 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Sat, 13 Apr 2024 22:52:52 -0700 Subject: [PATCH] v1.11.0 Signed-off-by: John Nunley --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a460eba..ca8ebc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# Version 1.11.0 + +- Re-export the `async_task::FallibleTask` primitive. (#113) +- Support racy initialization of the executor state. This should allow the executor to be + initialized on web targets without any issues. (#108) + # Version 1.10.0 - Add a function `spawn_batch` that allows users to spawn multiple tasks while only locking the executor once. (#92) diff --git a/Cargo.toml b/Cargo.toml index 6920042..15d0cf5 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.10.0" +version = "1.11.0" authors = ["Stjepan Glavina ", "John Nunley "] edition = "2021" rust-version = "1.60"