Skip to content

Commit

Permalink
Release 0.27
Browse files Browse the repository at this point in the history
  • Loading branch information
lambda-fairy committed Jan 31, 2025
1 parent 237d8ad commit ec9600d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 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.26.0"
version = "0.27.0"
documentation = "https://docs.rs/maud/"
description = "Compile-time HTML templates."
categories = ["template-engine"]
Expand All @@ -20,7 +20,7 @@ actix-web = ["actix-web-dep", "futures-util"]
axum = ["axum-core", "http"]

[dependencies]
maud_macros = { version = "0.26.0", path = "../maud_macros" }
maud_macros = { version = "0.27.0", path = "../maud_macros" }
itoa = "1"
rocket = { version = "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 @@ -7,7 +7,7 @@
//!
//! [book]: https://maud.lambda.xyz/
#![doc(html_root_url = "https://docs.rs/maud/0.26.0")]
#![doc(html_root_url = "https://docs.rs/maud/0.27.0")]

extern crate alloc;

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

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

Please sign in to comment.