mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 15:17:18 +01:00
axum-macros: Version 0.2.0
This commit is contained in:
parent
cf12b3aa0f
commit
f69d2dbf40
2 changed files with 6 additions and 2 deletions
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
# Unreleased
|
||||
|
||||
- None.
|
||||
|
||||
# 0.2.0 (31. March, 2022)
|
||||
|
||||
- **breaking:** Routes are now required to start with `/`. Previously empty routes or routes such
|
||||
as `:foo` would be accepted but most likely result in bugs ([#823])
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ license = "MIT"
|
|||
name = "axum-macros"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/tokio-rs/axum"
|
||||
version = "0.1.2"
|
||||
version = "0.2.0"
|
||||
|
||||
[lib]
|
||||
proc-macro = true
|
||||
|
@ -20,7 +20,7 @@ quote = "1.0"
|
|||
syn = { version = "1.0", features = ["full"] }
|
||||
|
||||
[dev-dependencies]
|
||||
axum = { path = "../axum", version = "0.4", features = ["headers"] }
|
||||
axum = { path = "../axum", version = "0.5", features = ["headers"] }
|
||||
axum-extra = { path = "../axum-extra", version = "0.1", features = ["typed-routing"] }
|
||||
rustversion = "1.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
|
|
Loading…
Reference in a new issue