summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-02-21 09:28:05 -0800
committerGitHub <noreply@github.com>2019-02-21 09:28:05 -0800
commit7ca4f3ec4b2c13dcc4f30e4339cd95a72c54cf17 (patch)
treebc19ef45e5aa02093e06444a3921ab74c29eeb8c
parent0da649727c0e72a72ed0eff315a5474ac8be3614 (diff)
Bump tokio-sync to v0.1.2. (#909)
-rw-r--r--tokio-sync/CHANGELOG.md13
-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, 17 insertions, 4 deletions
diff --git a/tokio-sync/CHANGELOG.md b/tokio-sync/CHANGELOG.md
index 9809e820..3623a34e 100644
--- a/tokio-sync/CHANGELOG.md
+++ b/tokio-sync/CHANGELOG.md
@@ -1,3 +1,16 @@
+# 0.1.2 (February 20, 2019)
+
+### Fixes
+- `mpsc` and `Semaphore` when releasing permits (#904).
+- `oneshot` task handle leak (#911).
+
+### Changes
+- Performance improvements in `AtomicTask` (#892).
+- Improved assert message when creating a channel with bound of zero (#906).
+
+### Adds
+- `AtomicTask::take_task` (#895).
+
# 0.1.1 (February 1, 2019)
### Fixes
diff --git a/tokio-sync/Cargo.toml b/tokio-sync/Cargo.toml
index 193fe18e..0cc800b9 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.1"
+version = "0.1.2"
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.1/tokio_sync"
+documentation = "https://docs.rs/tokio-sync/0.1.2/tokio_sync"
description = """
Synchronization utilities.
"""
diff --git a/tokio-sync/README.md b/tokio-sync/README.md
index 771a5e8b..5aca979e 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.1/tokio_sync/)
+[Documentation](https://docs.rs/tokio-sync/0.1.2/tokio_sync/)
## Overview
diff --git a/tokio-sync/src/lib.rs b/tokio-sync/src/lib.rs
index e1cc335c..c6ba1570 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.1")]
+#![doc(html_root_url = "https://docs.rs/tokio-sync/0.1.2")]
#![deny(missing_debug_implementations, missing_docs, unreachable_pub)]
#![cfg_attr(test, deny(warnings))]