diff --git a/CHANGELOG.md b/CHANGELOG.md
index cd403b6..038660b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
 
 ## [Unreleased]
 
+## [0.18.1] - 2018-07-18
+
+- [Fixed] Update to rustc 1.29.0-nightly (1ecf6929d 2018-07-16)
+
 ## [0.18.0] - 2018-07-15
 
 - [Added] Support for the Actix web framework
@@ -183,7 +187,8 @@
 - [Fixed] Update to latest syntax extension API
 
 
-[Unreleased]: https://github.com/lfairy/maud/compare/v0.18.0...HEAD
+[Unreleased]: https://github.com/lfairy/maud/compare/v0.18.1...HEAD
+[0.18.1]: https://github.com/lfairy/maud/compare/v0.18.0...v0.18.1
 [0.18.0]: https://github.com/lfairy/maud/compare/v0.17.5...v0.18.0
 [0.17.5]: https://github.com/lfairy/maud/compare/v0.17.4...v0.17.5
 [0.17.4]: https://github.com/lfairy/maud/compare/v0.17.3...v0.17.4
diff --git a/maud/Cargo.toml b/maud/Cargo.toml
index 7ec147b..70a31f9 100644
--- a/maud/Cargo.toml
+++ b/maud/Cargo.toml
@@ -2,7 +2,7 @@
 
 name = "maud"
 # When releasing a new version, please update html_root_url in src/lib.rs
-version = "0.18.0"
+version = "0.18.1"
 authors = ["Chris Wong <lambda.fairy@gmail.com>"]
 
 license = "MIT/Apache-2.0"
@@ -14,13 +14,13 @@ categories = ["template-engine"]
 
 [dependencies]
 maud_htmlescape = { version = "0.17.0", path = "../maud_htmlescape" }
-maud_macros = { version = "0.18.0", path = "../maud_macros" }
+maud_macros = { version = "0.18.1", path = "../maud_macros" }
 iron = { version = ">= 0.5.1, < 0.7.0", optional = true }
 rocket = { version = "0.3", optional = true }
 actix-web = { version = "0.6.12", optional = true }
 
 [dev-dependencies]
-maud_lints = { version = "0.17.0", path = "../maud_lints" }
+maud_lints = { version = "0.18.1", path = "../maud_lints" }
 
 [badges]
 travis-ci = { repository = "lfairy/maud" }
diff --git a/maud/src/lib.rs b/maud/src/lib.rs
index 32116ab..8e7105c 100644
--- a/maud/src/lib.rs
+++ b/maud/src/lib.rs
@@ -8,7 +8,7 @@
 //!
 //! [book]: https://maud.lambda.xyz/
 
-#![doc(html_root_url = "https://docs.rs/maud/0.18.0")]
+#![doc(html_root_url = "https://docs.rs/maud/0.18.1")]
 
 #[cfg(feature = "actix-web")] extern crate actix_web;
 #[cfg(feature = "iron")] extern crate iron;
diff --git a/maud_lints/Cargo.toml b/maud_lints/Cargo.toml
index 9a2a956..227c4cb 100644
--- a/maud_lints/Cargo.toml
+++ b/maud_lints/Cargo.toml
@@ -2,7 +2,7 @@
 
 name = "maud_lints"
 # When releasing a new version, please update html_root_url in src/lib.rs
-version = "0.17.4"
+version = "0.18.1"
 authors = ["Chris Wong <lambda.fairy@gmail.com>"]
 
 license = "MIT/Apache-2.0"
diff --git a/maud_lints/src/lib.rs b/maud_lints/src/lib.rs
index 31f9f36..4dead65 100644
--- a/maud_lints/src/lib.rs
+++ b/maud_lints/src/lib.rs
@@ -4,7 +4,7 @@
 #![feature(macro_vis_matcher)]
 #![recursion_limit = "1000"]  // if_chain
 
-#![doc(html_root_url = "https://docs.rs/maud_lints/0.17.4")]
+#![doc(html_root_url = "https://docs.rs/maud_lints/0.18.1")]
 
 #[macro_use]
 extern crate if_chain;
diff --git a/maud_macros/Cargo.toml b/maud_macros/Cargo.toml
index 87e8f3e..698cb92 100644
--- a/maud_macros/Cargo.toml
+++ b/maud_macros/Cargo.toml
@@ -2,7 +2,7 @@
 
 name = "maud_macros"
 # When releasing a new version, please update html_root_url in src/lib.rs
-version = "0.18.0"
+version = "0.18.1"
 authors = ["Chris Wong <lambda.fairy@gmail.com>"]
 
 license = "MIT/Apache-2.0"
diff --git a/maud_macros/src/lib.rs b/maud_macros/src/lib.rs
index 16f3baf..662c89e 100644
--- a/maud_macros/src/lib.rs
+++ b/maud_macros/src/lib.rs
@@ -4,7 +4,7 @@
 #![feature(proc_macro_span)]
 #![feature(use_extern_macros)]
 
-#![doc(html_root_url = "https://docs.rs/maud_macros/0.18.0")]
+#![doc(html_root_url = "https://docs.rs/maud_macros/0.18.1")]
 
 // TokenStream values are reference counted, and the mental overhead of tracking
 // lifetimes outweighs the marginal gains from explicit borrowing