summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2023-12-04 09:16:15 +0100
committerGitHub <noreply@github.com>2023-12-04 09:16:15 +0100
commitab36eda6aaad629ca48e9ec64ca81f1dbcea24f7 (patch)
treee8634d41a2b64c6514de857c60f122da0c5dcb82
parentef5663674cd42f02f66c760fd4aa3c984f48cc13 (diff)
Release axum and axum-core (#2402)axum-v0.7.2axum-core-v0.4.1
-rw-r--r--axum-core/CHANGELOG.md6
-rw-r--r--axum-core/Cargo.toml4
-rw-r--r--axum-extra/Cargo.toml6
-rw-r--r--axum-macros/Cargo.toml2
-rw-r--r--axum/CHANGELOG.md4
-rw-r--r--axum/Cargo.toml4
6 files changed, 18 insertions, 8 deletions
diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md
index b3127ebc..33e99f8f 100644
--- a/axum-core/CHANGELOG.md
+++ b/axum-core/CHANGELOG.md
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- None.
+# 0.4.1 (03. December, 2023)
+
+- Fix from_stream doc link to `Stream` in docs ([#2391])
+
+[#2391]: https://github.com/tokio-rs/axum/pull/2391
+
# 0.4.0 (27. November, 2023)
- **added:** Implement `IntoResponse` for `(R,) where R: IntoResponse` ([#2143])
diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml
index e604fa05..8ed42530 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.4.0" # remember to also bump the version that axum and axum-extra depend on
+version = "0.4.1" # remember to also bump the version that axum and axum-extra depend on
[features]
tracing = ["dep:tracing"]
@@ -38,7 +38,7 @@ tracing = { version = "0.1.37", default-features = false, optional = true }
rustversion = "1.0.9"
[dev-dependencies]
-axum = { path = "../axum", version = "0.7.0" }
+axum = { path = "../axum", version = "0.7.2" }
axum-extra = { path = "../axum-extra", features = ["typed-header"] }
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
hyper = "1.0.0"
diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml
index dd241c81..d4bb1f41 100644
--- a/axum-extra/Cargo.toml
+++ b/axum-extra/Cargo.toml
@@ -36,8 +36,8 @@ typed-header = ["dep:headers"]
typed-routing = ["dep:axum-macros", "dep:percent-encoding", "dep:serde_html_form", "dep:form_urlencoded"]
[dependencies]
-axum = { path = "../axum", version = "0.7.0", default-features = false }
-axum-core = { path = "../axum-core", version = "0.4.0" }
+axum = { path = "../axum", version = "0.7.2", default-features = false }
+axum-core = { path = "../axum-core", version = "0.4.1" }
bytes = "1.1.0"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
http = "1.0.0"
@@ -65,7 +65,7 @@ tokio-stream = { version = "0.1.9", optional = true }
tokio-util = { version = "0.7", optional = true }
[dev-dependencies]
-axum = { path = "../axum", version = "0.7.0" }
+axum = { path = "../axum", version = "0.7.2" }
hyper = "1.0.0"
reqwest = { version = "0.11", default-features = false, features = ["json", "stream", "multipart"] }
serde = { version = "1.0", features = ["derive"] }
diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml
index 1b3ee008..72356ee6 100644
--- a/axum-macros/Cargo.toml
+++ b/axum-macros/Cargo.toml
@@ -30,7 +30,7 @@ syn = { version = "2.0", features = [
] }
[dev-dependencies]
-axum = { path = "../axum", version = "0.7.0", features = ["macros"] }
+axum = { path = "../axum", version = "0.7.2", features = ["macros"] }
axum-extra = { path = "../axum-extra", version = "0.9.0", features = ["typed-routing", "cookie-private", "typed-header"] }
rustversion = "1.0"
serde = { version = "1.0", features = ["derive"] }
diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md
index bf732176..679fdddd 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.7.2 (03. December, 2023)
+
- **added:** Add `axum::body::to_bytes` ([#2373])
- **fixed:** Gracefully handle accept errors in `serve` ([#2400])
diff --git a/axum/Cargo.toml b/axum/Cargo.toml
index de388ddd..f8e1aac9 100644
--- a/axum/Cargo.toml
+++ b/axum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "axum"
-version = "0.7.1"
+version = "0.7.2"
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.4.0" }
+axum-core = { path = "../axum-core", version = "0.4.1" }
bytes = "1.0"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
http = "1.0.0"