mirror of https://github.com/tokio-rs/axum
axum-extra: Version 0.3.0 (#974)
* axum-extra: Version 0.3.0 * add tower-http update to changelog
This commit is contained in:
parent
700617963f
commit
a3b6cbc99c
|
@ -7,9 +7,18 @@ and this project adheres to [Semantic Versioning].
|
|||
|
||||
# Unreleased
|
||||
|
||||
- None.
|
||||
|
||||
# 0.3.0 (27. April, 2022)
|
||||
|
||||
- **fixed:** Don't depend on axum with default features enabled ([#913])
|
||||
- **breaking:** Private and signed cookies now requires enabling the
|
||||
`cookie-private` and `cookie-signed` features respectively ([#949])
|
||||
- **changed:** Update to tower-http 0.3 ([#965])
|
||||
|
||||
[#913]: https://github.com/tokio-rs/axum/pull/913
|
||||
[#949]: https://github.com/tokio-rs/axum/pull/949
|
||||
[#965]: https://github.com/tokio-rs/axum/pull/965
|
||||
|
||||
# 0.2.1 (03. April, 2022)
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ license = "MIT"
|
|||
name = "axum-extra"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/tokio-rs/axum"
|
||||
version = "0.2.1"
|
||||
version = "0.3.0"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
|
|
@ -21,7 +21,7 @@ syn = { version = "1.0", features = ["full"] }
|
|||
|
||||
[dev-dependencies]
|
||||
axum = { path = "../axum", version = "0.5", features = ["headers"] }
|
||||
axum-extra = { path = "../axum-extra", version = "0.2", features = ["typed-routing"] }
|
||||
axum-extra = { path = "../axum-extra", version = "0.3", features = ["typed-routing"] }
|
||||
rustversion = "1.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
tokio = { version = "1.0", features = ["full"] }
|
||||
|
|
Loading…
Reference in New Issue