Bump version to v0.6.1
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a60c3f4..f69e54c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,14 @@
+# 0.6.1 (October 30, 2016)
+
+* Update dependency of `libc` to 0.2.16
+* Fix channel `dec` logic
+* Fix a timer bug around timeout cancellation
+* Don't allocate buffers for TCP reads on Windows
+* Touched up documentation in a few places
+* Fix an infinite looping timer thread on OSX
+* Fix compile on 32-bit OSX
+* Fix compile on FreeBSD
+
 # 0.6.0 (September 2, 2016)
 
 * Shift primary API towards `Poll`
diff --git a/Cargo.toml b/Cargo.toml
index 05b6b6d..b5419fe 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,11 +1,11 @@
 [package]
 
 name          = "mio"
-version       = "0.6.0"
+version       = "0.6.1"
 license       = "MIT"
 authors       = ["Carl Lerche <me@carllerche.com>"]
 description   = "Lightweight non-blocking IO"
-documentation = "https://docs.rs/mio/0.6.0/mio/"
+documentation = "https://docs.rs/mio/0.6.1/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 bb43ee3..213c0e0 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -71,6 +71,7 @@
 //!
 //! ```
 
+#![doc(html_root_url = "https://docs.rs/mio/0.6.1")]
 #![crate_name = "mio"]
 #![cfg_attr(unix, deny(warnings))]