axum-core: Version 0.2.3 (#966)

This commit is contained in:
David Pedersen 2022-04-26 16:19:47 +02:00 committed by GitHub
parent 23f20ea1f3
commit 0702c59c7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View file

@ -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])

View file

@ -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"

View file

@ -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"