axum: Version 0.5.1

This commit is contained in:
David Pedersen 2022-04-03 20:23:18 +02:00
parent bcda1a97db
commit 3e716f303f
2 changed files with 9 additions and 3 deletions

View file

@ -7,7 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# Unreleased
- **added:** Add `RequestParts::extract` which allows applying an extractor as a method call
- None.
# 0.5.1 (03. April, 2022)
- **added:** Add `RequestParts::extract` which allows applying an extractor as a method call ([#897)
[#897]: https://github.com/tokio-rs/axum/pull/897
# 0.5.0 (31. March, 2022)

View file

@ -1,6 +1,6 @@
[package]
name = "axum"
version = "0.5.0"
version = "0.5.1"
categories = ["asynchronous", "network-programming", "web-programming"]
description = "Web framework that focuses on ergonomics and modularity"
edition = "2018"
@ -24,7 +24,7 @@ tower-log = ["tower/log"]
ws = ["tokio-tungstenite", "sha-1", "base64"]
[dependencies]
axum-core = { path = "../axum-core", version = "0.2.0" }
axum-core = { path = "../axum-core", version = "0.2.1" }
async-trait = "0.1.43"
bitflags = "1.0"
bytes = "1.0"