diff --git a/Cargo.toml b/Cargo.toml index 5cf8a8d..5cc12fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "unix_socket" -version = "0.4.6" +version = "0.5.0" authors = ["Steven Fackler "] license = "MIT/Apache-2.0" description = "Unix domain socket bindings" repository = "https://github.com/rust-lang-nursery/unix-socket" -documentation = "https://doc.rust-lang.org/unix-socket/doc/v0.4.6/unix_socket" +documentation = "https://doc.rust-lang.org/unix-socket/doc/v0.5.0/unix_socket" readme = "README.md" keywords = ["posix", "unix", "socket", "domain"] diff --git a/src/lib.rs b/src/lib.rs index b078413..1b75ecd 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://doc.rust-lang.org/unix-socket/doc/v0.4.6")] +#![doc(html_root_url="https://doc.rust-lang.org/unix-socket/doc/v0.5.0")] #[macro_use] extern crate cfg_if;