mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-30 00:00:32 +02:00
Release all the crates (#1812)
This commit is contained in:
+4
-2
@@ -7,12 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
# Unreleased
|
||||
|
||||
- None.
|
||||
|
||||
# 0.6.10 (03. March, 2023)
|
||||
|
||||
- **fixed:** Add `#[must_use]` attributes to types that do nothing unless used ([#1809])
|
||||
- **fixed:** Add `#[must_use]` to `WebSocketUpgrade::on_upgrade` ([#1801])
|
||||
- **fixed:** Gracefully handle missing headers in the `TypedHeader` extractor ([#1810])
|
||||
- **fixed:** Fix routing issues when loading a `Router` via a dynamic library ([#1806])
|
||||
|
||||
[#1801]: https://github.com/tokio-rs/axum/pull/1801
|
||||
[#1806]: https://github.com/tokio-rs/axum/pull/1806
|
||||
[#1809]: https://github.com/tokio-rs/axum/pull/1809
|
||||
[#1810]: https://github.com/tokio-rs/axum/pull/1810
|
||||
|
||||
+3
-3
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "axum"
|
||||
version = "0.6.9"
|
||||
version = "0.6.10"
|
||||
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
|
||||
description = "Web framework that focuses on ergonomics and modularity"
|
||||
edition = "2021"
|
||||
@@ -62,7 +62,7 @@ __private_docs = [
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.43"
|
||||
axum-core = { path = "../axum-core", version = "0.3.2" }
|
||||
axum-core = { path = "../axum-core", version = "0.3.3" }
|
||||
bitflags = "1.0"
|
||||
bytes = "1.0"
|
||||
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
||||
@@ -83,7 +83,7 @@ tower-layer = "0.3.2"
|
||||
tower-service = "0.3"
|
||||
|
||||
# optional dependencies
|
||||
axum-macros = { path = "../axum-macros", version = "0.3.4", optional = true }
|
||||
axum-macros = { path = "../axum-macros", version = "0.3.5", optional = true }
|
||||
base64 = { version = "0.21.0", optional = true }
|
||||
headers = { version = "0.3.7", optional = true }
|
||||
multer = { version = "2.0.0", optional = true }
|
||||
|
||||
Reference in New Issue
Block a user