Prepare v0.7.2 release
diff --git a/CHANGELOG.md b/CHANGELOG.md
index dd4d46a..afc49bd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# 0.7.2
+
+## Added
+
+* Windows named pipe support.
+  (https://github.com/tokio-rs/mio/commit/52e8c2220e87696d20f13561402bcaabba4136ed)
+
 # 0.7.1
 
 ## Reduced support for 32-bit Apple targets
diff --git a/Cargo.toml b/Cargo.toml
index 6d0b02b..74779a3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,11 +6,11 @@
 # - Update CHANGELOG.md.
 # - Update doc URL.
 # - Create git tag
-version       = "0.7.1"
+version       = "0.7.2"
 license       = "MIT"
 authors       = ["Carl Lerche <me@carllerche.com>"]
 description   = "Lightweight non-blocking IO"
-documentation = "https://docs.rs/mio/0.7.0"
+documentation = "https://docs.rs/mio/0.7.2"
 homepage      = "https://github.com/tokio-rs/mio"
 repository    = "https://github.com/tokio-rs/mio"
 readme        = "README.md"
diff --git a/src/lib.rs b/src/lib.rs
index a3eb12a..d8342a1 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/mio/0.7.1")]
+#![doc(html_root_url = "https://docs.rs/mio/0.7.2")]
 #![deny(
     missing_docs,
     missing_debug_implementations,