From 6de2cf19985434937c7ee7a83b84297a63333764 Mon Sep 17 00:00:00 2001
From: Chris Wong <lambda.fairy@gmail.com>
Date: Thu, 17 Jan 2019 16:01:55 +1300
Subject: [PATCH] Release 0.20.0

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index af9a049..aeb13a6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,13 @@
 
 ## [Unreleased]
 
+## [0.20.0] - 2019-01-17
+
+- [Added] Rocket 0.4 support
+  [#162](https://github.com/lfairy/maud/pull/162)
+- [Changed] Set `Content-Type` header for Actix responses
+  [#160](https://github.com/lfairy/maud/pull/160)
+
 ## [0.19.0] - 2018-10-20
 
 - [Added] Allow arbitrary syntax in class and ID shorthand
@@ -206,7 +213,8 @@
 - [Fixed] Update to latest syntax extension API
 
 
-[Unreleased]: https://github.com/lfairy/maud/compare/v0.19.0...HEAD
+[Unreleased]: https://github.com/lfairy/maud/compare/v0.20.0...HEAD
+[0.20.0]: https://github.com/lfairy/maud/compare/v0.19.0...v0.20.0
 [0.19.0]: https://github.com/lfairy/maud/compare/v0.18.1...v0.19.0
 [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
diff --git a/maud/Cargo.toml b/maud/Cargo.toml
index 3bd7034..cd4aec3 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.19.0"
+version = "0.20.0"
 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.19.0", path = "../maud_macros" }
+maud_macros = { version = "0.20.0", path = "../maud_macros" }
 iron = { version = ">= 0.5.1, < 0.7.0", optional = true }
 rocket = { version = ">= 0.3, < 0.5", optional = true }
 actix-web = { version = ">= 0.6.12, < 0.8.0", optional = true }
diff --git a/maud/src/lib.rs b/maud/src/lib.rs
index 00afc8b..fbe4118 100644
--- a/maud/src/lib.rs
+++ b/maud/src/lib.rs
@@ -7,7 +7,7 @@
 //!
 //! [book]: https://maud.lambda.xyz/
 
-#![doc(html_root_url = "https://docs.rs/maud/0.19.0")]
+#![doc(html_root_url = "https://docs.rs/maud/0.20.0")]
 
 #[cfg(feature = "actix-web")] extern crate actix_web;
 #[cfg(feature = "iron")] extern crate iron;
diff --git a/maud_macros/Cargo.toml b/maud_macros/Cargo.toml
index 3477dc6..154f908 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.19.0"
+version = "0.20.0"
 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 4a05d1f..0423aaf 100644
--- a/maud_macros/src/lib.rs
+++ b/maud_macros/src/lib.rs
@@ -4,7 +4,7 @@
 #![feature(proc_macro_quote)]
 #![feature(proc_macro_span)]
 
-#![doc(html_root_url = "https://docs.rs/maud_macros/0.19.0")]
+#![doc(html_root_url = "https://docs.rs/maud_macros/0.20.0")]
 
 // TokenStream values are reference counted, and the mental overhead of tracking
 // lifetimes outweighs the marginal gains from explicit borrowing