Release 1.5.0

This commit is contained in:
Taiki Endo 2022-11-09 11:34:15 +09:00
parent c09ecba5bb
commit 00ea6cf6a1
2 changed files with 6 additions and 3 deletions

View File

@ -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)

View File

@ -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 <stjepang@gmail.com>"]
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 = ["/.*"]