Bump version to v0.6.14 (#826)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 292dd40..b7c4f81 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,7 @@
-# Unreleased
+# 0.6.14 (March 8, 2018)
 
-* Add `Poll::poll_interruptible` (#811).
+* Add `Poll::poll_interruptible` (#811)
+* Add `Ready::all` and `usize` conversions (#825)
 
 # 0.6.13 (February 5, 2018)
 
diff --git a/Cargo.toml b/Cargo.toml
index 709000a..ca878b3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,11 @@
 [package]
 
 name          = "mio"
-version       = "0.6.13" # remember to update html_root_url
+# When releasing to crates.io:
+# - Update html_root_url.
+# - Update CHANGELOG.md.
+# - Create git tag
+version       = "0.6.14"
 license       = "MIT"
 authors       = ["Carl Lerche <me@carllerche.com>"]
 description   = "Lightweight non-blocking IO"
diff --git a/src/lib.rs b/src/lib.rs
index 30632e2..ad22692 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -90,7 +90,7 @@
 //!
 //! ```
 
-#![doc(html_root_url = "https://docs.rs/mio/0.6.13")]
+#![doc(html_root_url = "https://docs.rs/mio/0.6.14")]
 #![crate_name = "mio"]
 
 #![deny(warnings, missing_docs, missing_debug_implementations)]