Skip to content

Commit fb193d3

Browse files
authored
Release 0.27 (#470)
* Release 0.27 * Update changelog
1 parent 237d8ad commit fb193d3

File tree

6 files changed

+24
-9
lines changed

6 files changed

+24
-9
lines changed

CHANGELOG.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,22 @@
22

33
## [Unreleased]
44

5+
## [0.27.0] - 2025-02-02
6+
7+
- Add support for Submillisecond web framework
8+
[#419](https://github.com/lambda-fairy/maud/pull/419)
9+
- Actix Web: Implement `MessageBody` for `Markup`
10+
[#430](https://github.com/lambda-fairy/maud/pull/430)
511
- Support `axum` v0.8 through `axum-core` v0.5
6-
- Add support for `poem` version 3.
12+
[#457](https://github.com/lambda-fairy/maud/pull/457)
13+
- Rewrite parser
14+
[#412](https://github.com/lambda-fairy/maud/pull/412)
15+
- Error when `else` is used with `@`
16+
[#462](https://github.com/lambda-fairy/maud/pull/462)
17+
- Add support for `poem` version 3
18+
[#466](https://github.com/lambda-fairy/maud/pull/466)
19+
- Avoid allocation when converting to `axum` `Response`
20+
[#467](https://github.com/lambda-fairy/maud/pull/467)
721

822
## [0.26.0] - 2024-01-15
923

@@ -314,7 +328,8 @@
314328
- Update to latest syntax extension API
315329

316330

317-
[Unreleased]: https://github.com/lambda-fairy/maud/compare/v0.26.0...HEAD
331+
[Unreleased]: https://github.com/lambda-fairy/maud/compare/v0.27.0...HEAD
332+
[0.27.0]: https://github.com/lambda-fairy/maud/compare/v0.26.0...v0.27.0
318333
[0.26.0]: https://github.com/lambda-fairy/maud/compare/v0.25.0...v0.26.0
319334
[0.25.0]: https://github.com/lambda-fairy/maud/compare/v0.24.0...v0.25.0
320335
[0.24.0]: https://github.com/lambda-fairy/maud/compare/v0.23.0...v0.24.0

docs/Cargo.lock

Lines changed: 2 additions & 2 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.26.0"
4+
version = "0.27.0"
55
documentation = "https://docs.rs/maud/"
66
description = "Compile-time HTML templates."
77
categories = ["template-engine"]
@@ -20,7 +20,7 @@ actix-web = ["actix-web-dep", "futures-util"]
2020
axum = ["axum-core", "http"]
2121

2222
[dependencies]
23-
maud_macros = { version = "0.26.0", path = "../maud_macros" }
23+
maud_macros = { version = "0.27.0", path = "../maud_macros" }
2424
itoa = "1"
2525
rocket = { version = "0.5", optional = true }
2626
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
@@ -7,7 +7,7 @@
77
//!
88
//! [book]: https://maud.lambda.xyz/
99
10-
#![doc(html_root_url = "https://docs.rs/maud/0.26.0")]
10+
#![doc(html_root_url = "https://docs.rs/maud/0.27.0")]
1111

1212
extern crate alloc;
1313

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.26.0"
4+
version = "0.27.0"
55
documentation = "https://docs.rs/maud_macros/"
66
description = "Internal crate. Please use 'maud' instead."
77

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.26.0")]
1+
#![doc(html_root_url = "https://docs.rs/maud_macros/0.27.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)