From 41f7744fe10fdbcb82b1863240236084234cd1e7 Mon Sep 17 00:00:00 2001
From: Chris Wong <lambda.fairy@gmail.com>
Date: Sat, 21 Apr 2018 17:20:42 +1200
Subject: [PATCH] Release 0.17.3

---
 CHANGELOG.md           | 12 ++++++++++--
 maud/Cargo.toml        |  4 ++--
 maud/src/lib.rs        |  2 +-
 maud_macros/Cargo.toml |  2 +-
 maud_macros/src/lib.rs |  2 +-
 5 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5a4a559..a3ccd45 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,12 @@
 # Change Log
 
-## [Unreleased]
+## [0.17.3] - 2018-04-21
+
+- [Fixed] Update to rustc 1.27.0-nightly (ac3c2288f 2018-04-18)
+  [#121](https://github.com/lfairy/maud/issues/121)
+  [#122](https://github.com/lfairy/maud/pull/122)
+
+## [0.17.2] - 2017-11-19
 
 - [Added] Iron 0.6 support
   [#107](https://github.com/lfairy/maud/pull/107)
@@ -152,7 +158,9 @@
 - [Fixed] Update to latest syntax extension API
 
 
-[Unreleased]: https://github.com/lfairy/maud/compare/v0.17.1...HEAD
+[Unreleased]: https://github.com/lfairy/maud/compare/v0.17.3...HEAD
+[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
 [0.17.1]: https://github.com/lfairy/maud/compare/v0.17.0...v0.17.1
 [0.17.0]: https://github.com/lfairy/maud/compare/v0.16.3...v0.17.0
 [0.16.3]: https://github.com/lfairy/maud/compare/v0.16.2...v0.16.3
diff --git a/maud/Cargo.toml b/maud/Cargo.toml
index 6bb9cab..bec14ef 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.2"
+version = "0.17.3"
 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.2", path = "../maud_macros" }
+maud_macros = { version = "0.17.3", 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 3850b15..47b90ca 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.2")]
+#![doc(html_root_url = "https://docs.rs/maud/0.17.3")]
 
 #[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 4b4f23c..3ea68df 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.2"
+version = "0.17.3"
 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 0885fd5..acf1919 100644
--- a/maud_macros/src/lib.rs
+++ b/maud_macros/src/lib.rs
@@ -1,6 +1,6 @@
 #![feature(proc_macro)]
 
-#![doc(html_root_url = "https://docs.rs/maud_macros/0.17.2")]
+#![doc(html_root_url = "https://docs.rs/maud_macros/0.17.3")]
 
 // TokenStream values are reference counted, and the mental overhead of tracking
 // lifetimes outweighs the marginal gains from explicit borrowing