From 7a839a9a1c6007f53013dec401ac94456323326f Mon Sep 17 00:00:00 2001 From: Chris Wong Date: Mon, 27 Sep 2021 22:01:18 +1000 Subject: [PATCH] Bump `maud_htmlescape` version for `no_std` support --- docs/Cargo.lock | 2 +- maud/Cargo.toml | 2 +- maud_htmlescape/Cargo.toml | 2 +- maud_htmlescape/lib.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/Cargo.lock b/docs/Cargo.lock index aa9228c8..0eb110f4 100644 --- a/docs/Cargo.lock +++ b/docs/Cargo.lock @@ -301,7 +301,7 @@ dependencies = [ [[package]] name = "maud_htmlescape" -version = "0.17.0" +version = "0.17.1" [[package]] name = "maud_macros" diff --git a/maud/Cargo.toml b/maud/Cargo.toml index 73633f01..dd92af39 100644 --- a/maud/Cargo.toml +++ b/maud/Cargo.toml @@ -18,7 +18,7 @@ default = [] actix-web = ["actix-web-dep", "futures-util"] [dependencies] -maud_htmlescape = { version = "0.17.0", path = "../maud_htmlescape" } +maud_htmlescape = { version = "0.17.1", path = "../maud_htmlescape" } maud_macros = { version = "0.22.3", path = "../maud_macros" } iron = { version = ">= 0.5.1, < 0.7.0", optional = true } rocket = { version = ">= 0.3, < 0.5", optional = true } diff --git a/maud_htmlescape/Cargo.toml b/maud_htmlescape/Cargo.toml index 1440e600..e4e2ff94 100644 --- a/maud_htmlescape/Cargo.toml +++ b/maud_htmlescape/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "maud_htmlescape" # When releasing a new version, please update html_root_url in lib.rs -version = "0.17.0" +version = "0.17.1" authors = ["Chris Wong "] license = "MIT/Apache-2.0" documentation = "https://docs.rs/maud_htmlescape/" diff --git a/maud_htmlescape/lib.rs b/maud_htmlescape/lib.rs index 6f7a20ca..f8adb77d 100644 --- a/maud_htmlescape/lib.rs +++ b/maud_htmlescape/lib.rs @@ -6,7 +6,7 @@ //! //! [Maud]: https://maud.lambda.xyz -#![doc(html_root_url = "https://docs.rs/maud_htmlescape/0.17.0")] +#![doc(html_root_url = "https://docs.rs/maud_htmlescape/0.17.1")] extern crate alloc;