Skip to content

Commit 5d0a7b4

Browse files
committed
axum-extra: Version 0.2.0
1 parent f69d2db commit 5d0a7b4

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

axum-extra/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning].
77

88
# Unreleased
99

10+
- None.
11+
12+
# 0.2.0 (31. March, 2022)
13+
1014
- **added:** Add `TypedPath::to_uri` for converting the path into a `Uri` ([#790])
1115
- **added:** Extractors and responses for dealing with cookies. See `extract::cookies` for more
1216
details ([#816])

axum-extra/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
name = "axum-extra"
99
readme = "README.md"
1010
repository = "https://github.com/tokio-rs/axum"
11-
version = "0.1.5"
11+
version = "0.2.0"
1212

1313
[features]
1414
default = []
@@ -17,7 +17,7 @@ typed-routing = ["axum-macros", "serde", "percent-encoding"]
1717
cookie = ["cookie-lib"]
1818

1919
[dependencies]
20-
axum = { path = "../axum", version = "0.4" }
20+
axum = { path = "../axum", version = "0.5" }
2121
bytes = "1.1.0"
2222
http = "0.2"
2323
mime = "0.3"
@@ -28,14 +28,14 @@ tower-layer = "0.3"
2828
tower-service = "0.3"
2929

3030
# optional dependencies
31-
axum-macros = { path = "../axum-macros", version = "0.1", optional = true }
31+
axum-macros = { path = "../axum-macros", version = "0.2", optional = true }
3232
serde = { version = "1.0", optional = true }
3333
serde_json = { version = "1.0.71", optional = true }
3434
percent-encoding = { version = "2.1", optional = true }
3535
cookie-lib = { package = "cookie", version = "0.16", features = ["percent-encode", "signed"], optional = true }
3636

3737
[dev-dependencies]
38-
axum = { path = "../axum", version = "0.4", features = ["headers"] }
38+
axum = { path = "../axum", version = "0.5", features = ["headers"] }
3939
hyper = "0.14"
4040
serde = { version = "1.0", features = ["derive"] }
4141
tokio = { version = "1.14", features = ["full"] }

axum-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ syn = { version = "1.0", features = ["full"] }
2121

2222
[dev-dependencies]
2323
axum = { path = "../axum", version = "0.5", features = ["headers"] }
24-
axum-extra = { path = "../axum-extra", version = "0.1", features = ["typed-routing"] }
24+
axum-extra = { path = "../axum-extra", version = "0.2", features = ["typed-routing"] }
2525
rustversion = "1.0"
2626
serde = { version = "1.0", features = ["derive"] }
2727
tokio = { version = "1.0", features = ["full"] }

0 commit comments

Comments
 (0)