mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-25 12:00:35 +00:00
Bump tokio-sync to v0.1.2. (#909)
This commit is contained in:
parent
0da649727c
commit
7ca4f3ec4b
@ -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
|
||||
|
@ -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.
|
||||
"""
|
||||
|
@ -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
|
||||
|
||||
|
@ -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))]
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user