From b96ee39889ab92bd736ffc10933c81a745a291a6 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sun, 15 Jan 2023 23:29:50 +0900 Subject: [PATCH] Release 1.1.0 --- CHANGELOG.md | 5 +++++ Cargo.toml | 4 +--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af42cea..66a0696 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# Version 1.1.0 + +- Support `no_std` platforms. (#7) +- Support `portable-atomic` crate. (#7) + # Version 1.0.0 - Initial version diff --git a/Cargo.toml b/Cargo.toml index 214744a..91a6853 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "atomic-waker" # When publishing a new version: # - Update CHANGELOG.md # - Create "v1.x.y" git tag -version = "1.0.0" +version = "1.1.0" authors = [ "Stjepan Glavina ", "Contributors to futures-rs", @@ -13,8 +13,6 @@ rust-version = "1.36" description = "A synchronization primitive for task wakeup" license = "Apache-2.0 OR MIT" repository = "https://github.com/smol-rs/atomic-waker" -homepage = "https://github.com/smol-rs/atomic-waker" -documentation = "https://docs.rs/atomic-waker" keywords = ["waker", "notify", "wake", "futures", "async"] categories = ["asynchronous", "concurrency"] exclude = ["/.*"]