diff --git a/CHANGELOG.md b/CHANGELOG.md
index d11d348..d9616af 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
 
 ## [Unreleased]
 
+## [0.17.5] - 2018-05-26
+
+- [Fixed] Update to rustc 1.27.0-nightly (2f2a11dfc 2018-05-16)
+
 ## [0.17.4] - 2018-05-02
 
 - [Fixed] Update to rustc 1.27.0-nightly (686d0ae13 2018-04-27)
@@ -168,7 +172,8 @@
 - [Fixed] Update to latest syntax extension API
 
 
-[Unreleased]: https://github.com/lfairy/maud/compare/v0.17.4...HEAD
+[Unreleased]: https://github.com/lfairy/maud/compare/v0.17.5...HEAD
+[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
 [0.17.3]: https://github.com/lfairy/maud/compare/v0.17.2...v0.17.3
 [0.17.2]: https://github.com/lfairy/maud/compare/v0.17.1...v0.17.2
diff --git a/maud/Cargo.toml b/maud/Cargo.toml
index 58b4dba..ab40265 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.17.4"
+version = "0.17.5"
 authors = ["Chris Wong <lambda.fairy@gmail.com>"]
 
 license = "MIT/Apache-2.0"
@@ -14,7 +14,7 @@ categories = ["template-engine"]
 
 [dependencies]
 maud_htmlescape = { version = "0.17.0", path = "../maud_htmlescape" }
-maud_macros = { version = "0.17.4", path = "../maud_macros" }
+maud_macros = { version = "0.17.5", path = "../maud_macros" }
 iron = { version = ">= 0.5.1, < 0.7.0", optional = true }
 rocket = { version = "0.3", optional = true }
 
diff --git a/maud/src/lib.rs b/maud/src/lib.rs
index 7a1f086..0a245ab 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.17.4")]
+#![doc(html_root_url = "https://docs.rs/maud/0.17.5")]
 
 #[cfg(feature = "iron")] extern crate iron;
 #[cfg(feature = "rocket")] extern crate rocket;
diff --git a/maud_macros/Cargo.toml b/maud_macros/Cargo.toml
index f3fc319..cbf0043 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.17.4"
+version = "0.17.5"
 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 9730cdc..9db0da2 100644
--- a/maud_macros/src/lib.rs
+++ b/maud_macros/src/lib.rs
@@ -1,7 +1,7 @@
 #![feature(proc_macro)]
 #![feature(proc_macro_non_items)]
 
-#![doc(html_root_url = "https://docs.rs/maud_macros/0.17.4")]
+#![doc(html_root_url = "https://docs.rs/maud_macros/0.17.5")]
 
 // TokenStream values are reference counted, and the mental overhead of tracking
 // lifetimes outweighs the marginal gains from explicit borrowing