From 4f4b11cadca0a1ded5cc8ebe902bacab6ffbbf62 Mon Sep 17 00:00:00 2001 From: jtnunley Date: Fri, 24 Mar 2023 04:31:17 -0700 Subject: [PATCH] v4.4.0 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0a3e0b..9775d3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# Version 4.4.0 + +- Ensure that the allocation doesn't exceed `isize::MAX` (#32) +- Add `FallibleTask::is_finished()` (#34) +- Add a metadata generic parameter to tasks (#33) +- Add panic propagation to tasks (#37) +- Add a way to tell if the task was woken while running from the schedule function (#42) + # Version 4.3.0 - Bump MSRV to Rust 1.47. (#30) diff --git a/Cargo.toml b/Cargo.toml index ea06cf8..7f106fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "async-task" # When publishing a new version: # - Update CHANGELOG.md # - Create "v4.x.y" git tag -version = "4.3.0" +version = "4.4.0" authors = ["Stjepan Glavina "] edition = "2018" rust-version = "1.47"