From 1bcdb3cc482ab4adb9b0459eb5e3126ebfdd0710 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Sun, 14 Jul 2024 19:18:40 -0700 Subject: [PATCH] v0.13.0 Signed-off-by: John Nunley --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61928a7..699a204 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# Version 1.13.0 + +- Relax the `Send` bound on `LocalExecutor::spawn_many`. (#120) +- Ensure all features are documented on `docs.rs`. (#122) + # Version 1.12.0 - Add static executors, which are an optimization over executors that are kept diff --git a/Cargo.toml b/Cargo.toml index 38c8be7..d1bd975 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.12.0" +version = "1.13.0" authors = ["Stjepan Glavina ", "John Nunley "] edition = "2021" rust-version = "1.63"