diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index 40d7b51c..110a379e 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -7,11 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- None. + +# 0.5.6 (15. May, 2022) + - **added:** Add `WebSocket::protocol` to return the selected WebSocket subprotocol, if there is one. ([#1022]) -- **fixed:** Improve error for `PathRejection::WrongNumberOfParameters` to hint at using +- **fixed:** Improve error message for `PathRejection::WrongNumberOfParameters` to hint at using `Path<(String, String)>` or `Path` ([#1023]) - **fixed:** `PathRejection::WrongNumberOfParameters` now uses `500 Internal Server Error` since - its a programmer error and not a client error ([#1023]) + it's a programmer error and not a client error ([#1023]) - **fixed:** Fix `InvalidFormContentType` mentioning the wrong content type [#1022]: https://github.com/tokio-rs/axum/pull/1022 diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 9d56bcba..e575543d 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum" -version = "0.5.5" +version = "0.5.6" categories = ["asynchronous", "network-programming", "web-programming"] description = "Web framework that focuses on ergonomics and modularity" edition = "2018"