From 982c9f4a033fabff71508b2dbb5e8ff1a109e2a9 Mon Sep 17 00:00:00 2001
From: Chris Wong <lambda.fairy@gmail.com>
Date: Thu, 11 Nov 2021 22:08:26 +1100
Subject: [PATCH] Release 0.23.0 (#318)

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 774565b..7b4aa66 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
 
 ## [Unreleased]
 
+## [0.23.0] - 2021-11-10
+
 - Update to support axum 0.2
   [#303](https://github.com/lambda-fairy/maud/pull/303)
 - Add support for `Option<T>` attributes using the `attr=[value]` syntax.
@@ -266,7 +268,8 @@
 - Update to latest syntax extension API
 
 
-[Unreleased]: https://github.com/lambda-fairy/maud/compare/v0.22.3...HEAD
+[Unreleased]: https://github.com/lambda-fairy/maud/compare/v0.23.0...HEAD
+[0.23.0]: https://github.com/lambda-fairy/maud/compare/v0.23.3...v0.23.0
 [0.22.3]: https://github.com/lambda-fairy/maud/compare/v0.22.2...v0.22.3
 [0.22.2]: https://github.com/lambda-fairy/maud/compare/v0.22.1...v0.22.2
 [0.22.1]: https://github.com/lambda-fairy/maud/compare/v0.22.0...v0.22.1
diff --git a/docs/Cargo.lock b/docs/Cargo.lock
index a450f6a..ba73376 100644
--- a/docs/Cargo.lock
+++ b/docs/Cargo.lock
@@ -297,9 +297,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
 
 [[package]]
 name = "libc"
-version = "0.2.106"
+version = "0.2.107"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a60553f9a9e039a333b4e9b20573b9e9b9c0bb3a11e201ccc48ef4283456d673"
+checksum = "fbe5e23404da5b4f555ef85ebed98fb4083e55a00c317800bc2a50ede9f3d219"
 
 [[package]]
 name = "line-wrap"
@@ -324,14 +324,14 @@ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
 
 [[package]]
 name = "maud"
-version = "0.22.3"
+version = "0.23.0"
 dependencies = [
  "maud_macros",
 ]
 
 [[package]]
 name = "maud_macros"
-version = "0.22.3"
+version = "0.23.0"
 dependencies = [
  "proc-macro-error",
  "proc-macro2",
diff --git a/maud/Cargo.toml b/maud/Cargo.toml
index 393733a..a6c1f02 100644
--- a/maud/Cargo.toml
+++ b/maud/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "maud"
 # When releasing a new version, please update html_root_url in src/lib.rs
-version = "0.22.3"
+version = "0.23.0"
 authors = ["Chris Wong <lambda.fairy@gmail.com>"]
 license = "MIT/Apache-2.0"
 documentation = "https://docs.rs/maud/"
@@ -18,7 +18,7 @@ default = []
 actix-web = ["actix-web-dep", "futures-util"]
 
 [dependencies]
-maud_macros = { version = "0.22.3", path = "../maud_macros" }
+maud_macros = { version = "0.23.0", path = "../maud_macros" }
 rocket = { version = ">= 0.3, < 0.5", optional = true }
 futures-util = { version = "0.3.0", optional = true, default-features = false }
 actix-web-dep = { package = "actix-web", version = ">= 2, < 4", optional = true, default-features = false }
diff --git a/maud/src/lib.rs b/maud/src/lib.rs
index a3a026b..a40b0c4 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.22.3")]
+#![doc(html_root_url = "https://docs.rs/maud/0.23.0")]
 
 extern crate alloc;
 
diff --git a/maud_macros/Cargo.toml b/maud_macros/Cargo.toml
index 14a2f5c..9015cfd 100644
--- a/maud_macros/Cargo.toml
+++ b/maud_macros/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "maud_macros"
 # When releasing a new version, please update html_root_url in src/lib.rs
-version = "0.22.3"
+version = "0.23.0"
 authors = ["Chris Wong <lambda.fairy@gmail.com>"]
 license = "MIT/Apache-2.0"
 documentation = "https://docs.rs/maud_macros/"
diff --git a/maud_macros/src/lib.rs b/maud_macros/src/lib.rs
index 35f05f3..7323459 100644
--- a/maud_macros/src/lib.rs
+++ b/maud_macros/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/maud_macros/0.22.3")]
+#![doc(html_root_url = "https://docs.rs/maud_macros/0.23.0")]
 // TokenStream values are reference counted, and the mental overhead of tracking
 // lifetimes outweighs the marginal gains from explicit borrowing
 #![allow(clippy::needless_pass_by_value)]