Skip to content

Commit 8e1341d

Browse files
authored
Release axum, axum-core, and axum-debug (#591)
1 parent dfb06e7 commit 8e1341d

File tree

7 files changed

+16
-4
lines changed

7 files changed

+16
-4
lines changed

axum-core/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
- None.
1111

12+
# 0.1.1 (06. December, 2021)
13+
14+
- **added:** `axum_core::response::Response` now exists as a shorthand for writing `Response<BoxBody>`.
15+
1216
# 0.1.0 (02. December, 2021)
1317

1418
- Initial release.

axum-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
name = "axum-core"
99
readme = "README.md"
1010
repository = "https://github.com/tokio-rs/axum"
11-
version = "0.1.0"
11+
version = "0.1.1"
1212

1313
[dependencies]
1414
async-trait = "0.1"

axum-core/src/response/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ mod headers;
2525
pub use self::headers::Headers;
2626

2727
/// Type alias for [`http::Response`] whose body type defaults to [`BoxBody`], the most common body
28-
/// type used with Axum.
28+
/// type used with axum.
2929
pub type Response<T = BoxBody> = http::Response<T>;
3030

3131
/// Trait for generating responses.

axum-debug/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
# Unreleased
99

10+
- None.
11+
12+
# 0.3.1 (06. December 2021)
13+
1014
- Fix `Result<impl IntoResponse, Error>` generating invalid code ([#588])
1115

1216
[#588]: https://github.com/tokio-rs/axum/pull/588

axum-debug/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
name = "axum-debug"
99
readme = "README.md"
1010
repository = "https://github.com/tokio-rs/axum"
11-
version = "0.3.0"
11+
version = "0.3.1"
1212

1313
[lib]
1414
proc-macro = true

axum/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
# Unreleased
99

10+
- None.
11+
12+
# 0.4.1 (06. December, 2021)
13+
1014
- **added:** `axum::response::Response` now exists as a shorthand for writing `Response<BoxBody>`.
1115

1216
# 0.4.0 (02. December, 2021)

axum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "axum"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
categories = ["asynchronous", "network-programming", "web-programming"]
55
description = "Web framework that focuses on ergonomics and modularity"
66
edition = "2018"

0 commit comments

Comments
 (0)