From f910d25edb04d05a24c9e58d73a4e5d8a31163a6 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 8 Jul 2022 01:06:47 +0900 Subject: [PATCH] Release 4.3.0 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe87187..d0a3e0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/Cargo.toml b/Cargo.toml index 853a643..8c611bf 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.2.0" +version = "4.3.0" authors = ["Stjepan Glavina "] edition = "2018" rust-version = "1.47"