summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2022-04-27 10:27:41 +0200
committerGitHub <noreply@github.com>2022-04-27 10:27:41 +0200
commita3b6cbc99c71e0184c2fb175bbe05120a180237b (patch)
tree8e777308a442a58a597769590303831ee7aa33b3
parent700617963f2c7f00ccc07a2086b6516a12284ea7 (diff)
axum-extra: Version 0.3.0 (#974)axum-extra-v0.3.0
* axum-extra: Version 0.3.0 * add tower-http update to changelog
-rw-r--r--axum-extra/CHANGELOG.md9
-rw-r--r--axum-extra/Cargo.toml2
-rw-r--r--axum-macros/Cargo.toml2
3 files changed, 11 insertions, 2 deletions
diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md
index 5f6f1e3e..bd45dfd8 100644
--- a/axum-extra/CHANGELOG.md
+++ b/axum-extra/CHANGELOG.md
@@ -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)
diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml
index 878e2aea..730809ac 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.2.1"
+version = "0.3.0"
[features]
default = []
diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml
index f0313209..20f9e955 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.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"] }