From 1e45237a28aad44ab7fc18726ba969ba5277be85 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Thu, 27 Sep 2018 20:05:23 -0700 Subject: [PATCH] Bump tokio-uds to v0.2.2 --- tokio-uds/CHANGELOG.md | 4 ++++ tokio-uds/Cargo.toml | 5 +++-- tokio-uds/src/lib.rs | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/tokio-uds/CHANGELOG.md b/tokio-uds/CHANGELOG.md index 3ae98e5a0..88a53844e 100644 --- a/tokio-uds/CHANGELOG.md +++ b/tokio-uds/CHANGELOG.md @@ -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). diff --git a/tokio-uds/Cargo.toml b/tokio-uds/Cargo.toml index 521118bce..6403e02ef 100644 --- a/tokio-uds/Cargo.toml +++ b/tokio-uds/Cargo.toml @@ -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 "] 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 """ diff --git a/tokio-uds/src/lib.rs b/tokio-uds/src/lib.rs index bb8d93f66..47fd92187 100644 --- a/tokio-uds/src/lib.rs +++ b/tokio-uds/src/lib.rs @@ -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;