Release 1.1.0

This commit is contained in:
Taiki Endo 2023-01-15 23:29:50 +09:00
parent d52a96814c
commit b96ee39889
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,8 @@
# Version 1.1.0
- Support `no_std` platforms. (#7)
- Support `portable-atomic` crate. (#7)
# Version 1.0.0
- Initial version

View File

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