summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2022-04-26 16:19:47 +0200
committerGitHub <noreply@github.com>2022-04-26 14:19:47 +0000
commit0702c59c7dfa88828278abb846648f55fede2baa (patch)
treee553651632186b961565eb0bb07097fb179c92ba
parent23f20ea1f3a8e6585d2965f3cfdc1e91768d24a8 (diff)
axum-core: Version 0.2.3 (#966)axum-core-v0.2.3
-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 e4173599..f1610ad1 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.3 (25. April, 2022)
+
- **added:** Add `response::ErrorResponse` and `response::Result` for
`IntoResponse`-based error handling ([#921])
diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml
index 32c1187f..647a0eaf 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.2"
+version = "0.2.3" # 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 8fe8bb01..ed46d2b4 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.2" }
+axum-core = { path = "../axum-core", version = "0.2.3" }
async-trait = "0.1.43"
bitflags = "1.0"
bytes = "1.0"