From 4b37c612f6f3df4da548854fdc166684651af6d6 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Sun, 7 Apr 2024 07:40:07 -0700 Subject: [PATCH] v1.10.0 Signed-off-by: John Nunley --- CHANGELOG.md | 4 ++++ Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05ad9e0..a460eba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 1.10.0 + +- Add a function `spawn_batch` that allows users to spawn multiple tasks while only locking the executor once. (#92) + # Version 1.9.1 - Remove the thread-local optimization due to the bugs that it introduces. (#106) diff --git a/Cargo.toml b/Cargo.toml index 0b8011d..5d3f7bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,8 +3,8 @@ name = "async-executor" # When publishing a new version: # - Update CHANGELOG.md # - Create "v1.x.y" git tag -version = "1.9.1" -authors = ["Stjepan Glavina "] +version = "1.10.0" +authors = ["Stjepan Glavina ", "John Nunley "] edition = "2021" rust-version = "1.60" description = "Async executor"