File tree Expand file tree Collapse file tree 7 files changed +16
-4
lines changed Expand file tree Collapse file tree 7 files changed +16
-4
lines changed Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ license = "MIT"
88name = " axum-core"
99readme = " README.md"
1010repository = " https://github.com/tokio-rs/axum"
11- version = " 0.1.0 "
11+ version = " 0.1.1 "
1212
1313[dependencies ]
1414async-trait = " 0.1"
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ mod headers;
2525pub 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 .
2929pub type Response < T = BoxBody > = http:: Response < T > ;
3030
3131/// Trait for generating responses.
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ license = "MIT"
88name = " axum-debug"
99readme = " README.md"
1010repository = " https://github.com/tokio-rs/axum"
11- version = " 0.3.0 "
11+ version = " 0.3.1 "
1212
1313[lib ]
1414proc-macro = true
Original file line number Diff line number Diff 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)
Original file line number Diff line number Diff line change 11[package ]
22name = " axum"
3- version = " 0.4.0 "
3+ version = " 0.4.1 "
44categories = [" asynchronous" , " network-programming" , " web-programming" ]
55description = " Web framework that focuses on ergonomics and modularity"
66edition = " 2018"
You can’t perform that action at this time.
0 commit comments