axum-macros: Version 0.2.0

This commit is contained in:
David Pedersen 2022-03-31 20:43:34 +02:00
parent cf12b3aa0f
commit f69d2dbf40
2 changed files with 6 additions and 2 deletions

View file

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

View file

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