diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md index 7abc92c6..4486538e 100644 --- a/axum-core/CHANGELOG.md +++ b/axum-core/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- None. + +# 0.3.3 (03. March, 2023) + - **fixed:** Add `#[must_use]` attributes to types that do nothing unless used ([#1809]) [#1809]: https://github.com/tokio-rs/axum/pull/1809 diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml index 0d892876..6ead90a7 100644 --- a/axum-core/Cargo.toml +++ b/axum-core/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "axum-core" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.3.2" # remember to also bump the version that axum depends on +version = "0.3.3" # remember to also bump the version that axum depends on [dependencies] async-trait = "0.1" diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md index ae628972..d69892e2 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.7.0 (03. March, 2023) + - **breaking:** Remove the `spa` feature which should have been removed in 0.6.0 ([#1802]) - **added:** Add `Multipart`. This is similar to `axum::extract::Multipart` except that it enforces field exclusivity at runtime instead of compile time, diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index c9b9f29a..db12300c 100644 --- a/axum-extra/Cargo.toml +++ b/axum-extra/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "axum-extra" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.6.0" +version = "0.7.0" [features] default = [] @@ -48,7 +48,7 @@ tower-layer = "0.3" tower-service = "0.3" # optional dependencies -axum-macros = { path = "../axum-macros", version = "0.3.4", optional = true } +axum-macros = { path = "../axum-macros", version = "0.3.5", optional = true } cookie = { package = "cookie", version = "0.17", features = ["percent-encode"], optional = true } form_urlencoded = { version = "1.1.0", optional = true } multer = { version = "2.0.0", optional = true } diff --git a/axum-macros/CHANGELOG.md b/axum-macros/CHANGELOG.md index f9b7799b..5429822f 100644 --- a/axum-macros/CHANGELOG.md +++ b/axum-macros/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- None. + +# 0.3.5 (03. March, 2023) + - **fixed:** In `#[debug_handler]` provide specific errors about `FromRequest` extractors not being the last argument ([#1797]) diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml index 94707655..bce1830e 100644 --- a/axum-macros/Cargo.toml +++ b/axum-macros/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "axum-macros" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.3.4" # remember to also bump the version that axum and axum-extra depends on +version = "0.3.5" # 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.6.0", features = ["typed-routing", "cookie-private"] } +axum-extra = { path = "../axum-extra", version = "0.7.0", features = ["typed-routing", "cookie-private"] } rustversion = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index d6f6f5f1..cd6d321c 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -7,12 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- None. + +# 0.6.10 (03. March, 2023) + - **fixed:** Add `#[must_use]` attributes to types that do nothing unless used ([#1809]) -- **fixed:** Add `#[must_use]` to `WebSocketUpgrade::on_upgrade` ([#1801]) - **fixed:** Gracefully handle missing headers in the `TypedHeader` extractor ([#1810]) - **fixed:** Fix routing issues when loading a `Router` via a dynamic library ([#1806]) -[#1801]: https://github.com/tokio-rs/axum/pull/1801 [#1806]: https://github.com/tokio-rs/axum/pull/1806 [#1809]: https://github.com/tokio-rs/axum/pull/1809 [#1810]: https://github.com/tokio-rs/axum/pull/1810 diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 9ae7230f..fe34cc71 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum" -version = "0.6.9" +version = "0.6.10" categories = ["asynchronous", "network-programming", "web-programming::http-server"] description = "Web framework that focuses on ergonomics and modularity" edition = "2021" @@ -62,7 +62,7 @@ __private_docs = [ [dependencies] async-trait = "0.1.43" -axum-core = { path = "../axum-core", version = "0.3.2" } +axum-core = { path = "../axum-core", version = "0.3.3" } bitflags = "1.0" bytes = "1.0" futures-util = { version = "0.3", default-features = false, features = ["alloc"] } @@ -83,7 +83,7 @@ tower-layer = "0.3.2" tower-service = "0.3" # optional dependencies -axum-macros = { path = "../axum-macros", version = "0.3.4", optional = true } +axum-macros = { path = "../axum-macros", version = "0.3.5", optional = true } base64 = { version = "0.21.0", optional = true } headers = { version = "0.3.7", optional = true } multer = { version = "2.0.0", optional = true }