Skip to content

Commit 8415003

Browse files
authored
Release 0.24.0 (#351)
* Release 0.24.0 * Update Cargo.lock for docs
1 parent c13e1dc commit 8415003

File tree

6 files changed

+27
-24
lines changed

6 files changed

+27
-24
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.24.0] - 2022-08-12
6+
57
- Remove blanket `Render` impl for `T: Display`
68
[#320](https://github.com/lambda-fairy/maud/pull/320)
79
- Support `axum` v0.5 through `axum-core` v0.2
@@ -278,7 +280,8 @@
278280
- Update to latest syntax extension API
279281

280282

281-
[Unreleased]: https://github.com/lambda-fairy/maud/compare/v0.23.0...HEAD
283+
[Unreleased]: https://github.com/lambda-fairy/maud/compare/v0.24.0...HEAD
284+
[0.24.0]: https://github.com/lambda-fairy/maud/compare/v0.23.0...v0.24.0
282285
[0.23.0]: https://github.com/lambda-fairy/maud/compare/v0.22.3...v0.23.0
283286
[0.22.3]: https://github.com/lambda-fairy/maud/compare/v0.22.2...v0.22.3
284287
[0.22.2]: https://github.com/lambda-fairy/maud/compare/v0.22.1...v0.22.2

docs/Cargo.lock

+18-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

maud/Cargo.toml

+2-2
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.23.0"
4+
version = "0.24.0"
55
authors = ["Chris Wong <[email protected]>"]
66
license = "MIT/Apache-2.0"
77
documentation = "https://docs.rs/maud/"
@@ -19,7 +19,7 @@ actix-web = ["actix-web-dep", "futures-util"]
1919
axum = ["axum-core", "http"]
2020

2121
[dependencies]
22-
maud_macros = { version = "0.23.0", path = "../maud_macros" }
22+
maud_macros = { version = "0.24.0", path = "../maud_macros" }
2323
itoa = { version = "0.4.8", default-features = false, features = ["i128"] }
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

+1-1
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.23.0")]
10+
#![doc(html_root_url = "https://docs.rs/maud/0.24.0")]
1111

1212
extern crate alloc;
1313

maud_macros/Cargo.toml

+1-1
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.23.0"
4+
version = "0.24.0"
55
authors = ["Chris Wong <[email protected]>"]
66
license = "MIT/Apache-2.0"
77
documentation = "https://docs.rs/maud_macros/"

maud_macros/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/maud_macros/0.23.0")]
1+
#![doc(html_root_url = "https://docs.rs/maud_macros/0.24.0")]
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)