Skip to content

Commit

Permalink
Release 0.22.2 (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
lambda-fairy authored Jan 9, 2021
1 parent b286c65 commit 87b7c9c
Show file tree
Hide file tree
Showing 6 changed files with 63 additions and 63 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

## [Unreleased]

- [Changed] Don't require `?` suffix for empty attributes. The old syntax is kept for backward compatibility.
## [0.22.2] - 2021-01-09

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


[Unreleased]: https://github.com/lambda-fairy/maud/compare/v0.22.1...HEAD
[Unreleased]: https://github.com/lambda-fairy/maud/compare/v0.22.2...HEAD
[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
[0.22.0]: https://github.com/lambda-fairy/maud/compare/v0.21.0...v0.22.0
[0.21.0]: https://github.com/lambda-fairy/maud/compare/v0.20.0...v0.21.0
Expand Down
109 changes: 53 additions & 56 deletions docs/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions maud/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "maud"
# When releasing a new version, please update html_root_url in src/lib.rs
version = "0.22.1"
version = "0.22.2"
authors = ["Chris Wong <[email protected]>"]
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/maud/"
Expand All @@ -19,7 +19,7 @@ actix-web = ["actix-web-dep", "futures-util"]

[dependencies]
maud_htmlescape = { version = "0.17.0", path = "../maud_htmlescape" }
maud_macros = { version = "0.22.1", path = "../maud_macros" }
maud_macros = { version = "0.22.2", path = "../maud_macros" }
iron = { version = ">= 0.5.1, < 0.7.0", optional = true }
rocket = { version = ">= 0.3, < 0.5", optional = true }
futures-util = { version = "0.3.0", optional = true, default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion maud/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
//!
//! [book]: https://maud.lambda.xyz/

#![doc(html_root_url = "https://docs.rs/maud/0.22.1")]
#![doc(html_root_url = "https://docs.rs/maud/0.22.2")]

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

Expand Down
2 changes: 1 addition & 1 deletion maud_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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.1"
version = "0.22.2"
authors = ["Chris Wong <[email protected]>"]
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/maud_macros/"
Expand Down
2 changes: 1 addition & 1 deletion maud_macros/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/maud_macros/0.22.1")]
#![doc(html_root_url = "https://docs.rs/maud_macros/0.22.2")]
// 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)]
Expand Down

0 comments on commit 87b7c9c

Please sign in to comment.