Release v0.7.0
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0b51118..9740466 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,7 +4,8 @@
 Overall a large number of API changes have been made to reduce the complexity of
 the implementation and remove overhead where possible.
 
-Please refer to the upgrade guide in docs/upgrade_guide.md for additional
+Please refer to the [blog post about
+0.7-alpha.1](https://tokio.rs/blog/2019-12-mio-v0.7-alpha.1/) for additional
 information.
 
 ## Added
diff --git a/Cargo.toml b/Cargo.toml
index 6449690..924b28c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,11 +6,11 @@
 # - Update CHANGELOG.md.
 # - Update doc URL.
 # - Create git tag
-version       = "0.7.0-alpha.1"
+version       = "0.7.0"
 license       = "MIT"
 authors       = ["Carl Lerche <me@carllerche.com>"]
 description   = "Lightweight non-blocking IO"
-documentation = "https://docs.rs/mio/0.7.0-alpha.1/mio/"
+documentation = "https://docs.rs/mio/0.7.0"
 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 627a15e..1853582 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/mio/0.7.0-alpha.1")]
+#![doc(html_root_url = "https://docs.rs/mio/0.7.0")]
 #![deny(
     missing_docs,
     missing_debug_implementations,