diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7294d4c..65b26dc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+
+### v0.9.2 (2019-06-11)
+
+#### Bug Fixes
+
+* **email:**
+ * Fix compilation with Rust 1.36+ ([393ef8d](https://github.com/lettre/lettre/commit/393ef8dcd1b1c6a6119d0666d5f09b12f50f6b4b))
+
### v0.9.1 (2019-05-05)
diff --git a/lettre/Cargo.toml b/lettre/Cargo.toml
index 0587ec2..d90cb8d 100644
--- a/lettre/Cargo.toml
+++ b/lettre/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "lettre"
-version = "0.9.1" # remember to update html_root_url
+version = "0.9.2" # remember to update html_root_url
description = "Email client"
readme = "README.md"
homepage = "http://lettre.at"
diff --git a/lettre/src/lib.rs b/lettre/src/lib.rs
index 4cc34bb..bdf2ac9 100644
--- a/lettre/src/lib.rs
+++ b/lettre/src/lib.rs
@@ -3,7 +3,7 @@
//! This mailer contains the available transports for your emails.
//!
-#![doc(html_root_url = "https://docs.rs/lettre/0.9.1")]
+#![doc(html_root_url = "https://docs.rs/lettre/0.9.2")]
#![deny(
missing_copy_implementations,
trivial_casts,
diff --git a/lettre_email/Cargo.toml b/lettre_email/Cargo.toml
index fa0656e..10d1723 100644
--- a/lettre_email/Cargo.toml
+++ b/lettre_email/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "lettre_email"
-version = "0.9.1" # remember to update html_root_url
+version = "0.9.2" # remember to update html_root_url
description = "Email builder"
readme = "README.md"
homepage = "http://lettre.at"
diff --git a/lettre_email/src/lib.rs b/lettre_email/src/lib.rs
index 51007f0..24f1bb4 100644
--- a/lettre_email/src/lib.rs
+++ b/lettre_email/src/lib.rs
@@ -1,7 +1,7 @@
//! Lettre is a mailer written in Rust. lettre_email provides a simple email builder.
//!
-#![doc(html_root_url = "https://docs.rs/lettre_email/0.9.1")]
+#![doc(html_root_url = "https://docs.rs/lettre_email/0.9.2")]
#![deny(
missing_docs,
missing_debug_implementations,