summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2022-05-02 11:52:24 +0200
committerGitHub <noreply@github.com>2022-05-02 11:52:24 +0200
commit5be73c106437789f95e8dc85c13abf8ea1e3d873 (patch)
treea5da05c57125a66acb51b133d838abeee119fc5b
parent8dd607057473ab3b43dd5077f0e703dcf4ab5824 (diff)
axum-core: Version 0.2.4 (#984)axum-core-v0.2.4
-rw-r--r--axum-core/CHANGELOG.md4
-rw-r--r--axum-core/Cargo.toml2
-rw-r--r--axum/Cargo.toml2
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"