From 00ea6cf6a19d23c1464790e53fe3f61ea0e94271 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Wed, 9 Nov 2022 11:34:15 +0900 Subject: [PATCH] Release 1.5.0 --- CHANGELOG.md | 5 +++++ Cargo.toml | 4 +--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fda0f60..0105c9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# Version 1.5.0 + +- Remove the dependency on the `once_cell` crate to restore the MSRV. (#29) +- Update `concurrent-queue` to v2. + # Version 1.4.1 - Remove dependency on deprecated `vec-arena`. (#23) diff --git a/Cargo.toml b/Cargo.toml index e1afe7b..faee198 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,15 +3,13 @@ name = "async-executor" # When publishing a new version: # - Update CHANGELOG.md # - Create "v1.x.y" git tag -version = "1.4.1" +version = "1.5.0" authors = ["Stjepan Glavina "] edition = "2018" rust-version = "1.47" description = "Async executor" license = "Apache-2.0 OR MIT" repository = "https://github.com/smol-rs/async-executor" -homepage = "https://github.com/smol-rs/async-executor" -documentation = "https://docs.rs/async-executor" keywords = ["asynchronous", "executor", "single", "multi", "spawn"] categories = ["asynchronous", "concurrency"] exclude = ["/.*"]