Bump tokio-sync to 0.1.6 (#1123)

This commit is contained in:
Kevin Leimkuhler
2019-06-05 12:19:06 -07:00
committed by Carl Lerche
parent 970f75f830
commit 5dcb379f6d
6 changed files with 19 additions and 8 deletions
+5
View File
@@ -1,3 +1,8 @@
# 0.1.6 (June 4, 2019)
### Added
- Add Sync impl for Lock (#1117).
# 0.1.5 (April 22, 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.5"
version = "0.1.6"
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.5/tokio_sync"
documentation = "https://docs.rs/tokio-sync/0.1.6/tokio_sync"
description = """
Synchronization utilities.
"""
+1 -1
View File
@@ -2,7 +2,7 @@
Synchronization utilities
[Documentation](https://docs.rs/tokio-sync/0.1.5/tokio_sync/)
[Documentation](https://docs.rs/tokio-sync/0.1.6/tokio_sync/)
## Overview
+1 -1
View File
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio-sync/0.1.5")]
#![doc(html_root_url = "https://docs.rs/tokio-sync/0.1.6")]
#![deny(missing_debug_implementations, missing_docs, unreachable_pub)]
#![cfg_attr(test, deny(warnings))]