Bump version to v0.6.12
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ab5e99f..e6ffa00 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,11 @@
-# Unreleased
+# 0.6.12 (January 5, 2018)
 
-* Add `TcpStream::peek` function (#773)
-* Raise minimum Rust version to 1.18.0
-* `Poll`: retry select() when interrupted by a signal
+* Add `TcpStream::peek` function (#773).
+* Raise minimum Rust version to 1.18.0.
+* `Poll`: retry select() when interrupted by a signal (#742).
+* Deprecate `Events` index access (#713).
+* Add `Events::clear` (#782).
+* Add support for `lio_listio` (#780).
 
 # 0.6.11 (October 25, 2017)
 
diff --git a/Cargo.toml b/Cargo.toml
index b6b5638..ad1b6ef 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 
 name          = "mio"
-version       = "0.6.11"
+version       = "0.6.12" # remember to update html_root_url
 license       = "MIT"
 authors       = ["Carl Lerche <me@carllerche.com>"]
 description   = "Lightweight non-blocking IO"
diff --git a/src/lib.rs b/src/lib.rs
index fb385f7..a0ce92a 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -75,7 +75,7 @@
 //!
 //! ```
 
-#![doc(html_root_url = "https://docs.rs/mio/0.6.11")]
+#![doc(html_root_url = "https://docs.rs/mio/0.6.12")]
 #![crate_name = "mio"]
 
 #![deny(warnings, missing_docs, missing_debug_implementations)]