Skip to content

Commit eeee41d

Browse files
authored
v4.4.0 (#45)
- 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)
1 parent 194e7a5 commit eeee41d

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Version 4.4.0
2+
3+
- Ensure that the allocation doesn't exceed `isize::MAX` (#32)
4+
- Add `FallibleTask::is_finished()` (#34)
5+
- Add a metadata generic parameter to tasks (#33)
6+
- Add panic propagation to tasks (#37)
7+
- Add a way to tell if the task was woken while running from the schedule function (#42)
8+
19
# Version 4.3.0
210

311
- Bump MSRV to Rust 1.47. (#30)

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "async-task"
33
# When publishing a new version:
44
# - Update CHANGELOG.md
55
# - Create "v4.x.y" git tag
6-
version = "4.3.0"
6+
version = "4.4.0"
77
authors = ["Stjepan Glavina <[email protected]>"]
88
edition = "2018"
99
rust-version = "1.47"

0 commit comments

Comments
 (0)