Skip to content

Commit

Permalink
Release 0.24.0 (#351)
Browse files Browse the repository at this point in the history
* Release 0.24.0

* Update Cargo.lock for docs
  • Loading branch information
lambda-fairy authored Sep 25, 2022
1 parent c13e1dc commit 8415003
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 24 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [0.24.0] - 2022-08-12

- Remove blanket `Render` impl for `T: Display`
[#320](https://github.com/lambda-fairy/maud/pull/320)
- Support `axum` v0.5 through `axum-core` v0.2
Expand Down Expand Up @@ -278,7 +280,8 @@
- Update to latest syntax extension API


[Unreleased]: https://github.com/lambda-fairy/maud/compare/v0.23.0...HEAD
[Unreleased]: https://github.com/lambda-fairy/maud/compare/v0.24.0...HEAD
[0.24.0]: https://github.com/lambda-fairy/maud/compare/v0.23.0...v0.24.0
[0.23.0]: https://github.com/lambda-fairy/maud/compare/v0.22.3...v0.23.0
[0.22.3]: https://github.com/lambda-fairy/maud/compare/v0.22.2...v0.22.3
[0.22.2]: https://github.com/lambda-fairy/maud/compare/v0.22.1...v0.22.2
Expand Down
36 changes: 18 additions & 18 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.23.0"
version = "0.24.0"
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/maud/"
Expand All @@ -19,7 +19,7 @@ actix-web = ["actix-web-dep", "futures-util"]
axum = ["axum-core", "http"]

[dependencies]
maud_macros = { version = "0.23.0", path = "../maud_macros" }
maud_macros = { version = "0.24.0", path = "../maud_macros" }
itoa = { version = "0.4.8", default-features = false, features = ["i128"] }
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 @@ -7,7 +7,7 @@
//!
//! [book]: https://maud.lambda.xyz/

#![doc(html_root_url = "https://docs.rs/maud/0.23.0")]
#![doc(html_root_url = "https://docs.rs/maud/0.24.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.23.0"
version = "0.24.0"
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
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.23.0")]
#![doc(html_root_url = "https://docs.rs/maud_macros/0.24.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 8415003

Please sign in to comment.