Bump tokio-uds to v0.2.2

This commit is contained in:
Carl Lerche 2018-09-27 20:05:23 -07:00
parent 3a88d85538
commit 1e45237a28
No known key found for this signature in database
GPG Key ID: 4FA212AF562BD9E9
3 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,7 @@
# 0.2.2 (September 27, 2018)
* Fix bug in `UdsStream::read_buf` (#672).
# 0.2.1 (August 19, 2018)
* Re-export `ConnectFuture` (#430).

View File

@ -2,14 +2,15 @@
name = "tokio-uds"
# When releasing to crates.io:
# - Update html_root_url.
# - Update doc url
# - Update CHANGELOG.md.
# - Create "v0.2.x" git tag.
version = "0.2.1"
version = "0.2.2"
authors = ["Carl Lerche <me@carllerche.com>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
documentation = "https://docs.rs/tokio-uds/0.2.1/tokio_uds/"
documentation = "https://docs.rs/tokio-uds/0.2.2/tokio_uds/"
description = """
Unix Domain sockets for Tokio
"""

View File

@ -3,7 +3,7 @@
//! This crate provides APIs for using Unix Domain Sockets with Tokio.
#![cfg(unix)]
#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.1")]
#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.2")]
#![deny(missing_docs, warnings, missing_debug_implementations)]
extern crate bytes;