summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2022-08-09 16:55:51 +0200
committerGitHub <noreply@github.com>2022-08-09 16:55:51 +0200
commit849abb1ad852dd79e473c7d56699c7fccc56550c (patch)
treea0af3c66d79256ad300c9c479c4a1221aa2c2f08
parent3215709fcdcd415f84b6d667f10d8dd7ae755090 (diff)
axum: Version 0.5.15 (#1235)axum-v0.5.15
-rw-r--r--axum-extra/Cargo.toml2
-rw-r--r--axum/CHANGELOG.md6
-rw-r--r--axum/Cargo.toml2
3 files changed, 7 insertions, 3 deletions
diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml
index fff44306..ffa89416 100644
--- a/axum-extra/Cargo.toml
+++ b/axum-extra/Cargo.toml
@@ -25,7 +25,7 @@ spa = ["tower-http/fs"]
typed-routing = ["axum-macros", "serde", "percent-encoding"]
[dependencies]
-axum = { path = "../axum", version = "0.5", default-features = false }
+axum = { path = "../axum", version = "0.5.15", default-features = false }
bytes = "1.1.0"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
http = "0.2"
diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md
index 50965e48..5af2df55 100644
--- a/axum/CHANGELOG.md
+++ b/axum/CHANGELOG.md
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- None.
-# 0.5.14 (25. July, 2022)
+# 0.5.15 (9. August, 2022)
- **fixed:** Don't expose internal type names in `QueryRejection` response. ([#1171])
- **fixed:** Improve performance of JSON serialization ([#1178])
@@ -19,6 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#1178]: https://github.com/tokio-rs/axum/pull/1178
[#1192]: https://github.com/tokio-rs/axum/pull/1192
+# 0.5.14 (25. July, 2022)
+
+Yanked, as it contained an accidental breaking change.
+
# 0.5.13 (15. July, 2022)
- **fixed:** If `WebSocketUpgrade` cannot upgrade the connection it will return a
diff --git a/axum/Cargo.toml b/axum/Cargo.toml
index e807b6b4..f7632d2b 100644
--- a/axum/Cargo.toml
+++ b/axum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "axum"
-version = "0.5.14"
+version = "0.5.15"
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
description = "Web framework that focuses on ergonomics and modularity"
edition = "2021"