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