summaryrefslogtreecommitdiffstats
path: root/tokio-uds
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2018-08-19 21:23:49 -0700
committerGitHub <noreply@github.com>2018-08-19 21:23:49 -0700
commit89639ec48bcfc2c6edba536cc9ce309516ef2d72 (patch)
treeaba7ee499776bb75deaad74f2ec38fcacfd110b9 /tokio-uds
parent2b1b0ac8586efac250024b35658bf6f0ac9d6727 (diff)
Bump tokio-uds version to v0.2.1 (#552)
Fixes #551
Diffstat (limited to 'tokio-uds')
-rw-r--r--tokio-uds/CHANGELOG.md6
-rw-r--r--tokio-uds/Cargo.toml4
-rw-r--r--tokio-uds/src/lib.rs2
3 files changed, 9 insertions, 3 deletions
diff --git a/tokio-uds/CHANGELOG.md b/tokio-uds/CHANGELOG.md
index 0f9a3565..3ae98e5a 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 ada5ffba..521118bc 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 <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"
+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 70545193..bb8d93f6 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;