diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index 8e9bdac1..5e72b2c5 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -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) diff --git a/axum/Cargo.toml b/axum/Cargo.toml index bbd7d63c..ac07f230 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -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"