Release axum, axum-extra, and axum-macros (#1750)

This commit is contained in:
David Pedersen
2023-02-12 12:40:42 +01:00
committed by GitHub
parent 67422bb1c2
commit c18ff9dd63
6 changed files with 23 additions and 8 deletions
+6
View File
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- None.
# 0.3.4 (12. February, 2022)
- **fixed:** Fix `#[derive(FromRef)]` with `Copy` fields generating clippy warnings ([#1749])
[#1749]: https://github.com/tokio-rs/axum/pull/1749
# 0.3.3 (11. February, 2022)
- **fixed:** Fix `#[debug_handler]` sometimes giving wrong borrow related suggestions ([#1710])
+2 -2
View File
@@ -9,7 +9,7 @@ license = "MIT"
name = "axum-macros"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
version = "0.3.3" # remember to also bump the version that axum and axum-extra depends on
version = "0.3.4" # remember to also bump the version that axum and axum-extra depends on
[features]
default = []
@@ -30,7 +30,7 @@ syn = { version = "1.0", features = [
[dev-dependencies]
axum = { path = "../axum", version = "0.6.0", features = ["headers", "macros"] }
axum-extra = { path = "../axum-extra", version = "0.4.0", features = ["typed-routing", "cookie-private"] }
axum-extra = { path = "../axum-extra", version = "0.5.0", features = ["typed-routing", "cookie-private"] }
rustversion = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"