Bump version to v0.6.17 (#942)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index ef7baeb..89a0700 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,13 @@
-# Unreleased (Unreleased)
+# 0.6.17 (May 15, 2018)
 
-* Fix lazycell related compilation issues.
+### Fixed
+- Don't report `RDHUP` as `HUP` (#939)
+- Fix lazycell related compilation issues.
+- Fix EPOLLPRI conflicting with READABLE
+- Abort process on ref count overflows
+
+### Added
+- Define PRI on all targets
 
 # 0.6.16 (September 5, 2018)
 
diff --git a/Cargo.toml b/Cargo.toml
index 38b1a49..f807993 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,11 +6,11 @@
 # - Update CHANGELOG.md.
 # - Update doc URL.
 # - Create git tag
-version       = "0.6.16"
+version       = "0.6.17"
 license       = "MIT"
 authors       = ["Carl Lerche <me@carllerche.com>"]
 description   = "Lightweight non-blocking IO"
-documentation = "https://docs.rs/mio/0.6.16/mio/"
+documentation = "https://docs.rs/mio/0.6.17/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 7599e07..6c0ad1e 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/mio/0.6.16")]
+#![doc(html_root_url = "https://docs.rs/mio/0.6.17")]
 // Mio targets old versions of the Rust compiler. In order to do this, uses
 // deprecated APIs.
 #![allow(deprecated)]