Bump Tokio to v0.1.17 (#983)

Also bumps:
- tokio-sync (v0.1.4)
This commit is contained in:
Carl Lerche
2019-03-13 11:19:22 -07:00
committed by GitHub
parent 1bc6d75543
commit 987ccfc8ac
8 changed files with 21 additions and 8 deletions
+8
View File
@@ -1,3 +1,11 @@
# 0.1.4 (March 13, 2019)
### Fixed
- Fix memory leak on channel drop (#917).
### Added
- `std::error::Error` implementation for `oneshot`, `watch` error types (#967).
# 0.1.3 (March 1, 2019)
### Added
+2 -2
View File
@@ -7,12 +7,12 @@ name = "tokio-sync"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.3"
version = "0.1.4"
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.3/tokio_sync"
documentation = "https://docs.rs/tokio-sync/0.1.4/tokio_sync"
description = """
Synchronization utilities.
"""
+1 -1
View File
@@ -2,7 +2,7 @@
Synchronization utilities
[Documentation](https://docs.rs/tokio-sync/0.1.3/tokio_sync/)
[Documentation](https://docs.rs/tokio-sync/0.1.4/tokio_sync/)
## Overview
+1 -1
View File
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio-sync/0.1.3")]
#![doc(html_root_url = "https://docs.rs/tokio-sync/0.1.4")]
#![deny(missing_debug_implementations, missing_docs, unreachable_pub)]
#![cfg_attr(test, deny(warnings))]