summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2022-04-03 20:23:18 +0200
committerDavid Pedersen <david.pdrsn@gmail.com>2022-04-03 20:23:18 +0200
commit3e716f303f4cec09a0c588142ddfeba94434a39b (patch)
tree79ac0a1f7da9c4535378e7aa9e1ee530ee7af840
parentbcda1a97dbfe616c168ea64addc8477865946a34 (diff)
axum: Version 0.5.1axum-v0.5.1
-rw-r--r--axum/CHANGELOG.md8
-rw-r--r--axum/Cargo.toml4
2 files changed, 9 insertions, 3 deletions
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"