summaryrefslogtreecommitdiffstats
path: root/tokio-sync
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-03-01 12:57:07 -0800
committerGitHub <noreply@github.com>2019-03-01 12:57:07 -0800
commit195c4b04963742ecfff202ee9d0b72cc923aee81 (patch)
treea4c2b0eef09dbb2a534267d06b413d0226a6a17d /tokio-sync
parent619d3b163b5080485cd92797b18134706ffd620b (diff)
Bump tokio-sync version to v0.1.3 (#938)
Diffstat (limited to 'tokio-sync')
-rw-r--r--tokio-sync/CHANGELOG.md6
-rw-r--r--tokio-sync/Cargo.toml4
-rw-r--r--tokio-sync/README.md2
-rw-r--r--tokio-sync/src/lib.rs2
4 files changed, 10 insertions, 4 deletions
diff --git a/tokio-sync/CHANGELOG.md b/tokio-sync/CHANGELOG.md
index 3623a34e..c8838456 100644
--- a/tokio-sync/CHANGELOG.md
+++ b/tokio-sync/CHANGELOG.md
@@ -1,3 +1,9 @@
+# 0.1.3 (March 1, 2019)
+
+### Added
+- `Watch`, a single value broadcast channel (#922).
+- `std::error::Error` implementation for more `mpsc` types (#937).
+
# 0.1.2 (February 20, 2019)
### Fixes
diff --git a/tokio-sync/Cargo.toml b/tokio-sync/Cargo.toml
index 1b16d87f..92221380 100644
--- a/tokio-sync/Cargo.toml
+++ b/tokio-sync/Cargo.toml
@@ -7,12 +7,12 @@ name = "tokio-sync"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
-version = "0.1.2"
+version = "0.1.3"
authors = ["Carl Lerche <me@carllerche.com>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
-documentation = "https://docs.rs/tokio-sync/0.1.2/tokio_sync"
+documentation = "https://docs.rs/tokio-sync/0.1.3/tokio_sync"
description = """
Synchronization utilities.
"""
diff --git a/tokio-sync/README.md b/tokio-sync/README.md
index 5aca979e..761a2b36 100644
--- a/tokio-sync/README.md
+++ b/tokio-sync/README.md
@@ -2,7 +2,7 @@
Synchronization utilities
-[Documentation](https://docs.rs/tokio-sync/0.1.2/tokio_sync/)
+[Documentation](https://docs.rs/tokio-sync/0.1.3/tokio_sync/)
## Overview
diff --git a/tokio-sync/src/lib.rs b/tokio-sync/src/lib.rs
index e7c62ece..8eb01cda 100644
--- a/tokio-sync/src/lib.rs
+++ b/tokio-sync/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/tokio-sync/0.1.2")]
+#![doc(html_root_url = "https://docs.rs/tokio-sync/0.1.3")]
#![deny(missing_debug_implementations, missing_docs, unreachable_pub)]
#![cfg_attr(test, deny(warnings))]