From b9dfea636071c2c194c8251612beba9d0515e9fe Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Sat, 13 Nov 2021 20:41:47 +0100 Subject: [PATCH] Version 0.3.3 (#510) - Implement `FromRequest` for [`http::request::Parts`] so it can be used an extractor ([#489]) - Implement `IntoResponse` for `http::response::Parts` ([#490]) [#489]: https://github.com/tokio-rs/axum/pull/489 [#490]: https://github.com/tokio-rs/axum/pull/490 [`http::request::Parts`]: https://docs.rs/http/latest/http/request/struct.Parts.html --- axum/CHANGELOG.md | 4 ++++ axum/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index f3ea2008..546553a9 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- None. + +# 0.3.3 (13. November, 2021) + - Implement `FromRequest` for [`http::request::Parts`] so it can be used an extractor ([#489]) - Implement `IntoResponse` for `http::response::Parts` ([#490]) diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 9a43c631..8904f85b 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum" -version = "0.3.2" +version = "0.3.3" authors = ["David Pedersen "] categories = ["asynchronous", "network-programming", "web-programming"] description = "Web framework that focuses on ergonomics and modularity"