Release 4.3.0

This commit is contained in:
Taiki Endo 2022-07-08 01:06:47 +09:00
parent b841796fc0
commit f910d25edb
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
# Version 4.3.0
- Bump MSRV to Rust 1.47. (#30)
- Evaluate the layouts for the tasks at compile time. (#30)
- Add layout_info field to TaskVTable so that debuggers can decode raw tasks. (#29)
# Version 4.2.0
- Add `Task::is_finished`. (#19)

View File

@ -3,7 +3,7 @@ name = "async-task"
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v4.x.y" git tag
version = "4.2.0"
version = "4.3.0"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
rust-version = "1.47"