Release v0.7.8
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9e5059c..2f23320 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,12 @@
+# 0.7.8
+
+## Fixes
+
+* Fix `TcpStream::set_linger` on macOS
+  (https://github.com/tokio-rs/mio/commit/175773ce02e85977db81224c782c8d140aba8543).
+* Fix compilation on DragonFlyBSD
+  (https://github.com/tokio-rs/mio/commit/b51af46b28871f8dd3233b490ee62237ffed6a26).
+
 # 0.7.7
 
 ## Added
diff --git a/Cargo.toml b/Cargo.toml
index 87c9f20..0d4b1d8 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,7 +6,7 @@
 # - Update CHANGELOG.md.
 # - Update doc URL.
 # - Create git tag
-version       = "0.7.7"
+version       = "0.7.8"
 license       = "MIT"
 authors       = [
   "Carl Lerche <me@carllerche.com>",
diff --git a/src/lib.rs b/src/lib.rs
index e815754..fedb789 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/mio/0.7.7")]
+#![doc(html_root_url = "https://docs.rs/mio/0.7.8")]
 #![deny(
     missing_docs,
     missing_debug_implementations,