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"] }