diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md index 0f16d6049e..8530a96721 100644 --- a/axum-extra/CHANGELOG.md +++ b/axum-extra/CHANGELOG.md @@ -7,7 +7,11 @@ and this project adheres to [Semantic Versioning]. # Unreleased -- **fixed:** Remove explicit auto deref from PrivateCookieJar example ([#2028]) +- None. + +# 0.7.5 (17. July, 2023) + +- **fixed:** Remove explicit auto deref from `PrivateCookieJar` example ([#2028]) [#2028]: https://github.com/tokio-rs/axum/pull/2028 diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index 6ccbc46e20..8b38208419 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.7.4" +version = "0.7.5" [features] default = [] @@ -50,7 +50,7 @@ tower-layer = "0.3" tower-service = "0.3" # optional dependencies -axum-macros = { path = "../axum-macros", version = "0.3.7", optional = true } +axum-macros = { path = "../axum-macros", version = "0.3.8", 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 } @@ -63,7 +63,7 @@ tokio-util = { version = "0.7", optional = true } [dev-dependencies] axum = { path = "../axum", version = "0.6.0", features = ["headers"] } -axum-macros = { path = "../axum-macros", version = "0.3.7", features = ["__private"] } +axum-macros = { path = "../axum-macros", version = "0.3.8", features = ["__private"] } http-body = "0.4.4" hyper = "0.14" reqwest = { version = "0.11", default-features = false, features = ["json", "stream", "multipart"] } diff --git a/axum-macros/CHANGELOG.md b/axum-macros/CHANGELOG.md index dab761c2ff..b16b618970 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.8 (17. July, 2023) + - **fixed:** Allow unreachable code in `#[debug_handler]` ([#2014]) [#2014]: https://github.com/tokio-rs/axum/pull/2014 diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml index 5599610b97..4520209b29 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.7" # remember to also bump the version that axum and axum-extra depends on +version = "0.3.8" # remember to also bump the version that axum and axum-extra depends on [features] default = [] diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index 815633a766..60067f5e6b 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- None. + +# 0.6.19 (17. July, 2023) + - **added:** Add `axum::extract::Query::try_from_uri` ([#2058]) - **added:** Implement `IntoResponse` for `Box` and `Box<[u8]>` ([#2035]) - **fixed:** Fix bugs around merging routers with nested fallbacks ([#2096]) diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 0979f1278c..0bb5d97a34 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum" -version = "0.6.18" +version = "0.6.19" categories = ["asynchronous", "network-programming", "web-programming::http-server"] description = "Web framework that focuses on ergonomics and modularity" edition = "2021" @@ -52,7 +52,7 @@ tower-layer = "0.3.2" tower-service = "0.3" # optional dependencies -axum-macros = { path = "../axum-macros", version = "0.3.7", optional = true } +axum-macros = { path = "../axum-macros", version = "0.3.8", optional = true } base64 = { version = "0.21.0", optional = true } headers = { version = "0.3.7", optional = true } multer = { version = "2.0.0", optional = true } @@ -104,7 +104,7 @@ rustversion = "1.0.9" [dev-dependencies] anyhow = "1.0" -axum-macros = { path = "../axum-macros", version = "0.3.7", features = ["__private"] } +axum-macros = { path = "../axum-macros", version = "0.3.8", features = ["__private"] } quickcheck = "1.0" quickcheck_macros = "1.0" reqwest = { version = "0.11.14", default-features = false, features = ["json", "stream", "multipart"] }