Bump to v1.1.0

This commit is contained in:
Stjepan Glavina 2020-06-19 12:27:13 +02:00
parent b00284a1f2
commit 51b0494900
3 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
# Version 1.1.0
- Implement `AsyncSeek` for `Arc`, `Mutex`, and `&Mutex`.
# Version 1.0.1
- Fix failing tests.

View File

@ -1,6 +1,6 @@
[package]
name = "async-dup"
version = "1.0.1"
version = "1.1.0"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
description = "Duplicate an async I/O handle"

View File

@ -13,8 +13,8 @@ Duplicate an async I/O handle.
This crate provides two tools, `Arc` and `Mutex`:
* `Arc` implements `AsyncRead` and `AsyncWrite` if a reference to the inner type does.
* A reference to `Mutex` implements `AsyncRead` and `AsyncWrite` if the inner type does.
* `Arc` implements `AsyncRead`, `AsyncWrite`, and `AsyncSeek` if a reference to the inner type does.
* A reference to `Mutex` implements `AsyncRead`, `AsyncWrite`, and `AsyncSeek` if the inner type does.
Wrap an async I/O handle in `Arc` or `Mutex` to clone it or share among tasks.