1
0
Fork 0
mirror of https://github.com/tokio-rs/axum.git synced 2025-04-26 13:56:22 +02:00

Release axum 0.8.2 and related crates ()

This commit is contained in:
Jonas Platte 2025-01-21 08:12:53 -05:00 committed by GitHub
parent 6df26a3be3
commit 5966849f14
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 12 additions and 12 deletions

6
Cargo.lock generated
View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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