mirror of
https://github.com/tokio-rs/axum.git
synced 2026-09-09 00:00:12 +02:00
Version 0.2.4 (#313)
Contains some documentation improvements: - Document using `StreamExt::split` with `WebSocket` ([#291]) - Document adding middleware to multiple groups of routes ([#293]) [#291]: https://github.com/tokio-rs/axum/pull/291 [#293]: https://github.com/tokio-rs/axum/pull/293
This commit is contained in:
@@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
- None.
|
- None.
|
||||||
|
|
||||||
|
# 0.2.4 (10. September, 2021)
|
||||||
|
|
||||||
|
- Document using `StreamExt::split` with `WebSocket` ([#291])
|
||||||
|
- Document adding middleware to multiple groups of routes ([#293])
|
||||||
|
|
||||||
|
[#291]: https://github.com/tokio-rs/axum/pull/291
|
||||||
|
[#293]: https://github.com/tokio-rs/axum/pull/293
|
||||||
|
|
||||||
# 0.2.3 (26. August, 2021)
|
# 0.2.3 (26. August, 2021)
|
||||||
|
|
||||||
- **fixed:** Fix accidental breaking change introduced by internal refactor.
|
- **fixed:** Fix accidental breaking change introduced by internal refactor.
|
||||||
|
|||||||
+2
-2
@@ -1,4 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
|
name = "axum"
|
||||||
|
version = "0.2.4"
|
||||||
authors = ["David Pedersen <[email protected]>"]
|
authors = ["David Pedersen <[email protected]>"]
|
||||||
categories = ["asynchronous", "network-programming", "web-programming"]
|
categories = ["asynchronous", "network-programming", "web-programming"]
|
||||||
description = "Web framework that focuses on ergonomics and modularity"
|
description = "Web framework that focuses on ergonomics and modularity"
|
||||||
@@ -6,10 +8,8 @@ edition = "2018"
|
|||||||
homepage = "https://github.com/tokio-rs/axum"
|
homepage = "https://github.com/tokio-rs/axum"
|
||||||
keywords = ["http", "web", "framework"]
|
keywords = ["http", "web", "framework"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "axum"
|
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/tokio-rs/axum"
|
repository = "https://github.com/tokio-rs/axum"
|
||||||
version = "0.2.3"
|
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = ["examples/*"]
|
members = ["examples/*"]
|
||||||
|
|||||||
Reference in New Issue
Block a user