From 061e66c236ed1278c0dc4e67edffa8b36a8bb646 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Tue, 19 Apr 2022 17:00:51 +0200 Subject: [PATCH] axum: Version 0.5.3 (#947) * axum: Version 0.5.3 * Update axum/CHANGELOG.md Co-authored-by: Jonas Platte Co-authored-by: Jonas Platte --- axum/CHANGELOG.md | 6 +++++- axum/Cargo.toml | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index d498dfd4..8e3efd53 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - None. -# 0.5.2 (19. April, 2022) +# 0.5.3 (19. April, 2022) - **added:** Add `AppendHeaders` for appending headers to a response rather than overriding them ([#927]) - **added:** Add `axum::extract::multipart::Field::chunk` method for streaming a single chunk from @@ -20,6 +20,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#927]: https://github.com/tokio-rs/axum/pull/927 [#936]: https://github.com/tokio-rs/axum/pull/936 +# 0.5.2 (19. April, 2022) + +Yanked, as it contained an accidental breaking change. + # 0.5.1 (03. April, 2022) - **added:** Add `RequestParts::extract` which allows applying an extractor as a method call ([#897]) diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 87f62623..96a8d615 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum" -version = "0.5.2" +version = "0.5.3" 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.1" } +axum-core = { path = "../axum-core", version = "0.2.2" } async-trait = "0.1.43" bitflags = "1.0" bytes = "1.0"