prepare tokio-sync v0.1.7 release. (#1650)

This commit is contained in:
Carl Lerche
2019-10-10 13:16:36 -07:00
committed by GitHub
parent 2117ce7bac
commit da186a7859
3 changed files with 8 additions and 3 deletions
+5
View File
@@ -1,3 +1,8 @@
# 0.1.7 (October 10, 2019)
### Fixed
- memory leak when polling oneshot handle from more than one task (#1649).
# 0.1.6 (June 4, 2019)
### Added
+2 -2
View File
@@ -8,12 +8,12 @@ name = "tokio-sync"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.6"
version = "0.1.7"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
documentation = "https://docs.rs/tokio-sync/0.1.6/tokio_sync"
documentation = "https://docs.rs/tokio-sync/0.1.7/tokio_sync"
description = """
Synchronization utilities.
"""
+1 -1
View File
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio-sync/0.1.6")]
#![doc(html_root_url = "https://docs.rs/tokio-sync/0.1.7")]
#![deny(missing_debug_implementations, missing_docs, unreachable_pub)]
//! Asynchronous synchronization primitives.