Signed-off-by: John Nunley <dev@notgull.net>
This commit is contained in:
John Nunley 2024-04-07 07:40:07 -07:00 committed by John Nunley
parent 00f0b99fad
commit 4b37c612f6
2 changed files with 6 additions and 2 deletions

View File

@ -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)

View File

@ -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 <stjepang@gmail.com>"]
version = "1.10.0"
authors = ["Stjepan Glavina <stjepang@gmail.com>", "John Nunley <dev@notgull.net>"]
edition = "2021"
rust-version = "1.60"
description = "Async executor"