summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2022-03-31 20:48:17 +0200
committerDavid Pedersen <david.pdrsn@gmail.com>2022-03-31 20:48:17 +0200
commit5d0a7b440c15c2eda5b1e90b512c29167c440c32 (patch)
tree5eeadaa2e117be8b04b72d553d72ae30462ba990
parentf69d2dbf40c17b867f3d89a3182dd52501bf53c8 (diff)
axum-extra: Version 0.2.0axum-extra-v0.2.0
-rw-r--r--axum-extra/CHANGELOG.md4
-rw-r--r--axum-extra/Cargo.toml8
-rw-r--r--axum-macros/Cargo.toml2
3 files changed, 9 insertions, 5 deletions
diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md
index 6f8c05e9..7b606834 100644
--- a/axum-extra/CHANGELOG.md
+++ b/axum-extra/CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning].
# Unreleased
+- None.
+
+# 0.2.0 (31. March, 2022)
+
- **added:** Add `TypedPath::to_uri` for converting the path into a `Uri` ([#790])
- **added:** Extractors and responses for dealing with cookies. See `extract::cookies` for more
details ([#816])
diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml
index 31f7c215..42411895 100644
--- a/axum-extra/Cargo.toml
+++ b/axum-extra/Cargo.toml
@@ -8,7 +8,7 @@ license = "MIT"
name = "axum-extra"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
-version = "0.1.5"
+version = "0.2.0"
[features]
default = []
@@ -17,7 +17,7 @@ typed-routing = ["axum-macros", "serde", "percent-encoding"]
cookie = ["cookie-lib"]
[dependencies]
-axum = { path = "../axum", version = "0.4" }
+axum = { path = "../axum", version = "0.5" }
bytes = "1.1.0"
http = "0.2"
mime = "0.3"
@@ -28,14 +28,14 @@ tower-layer = "0.3"
tower-service = "0.3"
# optional dependencies
-axum-macros = { path = "../axum-macros", version = "0.1", optional = true }
+axum-macros = { path = "../axum-macros", version = "0.2", optional = true }
serde = { version = "1.0", optional = true }
serde_json = { version = "1.0.71", optional = true }
percent-encoding = { version = "2.1", optional = true }
cookie-lib = { package = "cookie", version = "0.16", features = ["percent-encode", "signed"], optional = true }
[dev-dependencies]
-axum = { path = "../axum", version = "0.4", features = ["headers"] }
+axum = { path = "../axum", version = "0.5", features = ["headers"] }
hyper = "0.14"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.14", features = ["full"] }
diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml
index d54a44f6..f0313209 100644
--- a/axum-macros/Cargo.toml
+++ b/axum-macros/Cargo.toml
@@ -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.1", features = ["typed-routing"] }
+axum-extra = { path = "../axum-extra", version = "0.2", features = ["typed-routing"] }
rustversion = "1.0"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.0", features = ["full"] }