From 5966849f1465be80b10b0c22c475d3dcbaec0315 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Tue, 21 Jan 2025 08:12:53 -0500 Subject: [PATCH] Release axum 0.8.2 and related crates (#3188) --- Cargo.lock | 6 +++--- axum-core/CHANGELOG.md | 2 +- axum-core/Cargo.toml | 2 +- axum-extra/CHANGELOG.md | 2 +- axum-extra/Cargo.toml | 6 +++--- axum/CHANGELOG.md | 2 +- axum/Cargo.toml | 4 ++-- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9116723f..d73ba180 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -302,7 +302,7 @@ dependencies = [ [[package]] name = "axum" -version = "0.8.1" +version = "0.8.2" dependencies = [ "anyhow", "axum-core", @@ -349,7 +349,7 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.5.0" +version = "0.5.1" dependencies = [ "axum", "axum-extra", @@ -373,7 +373,7 @@ dependencies = [ [[package]] name = "axum-extra" -version = "0.10.0" +version = "0.11.0" dependencies = [ "axum", "axum-core", diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md index 3c53d1dc..eac0e47a 100644 --- a/axum-core/CHANGELOG.md +++ b/axum-core/CHANGELOG.md @@ -5,7 +5,7 @@ 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). -# Unreleased +# 0.5.1 - **change:** Make the `status` function for rejections generated by the `__define_rejection` and `__composite_rejection` macros a `const` function diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml index b07beb24..cc7b47d7 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.0" # remember to bump the version that axum and axum-extra depend on +version = "0.5.1" # remember to bump the version that axum and axum-extra depend on [features] tracing = ["dep:tracing"] diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md index ba04d6dd..725d2cb0 100644 --- a/axum-extra/CHANGELOG.md +++ b/axum-extra/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning]. -# Unreleased +# 0.11.0 - **breaking:** Remove unused `async-stream` feature, which was accidentally introduced as an implicit feature through an optional dependency which was no diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index 8ecf0e51..266be0fa 100644 --- a/axum-extra/Cargo.toml +++ b/axum-extra/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "axum-extra" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.10.0" +version = "0.11.0" [features] default = ["tracing"] @@ -48,8 +48,8 @@ __private_docs = [ ] [dependencies] -axum = { path = "../axum", version = "0.8.0", default-features = false, features = ["original-uri"] } -axum-core = { path = "../axum-core", version = "0.5.0" } +axum = { path = "../axum", version = "0.8.2", default-features = false, features = ["original-uri"] } +axum-core = { path = "../axum-core", version = "0.5.1" } bytes = "1.1.0" futures-util = { version = "0.3", default-features = false, features = ["alloc"] } http = "1.0.0" diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index 56aa49be..ab2527a2 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -5,7 +5,7 @@ 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). -# Unreleased +# 0.8.1 - **added:** Implement `OptionalFromRequest` for `Json` ([#3142]) - **added:** Implement `OptionalFromRequest` for `Extension` ([#3157]) diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 4b007211..6c55d415 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum" -version = "0.8.1" # remember to bump the version that axum-extra depends on +version = "0.8.2" # remember to bump the version that axum-extra depends on categories = ["asynchronous", "network-programming", "web-programming::http-server"] description = "Web framework that focuses on ergonomics and modularity" edition = "2021" @@ -50,7 +50,7 @@ __private_docs = [ __private = ["tokio", "http1", "dep:reqwest"] [dependencies] -axum-core = { path = "../axum-core", version = "0.5.0" } +axum-core = { path = "../axum-core", version = "0.5.1" } bytes = "1.0" futures-util = { version = "0.3", default-features = false, features = ["alloc"] } http = "1.0.0"