diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index 730809ac..49e88c38 100644 --- a/axum-extra/Cargo.toml +++ b/axum-extra/Cargo.toml @@ -31,7 +31,7 @@ tower-layer = "0.3" tower-service = "0.3" # optional dependencies -axum-macros = { path = "../axum-macros", version = "0.2", optional = true } +axum-macros = { path = "../axum-macros", version = "0.2.1", optional = true } serde = { version = "1.0", optional = true } serde_json = { version = "1.0.71", optional = true } percent-encoding = { version = "2.1", optional = true } diff --git a/axum-macros/CHANGELOG.md b/axum-macros/CHANGELOG.md index a983d92b..0af5e8f4 100644 --- a/axum-macros/CHANGELOG.md +++ b/axum-macros/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- None. + +# 0.2.1 (10. May, 2022) + - **fixed:** `Option` and `Result` are now supported in typed path route handler parameters ([#1001]) - **fixed:** Support wildcards in typed paths ([#1003]) - **added:** Support `#[derive(FromRequest)]` on enums using `#[from_request(via(OtherExtractor))]` ([#1009]) diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml index 20f9e955..73740472 100644 --- a/axum-macros/Cargo.toml +++ b/axum-macros/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" name = "axum-macros" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.2.0" +version = "0.2.1" [lib] proc-macro = true