Release v0.6.22
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 556bd90..bfb1af7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.6.22 (May 01, 2020)
+
+### Added
+- Add support for illumos target (#1294)
+
 # 0.6.21 (November 27, 2019)
 
 ### Fixed
diff --git a/Cargo.toml b/Cargo.toml
index ab4ec40..e60df46 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,11 +6,11 @@
 # - Update CHANGELOG.md.
 # - Update doc URL.
 # - Create git tag
-version       = "0.6.21"
+version       = "0.6.22"
 license       = "MIT"
 authors       = ["Carl Lerche <me@carllerche.com>"]
 description   = "Lightweight non-blocking IO"
-documentation = "https://docs.rs/mio/0.6.21/mio/"
+documentation = "https://docs.rs/mio/0.6.22/mio/"
 homepage      = "https://github.com/tokio-rs/mio"
 repository    = "https://github.com/tokio-rs/mio"
 readme        = "README.md"
diff --git a/src/lib.rs b/src/lib.rs
index 1d2f500..6b57296 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/mio/0.6.21")]
+#![doc(html_root_url = "https://docs.rs/mio/0.6.22")]
 // Mio targets old versions of the Rust compiler. In order to do this, uses
 // deprecated APIs.
 #![allow(bare_trait_objects, deprecated, unknown_lints)]