From 89639ec48bcfc2c6edba536cc9ce309516ef2d72 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Sun, 19 Aug 2018 21:23:49 -0700 Subject: [PATCH] Bump tokio-uds version to v0.2.1 (#552) Fixes #551 --- tokio-uds/CHANGELOG.md | 6 ++++++ tokio-uds/Cargo.toml | 4 ++-- tokio-uds/src/lib.rs | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/tokio-uds/CHANGELOG.md b/tokio-uds/CHANGELOG.md index 0f9a35656..3ae98e5a0 100644 --- a/tokio-uds/CHANGELOG.md +++ b/tokio-uds/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.2.1 (August 19, 2018) + +* Re-export `ConnectFuture` (#430). +* bug: Fix `recv_from` (#452). +* bug: Fix build on FreeBSD. + # 0.2.0 (June 6, 2018) * Initial 0.2 release. diff --git a/tokio-uds/Cargo.toml b/tokio-uds/Cargo.toml index ada5ffba5..521118bce 100644 --- a/tokio-uds/Cargo.toml +++ b/tokio-uds/Cargo.toml @@ -4,12 +4,12 @@ name = "tokio-uds" # - Update html_root_url. # - Update CHANGELOG.md. # - Create "v0.2.x" git tag. -version = "0.2.0" +version = "0.2.1" 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" +documentation = "https://docs.rs/tokio-uds/0.2.1/tokio_uds/" description = """ Unix Domain sockets for Tokio """ diff --git a/tokio-uds/src/lib.rs b/tokio-uds/src/lib.rs index 70545193d..bb8d93f66 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.0")] +#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.1")] #![deny(missing_docs, warnings, missing_debug_implementations)] extern crate bytes;