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 = ["/.*"]