summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--axum-core/CHANGELOG.md4
-rw-r--r--axum-core/Cargo.toml2
-rw-r--r--axum-core/src/response/mod.rs2
-rw-r--r--axum-debug/CHANGELOG.md4
-rw-r--r--axum-debug/Cargo.toml2
-rw-r--r--axum/CHANGELOG.md4
-rw-r--r--axum/Cargo.toml2
7 files changed, 16 insertions, 4 deletions
diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md
index b81268f9..22638f41 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.1.1 (06. December, 2021)
+
+- **added:** `axum_core::response::Response` now exists as a shorthand for writing `Response<BoxBody>`.
+
# 0.1.0 (02. December, 2021)
- Initial release.
diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml
index 1a3cad74..f99ce4d3 100644
--- a/axum-core/Cargo.toml
+++ b/axum-core/Cargo.toml
@@ -8,7 +8,7 @@ license = "MIT"
name = "axum-core"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
-version = "0.1.0"
+version = "0.1.1"
[dependencies]
async-trait = "0.1"
diff --git a/axum-core/src/response/mod.rs b/axum-core/src/response/mod.rs
index 9f782e31..69c14870 100644
--- a/axum-core/src/response/mod.rs
+++ b/axum-core/src/response/mod.rs
@@ -25,7 +25,7 @@ mod headers;
pub use self::headers::Headers;
/// Type alias for [`http::Response`] whose body type defaults to [`BoxBody`], the most common body
-/// type used with Axum.
+/// type used with axum.
pub type Response<T = BoxBody> = http::Response<T>;
/// Trait for generating responses.
diff --git a/axum-debug/CHANGELOG.md b/axum-debug/CHANGELOG.md
index 492d62ff..90f4089e 100644
--- a/axum-debug/CHANGELOG.md
+++ b/axum-debug/CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# Unreleased
+- None.
+
+# 0.3.1 (06. December 2021)
+
- Fix `Result<impl IntoResponse, Error>` generating invalid code ([#588])
[#588]: https://github.com/tokio-rs/axum/pull/588
diff --git a/axum-debug/Cargo.toml b/axum-debug/Cargo.toml
index 5ea819ca..efcf4698 100644
--- a/axum-debug/Cargo.toml
+++ b/axum-debug/Cargo.toml
@@ -8,7 +8,7 @@ license = "MIT"
name = "axum-debug"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
-version = "0.3.0"
+version = "0.3.1"
[lib]
proc-macro = true
diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md
index 9d45e1a4..6ce1e8b8 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.4.1 (06. December, 2021)
+
- **added:** `axum::response::Response` now exists as a shorthand for writing `Response<BoxBody>`.
# 0.4.0 (02. December, 2021)
diff --git a/axum/Cargo.toml b/axum/Cargo.toml
index a3664fa9..73b4930b 100644
--- a/axum/Cargo.toml
+++ b/axum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "axum"
-version = "0.4.0"
+version = "0.4.1"
categories = ["asynchronous", "network-programming", "web-programming"]
description = "Web framework that focuses on ergonomics and modularity"
edition = "2018"