axum 0.8.0-rc.1 (#3073)

This commit is contained in:
Jonas Platte
2024-12-17 23:47:42 +01:00
committed by GitHub
parent c596deafe4
commit 5cdd8a4f18
7 changed files with 35 additions and 24 deletions
+4 -2
View File
@@ -7,14 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# Unreleased
# 0.5.0
## rc.1
- **breaking:**: `Option<T>` as an extractor now requires `T` to implement the
new trait `OptionalFromRequest` (if used as the last extractor) or
`OptionalFromRequestParts` (other extractors) ([#2475])
[#2475]: https://github.com/tokio-rs/axum/pull/2475
# 0.5.0
## alpha.1
- **breaking:** Replace `#[async_trait]` with [return-position `impl Trait` in traits][RPITIT] ([#2308])
+1 -1
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-alpha.1" # remember to bump the version that axum and axum-extra depend on
version = "0.5.0-rc.1" # remember to bump the version that axum and axum-extra depend on
[features]
tracing = ["dep:tracing"]