Skip to content

Commit 34a79ee

Browse files
committed
Release 0.22
1 parent fe5fcb1 commit 34a79ee

File tree

7 files changed

+17
-14
lines changed

7 files changed

+17
-14
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Change Log
22

33
## [Unreleased]
4+
5+
## [0.22.0] - 2020-06-20
46
- [Changed] Update Actix to 2.0.0. Actix 1.0.0 is no longer supported.
57
[#182](https://github.com/lambda-fairy/maud/pull/182)
68

@@ -227,7 +229,8 @@
227229
- [Fixed] Update to latest syntax extension API
228230

229231

230-
[Unreleased]: https://github.com/lambda-fairy/maud/compare/v0.21.0...HEAD
232+
[Unreleased]: https://github.com/lambda-fairy/maud/compare/v0.22.0...HEAD
233+
[0.22.0]: https://github.com/lambda-fairy/maud/compare/v0.21.0...v0.22.0
231234
[0.21.0]: https://github.com/lambda-fairy/maud/compare/v0.20.0...v0.21.0
232235
[0.20.0]: https://github.com/lambda-fairy/maud/compare/v0.19.0...v0.20.0
233236
[0.19.0]: https://github.com/lambda-fairy/maud/compare/v0.18.1...v0.19.0

benchmarks/Cargo.lock

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

docs/Cargo.lock

Lines changed: 4 additions & 4 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.21.0"
4+
version = "0.22.0"
55
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
66
license = "MIT/Apache-2.0"
77
documentation = "https://docs.rs/maud/"
@@ -16,7 +16,7 @@ actix-web = ["actix-web-dep", "futures"]
1616

1717
[dependencies]
1818
maud_htmlescape = { version = "0.17.0", path = "../maud_htmlescape" }
19-
maud_macros = { version = "0.21.0", path = "../maud_macros" }
19+
maud_macros = { version = "0.22.0", path = "../maud_macros" }
2020
iron = { version = ">= 0.5.1, < 0.7.0", optional = true }
2121
rocket = { version = ">= 0.3, < 0.5", optional = true }
2222
futures = { version = "0.3.0", optional = true }

maud/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//!
88
//! [book]: https://maud.lambda.xyz/
99
10-
#![doc(html_root_url = "https://docs.rs/maud/0.21.0")]
10+
#![doc(html_root_url = "https://docs.rs/maud/0.22.0")]
1111

1212
#[cfg(feature = "actix-web")] extern crate actix_web_dep;
1313
#[cfg(feature = "iron")] extern crate iron;

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.21.0"
4+
version = "0.22.0"
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
@@ -3,7 +3,7 @@
33
#![feature(proc_macro_quote)]
44
#![feature(proc_macro_span)]
55

6-
#![doc(html_root_url = "https://docs.rs/maud_macros/0.21.0")]
6+
#![doc(html_root_url = "https://docs.rs/maud_macros/0.22.0")]
77

88
// TokenStream values are reference counted, and the mental overhead of tracking
99
// lifetimes outweighs the marginal gains from explicit borrowing

0 commit comments

Comments
 (0)