Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.23.0 #318

Merged
merged 1 commit into from
Nov 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.23.0] - 2021-11-10

- Update to support axum 0.2
[#303](https://github.com/lambda-fairy/maud/pull/303)
- Add support for `Option<T>` attributes using the `attr=[value]` syntax.
Expand Down Expand Up @@ -266,7 +268,8 @@
- Update to latest syntax extension API


[Unreleased]: https://github.com/lambda-fairy/maud/compare/v0.22.3...HEAD
[Unreleased]: https://github.com/lambda-fairy/maud/compare/v0.23.0...HEAD
[0.23.0]: https://github.com/lambda-fairy/maud/compare/v0.23.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
[0.22.1]: https://github.com/lambda-fairy/maud/compare/v0.22.0...v0.22.1
Expand Down
8 changes: 4 additions & 4 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.22.3"
version = "0.23.0"
authors = ["Chris Wong <[email protected]>"]
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/maud/"
Expand All @@ -18,7 +18,7 @@ default = []
actix-web = ["actix-web-dep", "futures-util"]

[dependencies]
maud_macros = { version = "0.22.3", path = "../maud_macros" }
maud_macros = { version = "0.23.0", path = "../maud_macros" }
rocket = { version = ">= 0.3, < 0.5", optional = true }
futures-util = { version = "0.3.0", optional = true, default-features = false }
actix-web-dep = { package = "actix-web", version = ">= 2, < 4", 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.22.3")]
#![doc(html_root_url = "https://docs.rs/maud/0.23.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.22.3"
version = "0.23.0"
authors = ["Chris Wong <[email protected]>"]
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.22.3")]
#![doc(html_root_url = "https://docs.rs/maud_macros/0.23.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