mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-23 07:39:25 +01:00
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
This commit is contained in:
parent
6372f93cc5
commit
b9dfea6360
2 changed files with 5 additions and 1 deletions
|
@ -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])
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "axum"
|
||||
version = "0.3.2"
|
||||
version = "0.3.3"
|
||||
authors = ["David Pedersen <david.pdrsn@gmail.com>"]
|
||||
categories = ["asynchronous", "network-programming", "web-programming"]
|
||||
description = "Web framework that focuses on ergonomics and modularity"
|
||||
|
|
Loading…
Reference in a new issue