mirror of
https://github.com/tokio-rs/axum.git
synced 2025-10-02 07:20:38 +00:00
Release (#2461)
This commit is contained in:
parent
b494d455cc
commit
fe89ab5592
@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
- None.
|
- None.
|
||||||
|
|
||||||
|
# 0.4.2 (29. December, 2023)
|
||||||
|
|
||||||
|
- **added:** `Body` implements `From<()>` now ([#2411])
|
||||||
|
|
||||||
|
[#2411]: https://github.com/tokio-rs/axum/pull/2411
|
||||||
|
|
||||||
# 0.4.1 (03. December, 2023)
|
# 0.4.1 (03. December, 2023)
|
||||||
|
|
||||||
- Fix from_stream doc link to `Stream` in docs ([#2391])
|
- Fix from_stream doc link to `Stream` in docs ([#2391])
|
||||||
|
@ -9,7 +9,7 @@ license = "MIT"
|
|||||||
name = "axum-core"
|
name = "axum-core"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/tokio-rs/axum"
|
repository = "https://github.com/tokio-rs/axum"
|
||||||
version = "0.4.1" # remember to also bump the version that axum and axum-extra depend on
|
version = "0.4.2" # remember to also bump the version that axum and axum-extra depend on
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
tracing = ["dep:tracing"]
|
tracing = ["dep:tracing"]
|
||||||
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning].
|
|||||||
|
|
||||||
# Unreleased
|
# Unreleased
|
||||||
|
|
||||||
|
- None.
|
||||||
|
|
||||||
|
# 0.9.1 (29. December, 2023)
|
||||||
|
|
||||||
- **change:** Update version of multer used internally for multipart ([#2433])
|
- **change:** Update version of multer used internally for multipart ([#2433])
|
||||||
- **added:** `JsonDeserializer` extractor ([#2431])
|
- **added:** `JsonDeserializer` extractor ([#2431])
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ license = "MIT"
|
|||||||
name = "axum-extra"
|
name = "axum-extra"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/tokio-rs/axum"
|
repository = "https://github.com/tokio-rs/axum"
|
||||||
version = "0.9.0"
|
version = "0.9.1"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
@ -38,7 +38,7 @@ typed-routing = ["dep:axum-macros", "dep:percent-encoding", "dep:serde_html_form
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
axum = { path = "../axum", version = "0.7.2", default-features = false }
|
axum = { path = "../axum", version = "0.7.2", default-features = false }
|
||||||
axum-core = { path = "../axum-core", version = "0.4.1" }
|
axum-core = { path = "../axum-core", version = "0.4.2" }
|
||||||
bytes = "1.1.0"
|
bytes = "1.1.0"
|
||||||
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
||||||
http = "1.0.0"
|
http = "1.0.0"
|
||||||
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
# Unreleased
|
# Unreleased
|
||||||
|
|
||||||
|
- None.
|
||||||
|
|
||||||
|
# 0.7.3 (29. December, 2023)
|
||||||
|
|
||||||
- **added:** `Body` implements `From<()>` now ([#2411])
|
- **added:** `Body` implements `From<()>` now ([#2411])
|
||||||
- **change:** Update version of multer used internally for multipart ([#2433])
|
- **change:** Update version of multer used internally for multipart ([#2433])
|
||||||
- **change:** Update tokio-tungstenite to 0.21 ([#2435])
|
- **change:** Update tokio-tungstenite to 0.21 ([#2435])
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "axum"
|
name = "axum"
|
||||||
version = "0.7.2"
|
version = "0.7.3"
|
||||||
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
|
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
|
||||||
description = "Web framework that focuses on ergonomics and modularity"
|
description = "Web framework that focuses on ergonomics and modularity"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
@ -42,7 +42,7 @@ __private_docs = ["tower/full", "dep:tower-http"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "0.1.67"
|
async-trait = "0.1.67"
|
||||||
axum-core = { path = "../axum-core", version = "0.4.1" }
|
axum-core = { path = "../axum-core", version = "0.4.2" }
|
||||||
bytes = "1.0"
|
bytes = "1.0"
|
||||||
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
||||||
http = "1.0.0"
|
http = "1.0.0"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user