Bump tokio-uds version to v0.2.1 (#552)

Fixes #551
This commit is contained in:
Carl Lerche
2018-08-19 21:23:49 -07:00
committed by GitHub
parent 2b1b0ac858
commit 89639ec48b
3 changed files with 9 additions and 3 deletions
+6
View File
@@ -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) # 0.2.0 (June 6, 2018)
* Initial 0.2 release. * Initial 0.2 release.
+2 -2
View File
@@ -4,12 +4,12 @@ name = "tokio-uds"
# - Update html_root_url. # - Update html_root_url.
# - Update CHANGELOG.md. # - Update CHANGELOG.md.
# - Create "v0.2.x" git tag. # - Create "v0.2.x" git tag.
version = "0.2.0" version = "0.2.1"
authors = ["Carl Lerche <[email protected]>"] authors = ["Carl Lerche <[email protected]>"]
license = "MIT" license = "MIT"
repository = "https://github.com/tokio-rs/tokio" repository = "https://github.com/tokio-rs/tokio"
homepage = "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 = """ description = """
Unix Domain sockets for Tokio Unix Domain sockets for Tokio
""" """
+1 -1
View File
@@ -3,7 +3,7 @@
//! This crate provides APIs for using Unix Domain Sockets with Tokio. //! This crate provides APIs for using Unix Domain Sockets with Tokio.
#![cfg(unix)] #![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)] #![deny(missing_docs, warnings, missing_debug_implementations)]
extern crate bytes; extern crate bytes;