Bump version to v0.6.15 (#854)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index b7c4f81..31a6f4b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.6.15 (July 3, 2018)
+
+* Implement `Evented` for containers (#840).
+* Fix android-aarch64 build (#850).
+
 # 0.6.14 (March 8, 2018)
 
 * Add `Poll::poll_interruptible` (#811)
diff --git a/Cargo.toml b/Cargo.toml
index 9521456..4c9d3d3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,7 +5,7 @@
 # - Update html_root_url.
 # - Update CHANGELOG.md.
 # - Create git tag
-version       = "0.6.14"
+version       = "0.6.15"
 license       = "MIT"
 authors       = ["Carl Lerche <me@carllerche.com>"]
 description   = "Lightweight non-blocking IO"
diff --git a/src/lib.rs b/src/lib.rs
index ad22692..d26628f 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -90,7 +90,7 @@
 //!
 //! ```
 
-#![doc(html_root_url = "https://docs.rs/mio/0.6.14")]
+#![doc(html_root_url = "https://docs.rs/mio/0.6.15")]
 #![crate_name = "mio"]
 
 #![deny(warnings, missing_docs, missing_debug_implementations)]