Bump version to v0.6.16 (#876)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 31a6f4b..5ca26f6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.6.16 (September 5, 2018)
+
+* Add EPOLLPRI readiness to UnixReady on supported platforms (#867)
+* Reduce spurious awaken calls (#875)
+
 # 0.6.15 (July 3, 2018)
 
 * Implement `Evented` for containers (#840).
diff --git a/Cargo.toml b/Cargo.toml
index 1109f8e..24690a2 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,12 +4,13 @@
 # When releasing to crates.io:
 # - Update html_root_url.
 # - Update CHANGELOG.md.
+# - Update doc URL.
 # - Create git tag
-version       = "0.6.15"
+version       = "0.6.16"
 license       = "MIT"
 authors       = ["Carl Lerche <me@carllerche.com>"]
 description   = "Lightweight non-blocking IO"
-documentation = "https://docs.rs/mio"
+documentation = "https://docs.rs/mio/0.6.16/mio/"
 homepage      = "https://github.com/carllerche/mio"
 repository    = "https://github.com/carllerche/mio"
 readme        = "README.md"
diff --git a/src/lib.rs b/src/lib.rs
index 3f924cd..dbd197c 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,3 +1,7 @@
+#![doc(html_root_url = "https://docs.rs/mio/0.6.16")]
+#![deny(missing_docs, missing_debug_implementations)]
+#![cfg_attr(test, deny(warnings))]
+
 //! A fast, low-level IO library for Rust focusing on non-blocking APIs, event
 //! notification, and other useful utilities for building high performance IO
 //! apps.
@@ -90,12 +94,6 @@
 //!
 //! ```
 
-#![doc(html_root_url = "https://docs.rs/mio/0.6.15")]
-#![crate_name = "mio"]
-
-#![deny(missing_docs, missing_debug_implementations)]
-#![cfg_attr(test, deny(warnings))]
-
 extern crate lazycell;
 extern crate net2;
 extern crate iovec;