From 5be73c106437789f95e8dc85c13abf8ea1e3d873 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Mon, 2 May 2022 11:52:24 +0200 Subject: [PATCH] axum-core: Version 0.2.4 (#984) --- axum-core/CHANGELOG.md | 4 ++++ axum-core/Cargo.toml | 2 +- axum/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md index c4bd4adf..d6d0ea07 100644 --- a/axum-core/CHANGELOG.md +++ b/axum-core/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- None. + +# 0.2.4 (02. May, 2022) + - **added:** Implement `IntoResponse` and `IntoResponseParts` for `http::Extensions` ([#975]) - **added:** Implement `IntoResponse` for `(http::response::Parts, impl IntoResponse)` ([#950]) - **added:** Implement `IntoResponse` for `(http::response::Response<()>, impl IntoResponse)` ([#950]) diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml index 141d3f53..9ce2a642 100644 --- a/axum-core/Cargo.toml +++ b/axum-core/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" name = "axum-core" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.2.3" # remember to also bump the version that axum depends on +version = "0.2.4" # remember to also bump the version that axum depends on [dependencies] async-trait = "0.1" diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 0cfbe869..10dee5d6 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -24,7 +24,7 @@ tower-log = ["tower/log"] ws = ["tokio-tungstenite", "sha-1", "base64"] [dependencies] -axum-core = { path = "../axum-core", version = "0.2.3" } +axum-core = { path = "../axum-core", version = "0.2.4" } async-trait = "0.1.43" bitflags = "1.0" bytes = "1.0"