Skip to content

Commit 87b7c9c

Browse files
authored
Release 0.22.2 (#253)
1 parent b286c65 commit 87b7c9c

File tree

6 files changed

+63
-63
lines changed

6 files changed

+63
-63
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
## [Unreleased]
44

5-
- [Changed] Don't require `?` suffix for empty attributes. The old syntax is kept for backward compatibility.
5+
## [0.22.2] - 2021-01-09
6+
7+
- [Added] Don't require `?` suffix for empty attributes. The old syntax is kept for backward compatibility.
68
[#238](https://github.com/lambda-fairy/maud/pull/238)
79
- [Changed] Generalize `impl Into<String> for PreEscaped<T>` to `impl From<PreEscaped<T>> for String`.
810
[#248](https://github.com/lambda-fairy/maud/pull/248)
@@ -244,7 +246,8 @@
244246
- [Fixed] Update to latest syntax extension API
245247

246248

247-
[Unreleased]: https://github.com/lambda-fairy/maud/compare/v0.22.1...HEAD
249+
[Unreleased]: https://github.com/lambda-fairy/maud/compare/v0.22.2...HEAD
250+
[0.22.2]: https://github.com/lambda-fairy/maud/compare/v0.22.1...v0.22.2
248251
[0.22.1]: https://github.com/lambda-fairy/maud/compare/v0.22.0...v0.22.1
249252
[0.22.0]: https://github.com/lambda-fairy/maud/compare/v0.21.0...v0.22.0
250253
[0.21.0]: https://github.com/lambda-fairy/maud/compare/v0.20.0...v0.21.0

docs/Cargo.lock

Lines changed: 53 additions & 56 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

maud/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "maud"
33
# When releasing a new version, please update html_root_url in src/lib.rs
4-
version = "0.22.1"
4+
version = "0.22.2"
55
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
66
license = "MIT/Apache-2.0"
77
documentation = "https://docs.rs/maud/"
@@ -19,7 +19,7 @@ actix-web = ["actix-web-dep", "futures-util"]
1919

2020
[dependencies]
2121
maud_htmlescape = { version = "0.17.0", path = "../maud_htmlescape" }
22-
maud_macros = { version = "0.22.1", path = "../maud_macros" }
22+
maud_macros = { version = "0.22.2", path = "../maud_macros" }
2323
iron = { version = ">= 0.5.1, < 0.7.0", optional = true }
2424
rocket = { version = ">= 0.3, < 0.5", optional = true }
2525
futures-util = { version = "0.3.0", optional = true, default-features = false }

maud/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//!
66
//! [book]: https://maud.lambda.xyz/
77
8-
#![doc(html_root_url = "https://docs.rs/maud/0.22.1")]
8+
#![doc(html_root_url = "https://docs.rs/maud/0.22.2")]
99

1010
use std::fmt::{self, Write};
1111

maud_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "maud_macros"
33
# When releasing a new version, please update html_root_url in src/lib.rs
4-
version = "0.22.1"
4+
version = "0.22.2"
55
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
66
license = "MIT/Apache-2.0"
77
documentation = "https://docs.rs/maud_macros/"

maud_macros/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/maud_macros/0.22.1")]
1+
#![doc(html_root_url = "https://docs.rs/maud_macros/0.22.2")]
22
// TokenStream values are reference counted, and the mental overhead of tracking
33
// lifetimes outweighs the marginal gains from explicit borrowing
44
#![allow(clippy::needless_pass_by_value)]

0 commit comments

Comments
 (0)