mirror of
https://github.com/tokio-rs/axum.git
synced 2025-04-16 02:30:56 +02:00
axum-macros: Version 0.2.1 (#1015)
This commit is contained in:
parent
96aaac4865
commit
46e6d3493b
3 changed files with 6 additions and 2 deletions
|
@ -31,7 +31,7 @@ tower-layer = "0.3"
|
|||
tower-service = "0.3"
|
||||
|
||||
# optional dependencies
|
||||
axum-macros = { path = "../axum-macros", version = "0.2", optional = true }
|
||||
axum-macros = { path = "../axum-macros", version = "0.2.1", optional = true }
|
||||
serde = { version = "1.0", optional = true }
|
||||
serde_json = { version = "1.0.71", optional = true }
|
||||
percent-encoding = { version = "2.1", optional = true }
|
||||
|
|
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
# Unreleased
|
||||
|
||||
- None.
|
||||
|
||||
# 0.2.1 (10. May, 2022)
|
||||
|
||||
- **fixed:** `Option` and `Result` are now supported in typed path route handler parameters ([#1001])
|
||||
- **fixed:** Support wildcards in typed paths ([#1003])
|
||||
- **added:** Support `#[derive(FromRequest)]` on enums using `#[from_request(via(OtherExtractor))]` ([#1009])
|
||||
|
|
|
@ -8,7 +8,7 @@ license = "MIT"
|
|||
name = "axum-macros"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/tokio-rs/axum"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
|
||||
[lib]
|
||||
proc-macro = true
|
||||
|
|
Loading…
Add table
Reference in a new issue