diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index d498dfd484..8e3efd539a 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 87f62623a8..96a8d6153e 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"