From 444d0c16e9fe1b654231b1948218b9f32660f65e Mon Sep 17 00:00:00 2001 From: John Nunley Date: Sun, 12 May 2024 16:26:08 -0700 Subject: [PATCH] v1.12.0 Signed-off-by: John Nunley --- CHANGELOG.md | 7 ++++++- Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca8ebc0..61928a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# Version 1.12.0 + +- Add static executors, which are an optimization over executors that are kept + around forever. (#112) + # Version 1.11.0 - Re-export the `async_task::FallibleTask` primitive. (#113) @@ -58,7 +63,7 @@ # Version 1.5.1 -- Implement a better form of debug output for Executor and LocalExecutor. (#33) +- Implement a better form of debug output for Executor and LocalExecutor. (#33) # Version 1.5.0 diff --git a/Cargo.toml b/Cargo.toml index 16d33bc..d93727c 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.11.0" +version = "1.12.0" authors = ["Stjepan Glavina ", "John Nunley "] edition = "2021" rust-version = "1.63"