Release 0.23.0 ()

This commit is contained in:
Chris Wong 2021-11-11 22:08:26 +11:00 committed by GitHub
parent 5f4a5bd54a
commit 982c9f4a03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 13 additions and 10 deletions

View file

@ -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.
@ -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

8
docs/Cargo.lock generated
View file

@ -297,9 +297,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]]
name = "libc"
version = "0.2.106"
version = "0.2.107"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a60553f9a9e039a333b4e9b20573b9e9b9c0bb3a11e201ccc48ef4283456d673"
checksum = "fbe5e23404da5b4f555ef85ebed98fb4083e55a00c317800bc2a50ede9f3d219"
[[package]]
name = "line-wrap"
@ -324,14 +324,14 @@ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
[[package]]
name = "maud"
version = "0.22.3"
version = "0.23.0"
dependencies = [
"maud_macros",
]
[[package]]
name = "maud_macros"
version = "0.22.3"
version = "0.23.0"
dependencies = [
"proc-macro-error",
"proc-macro2",

View file

@ -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 <lambda.fairy@gmail.com>"]
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/maud/"
@ -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 }

View file

@ -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;

View file

@ -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 <lambda.fairy@gmail.com>"]
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/maud_macros/"

View file

@ -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)]