diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md index bf0039781c..cf7d6d30ca 100644 --- a/axum-extra/CHANGELOG.md +++ b/axum-extra/CHANGELOG.md @@ -7,9 +7,15 @@ and this project adheres to [Semantic Versioning]. # Unreleased +- None. + +# 0.3.3 (18. May, 2022) + - **added:** Add `extract::Query` which supports multi-value items ([#1041]) +- **added:** Support customizing rejections for `#[derive(TypedPath)]` ([#1012]) [#1041]: https://github.com/tokio-rs/axum/pull/1041 +[#1012]: https://github.com/tokio-rs/axum/pull/1012 # 0.3.2 (15. May, 2022) diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index 36df3126f3..c1f0e88fc5 100644 --- a/axum-extra/Cargo.toml +++ b/axum-extra/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" name = "axum-extra" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.3.2" +version = "0.3.3" [features] default = [] @@ -33,7 +33,7 @@ tower-layer = "0.3" tower-service = "0.3" # optional dependencies -axum-macros = { path = "../axum-macros", version = "0.2.1", optional = true } +axum-macros = { path = "../axum-macros", version = "0.2.2", optional = true } serde = { version = "1.0", optional = true } serde_json = { version = "1.0.71", optional = true } percent-encoding = { version = "2.1", optional = true }