From e710a97a5a8e1e2f629f78e0377d7ab17e597eaf Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 26 Dec 2025 14:55:07 +0100 Subject: [PATCH] Release axum-core v0.5.6 --- Cargo.lock | 2 +- axum-core/CHANGELOG.md | 4 ++++ axum-core/Cargo.toml | 2 +- axum-extra/Cargo.toml | 2 +- axum/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2e3912ce..123abb04 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -158,7 +158,7 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.5.5" +version = "0.5.6" dependencies = [ "axum", "axum-extra", diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md index d2b090ab..2dfeaa7d 100644 --- a/axum-core/CHANGELOG.md +++ b/axum-core/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +# 0.5.6 + +Improve error messages with `#[diagnostic::do_not_recommend]`. + # 0.5.5 Released without changes to fix docs.rs build. diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml index a1ce32ba..f3f31e3c 100644 --- a/axum-core/Cargo.toml +++ b/axum-core/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "axum-core" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.5.5" # remember to bump the version that axum and axum-extra depend on +version = "0.5.6" # remember to bump the version that axum and axum-extra depend on [package.metadata.cargo_check_external_types] allowed_external_types = [ diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index 9a3ef6cd..919bdefa 100644 --- a/axum-extra/Cargo.toml +++ b/axum-extra/Cargo.toml @@ -100,7 +100,7 @@ with-rejection = ["dep:axum"] __private_docs = ["axum/json", "axum/query", "dep:serde", "dep:tower"] [dependencies] -axum-core = { path = "../axum-core", version = "0.5.5" } +axum-core = { path = "../axum-core", version = "0.5.6" } bytes = "1.1.0" futures-core = "0.3" futures-util = { version = "0.3", default-features = false, features = ["alloc"] } diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 51ef5d0b..13c50357 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -92,7 +92,7 @@ __private_docs = [ __private = ["tokio", "http1", "dep:reqwest"] [dependencies] -axum-core = { path = "../axum-core", version = "0.5.5" } +axum-core = { path = "../axum-core", version = "0.5.6" } bytes = "1.7" futures-core = "0.3" futures-util = { version = "0.3", default-features = false, features = ["alloc"] }