Bump version to v0.6.19 (#961)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1f73555..5b0e15b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.6.19 (May 28, 2018)
+
+### Fixed
+- Do not trigger HUP events on kqueue platforms (#958).
+
 # 0.6.18 (May 24, 2018)
 
 ### Fixed
diff --git a/Cargo.toml b/Cargo.toml
index 638cd3f..fe66c79 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,11 +6,11 @@
 # - Update CHANGELOG.md.
 # - Update doc URL.
 # - Create git tag
-version       = "0.6.18"
+version       = "0.6.19"
 license       = "MIT"
 authors       = ["Carl Lerche <me@carllerche.com>"]
 description   = "Lightweight non-blocking IO"
-documentation = "https://docs.rs/mio/0.6.18/mio/"
+documentation = "https://docs.rs/mio/0.6.19/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 1c9142c..076e1ad 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/mio/0.6.18")]
+#![doc(html_root_url = "https://docs.rs/mio/0.6.19")]
 // Mio targets old versions of the Rust compiler. In order to do this, uses
 // deprecated APIs.
 #![allow(deprecated)]