From 3a259dcec7e3ccbabe49c3bd07da04cb02029e8f Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Thu, 9 Dec 2021 10:52:31 +0100 Subject: [PATCH] axum-debug: Version 0.3.2 (#598) - Support checking `FromRequest` bounds for extractors whose request body is something else than `axum::body::Body`. Use `#[debug_handler(body = YourBodyType)]` to use a different request body type ([#595]) [#595]: https://github.com/tokio-rs/axum/pull/595 --- axum-debug/CHANGELOG.md | 8 +++++++- axum-debug/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/axum-debug/CHANGELOG.md b/axum-debug/CHANGELOG.md index cd577601..3b70cfff 100644 --- a/axum-debug/CHANGELOG.md +++ b/axum-debug/CHANGELOG.md @@ -7,9 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- None. + +# 0.3.2 (09. December 2021) + - Support checking `FromRequest` bounds for extractors whose request body is something else than `axum::body::Body`. Use `#[debug_handler(body = YourBodyType)]` to use a different request body - type. + type ([#595]) + +[#595]: https://github.com/tokio-rs/axum/pull/595 # 0.3.1 (06. December 2021) diff --git a/axum-debug/Cargo.toml b/axum-debug/Cargo.toml index efcf4698..baa2f1a9 100644 --- a/axum-debug/Cargo.toml +++ b/axum-debug/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" name = "axum-debug" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.3.1" +version = "0.3.2" [lib] proc-macro = true