From 1a5023e2870fe0d6d3014d561328dd0599e04ca3 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Wed, 5 Aug 2015 20:28:49 -0700 Subject: [PATCH] Release v0.4.4 --- Cargo.toml | 4 ++-- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 061468e..d7acea1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "unix_socket" -version = "0.4.3" +version = "0.4.4" authors = ["Steven Fackler "] license = "MIT" description = "Unix domain socket bindings" repository = "https://github.com/sfackler/rust-unix-socket" -documentation = "https://sfackler.github.io/rust-unix-socket/doc/v0.4.3/unix_socket" +documentation = "https://sfackler.github.io/rust-unix-socket/doc/v0.4.4/unix_socket" readme = "README.md" keywords = ["posix", "unix", "socket", "domain"] diff --git a/README.md b/README.md index f44ad02..544dea3 100644 --- a/README.md +++ b/README.md @@ -4,4 +4,4 @@ Support for Unix domain socket clients and servers. -[Documentation](https://sfackler.github.io/rust-unix-socket/doc/v0.4.3/unix_socket) +[Documentation](https://sfackler.github.io/rust-unix-socket/doc/v0.4.4/unix_socket) diff --git a/src/lib.rs b/src/lib.rs index ae8846d..c35f640 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ //! Support for Unix domain socket clients and servers. #![warn(missing_docs)] -#![doc(html_root_url="https://sfackler.github.io/rust-unix-socket/doc/v0.4.3")] +#![doc(html_root_url="https://sfackler.github.io/rust-unix-socket/doc/v0.4.4")] #![cfg_attr(feature = "socket_timeout", feature(duration))] #![cfg_attr(all(test, feature = "socket_timeout"), feature(duration_span))]