From 0702c59c7dfa88828278abb846648f55fede2baa Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Tue, 26 Apr 2022 16:19:47 +0200 Subject: [PATCH] axum-core: Version 0.2.3 (#966) --- 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 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"