summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2022-05-15 22:05:00 +0100
committerGitHub <noreply@github.com>2022-05-15 23:05:00 +0200
commit316e20fbd96d9255814445a3a02a53b5a71bb2c5 (patch)
tree05e6a9c6174183a2fc92360b816cc375c9ddad73
parent3e722379ac3fef82718589adccc0df91307890e9 (diff)
axum: Version 0.5.6 (#1033)axum-v0.5.6
-rw-r--r--axum/CHANGELOG.md8
-rw-r--r--axum/Cargo.toml2
2 files changed, 7 insertions, 3 deletions
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<SomeStruct>` ([#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"