summaryrefslogtreecommitdiffstats
path: root/tokio-uds
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2018-10-23 22:00:49 -0700
committerGitHub <noreply@github.com>2018-10-23 22:00:49 -0700
commitf929576f0ea0debedd31cccd9b5a336ea1687568 (patch)
treec26891e673243ef7770b17a262651dec47e294ba /tokio-uds
parentb0f001a05a5c21a87c9b1151a41fabbafffe73bf (diff)
Bump version to 0.1.12 (#718)
Also bumps the following sub-crates: * tokio-fs (0.1.4) * tokio-io (0.1.10) * tokio-signal (0.2.6) * tokio-threadpool (0.1.8) * tokio-uds (0.2.3)
Diffstat (limited to 'tokio-uds')
-rw-r--r--tokio-uds/CHANGELOG.md4
-rw-r--r--tokio-uds/Cargo.toml4
-rw-r--r--tokio-uds/src/lib.rs8
3 files changed, 10 insertions, 6 deletions
diff --git a/tokio-uds/CHANGELOG.md b/tokio-uds/CHANGELOG.md
index 88a53844..0b930db7 100644
--- a/tokio-uds/CHANGELOG.md
+++ b/tokio-uds/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 0.2.3 (October 23, 2018)
+
+* Fix build on NetBSD (#715).
+
# 0.2.2 (September 27, 2018)
* Fix bug in `UdsStream::read_buf` (#672).
diff --git a/tokio-uds/Cargo.toml b/tokio-uds/Cargo.toml
index 6403e02e..72e222f8 100644
--- a/tokio-uds/Cargo.toml
+++ b/tokio-uds/Cargo.toml
@@ -5,12 +5,12 @@ name = "tokio-uds"
# - Update doc url
# - Update CHANGELOG.md.
# - Create "v0.2.x" git tag.
-version = "0.2.2"
+version = "0.2.3"
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.2/tokio_uds/"
+documentation = "https://docs.rs/tokio-uds/0.2.3/tokio_uds/"
description = """
Unix Domain sockets for Tokio
"""
diff --git a/tokio-uds/src/lib.rs b/tokio-uds/src/lib.rs
index 47fd9218..c4afed2c 100644
--- a/tokio-uds/src/lib.rs
+++ b/tokio-uds/src/lib.rs
@@ -1,11 +1,11 @@
+#![cfg(unix)]
+#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.3")]
+#![deny(missing_docs, warnings, missing_debug_implementations)]
+
//! Unix Domain Sockets for Tokio.
//!
//! This crate provides APIs for using Unix Domain Sockets with Tokio.
-#![cfg(unix)]
-#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.2")]
-#![deny(missing_docs, warnings, missing_debug_implementations)]
-
extern crate bytes;
#[macro_use]
extern crate futures;