diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md index 4486538e..f17c2250 100644 --- a/axum-core/CHANGELOG.md +++ b/axum-core/CHANGELOG.md @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - None. +# 0.3.4 (11. April, 2023) + +- Changes to private APIs. + # 0.3.3 (03. March, 2023) - **fixed:** Add `#[must_use]` attributes to types that do nothing unless used ([#1809]) diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml index ef263564..4373dadc 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.3" # remember to also bump the version that axum and axum-extra depend on +version = "0.3.4" # remember to also bump the version that axum and axum-extra depend on [features] tracing = ["dep:tracing"] diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md index ae20a0e8..aaf8bc5b 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.3 (11. April, 2023) + - **added:** Implement `Deref` and `DerefMut` for built-in extractors ([#1922]) - **added:** Add `OptionalPath` extractor ([#1889]) diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index 4f7515a0..847215f9 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.2" +version = "0.7.3" [features] default = [] @@ -34,8 +34,8 @@ query = ["dep:serde_html_form"] typed-routing = ["dep:axum-macros", "dep:percent-encoding", "dep:serde_html_form", "dep:form_urlencoded"] [dependencies] -axum = { path = "../axum", version = "0.6.9", default-features = false } -axum-core = { path = "../axum-core", version = "0.3.3" } +axum = { path = "../axum", version = "0.6.13", default-features = false } +axum-core = { path = "../axum-core", version = "0.3.4" } bytes = "1.1.0" futures-util = { version = "0.3", default-features = false, features = ["alloc"] } http = "0.2" diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index 2da21583..b7557698 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.13 (11. April, 2023) + - **added:** Log rejections from built-in extractors with the `axum::rejection=trace` target ([#1890]) - **fixed:** Fixed performance regression with `Router::nest` introduced in diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 4f3bf4fd..cb4dcf34 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum" -version = "0.6.12" +version = "0.6.13" categories = ["asynchronous", "network-programming", "web-programming::http-server"] description = "Web framework that focuses on ergonomics and modularity" edition = "2021" @@ -32,7 +32,7 @@ __private_docs = ["tower/full", "dep:tower-http"] [dependencies] async-trait = "0.1.67" -axum-core = { path = "../axum-core", version = "0.3.3" } +axum-core = { path = "../axum-core", version = "0.3.4" } bitflags = "1.0" bytes = "1.0" futures-util = { version = "0.3", default-features = false, features = ["alloc"] }