mirror of
https://github.com/tokio-rs/axum.git
synced 2026-09-07 00:00:12 +02:00
Version 0.1.2 (#80)
This commit is contained in:
+8
-4
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
# Unreleased
|
# Unreleased
|
||||||
|
|
||||||
|
None.
|
||||||
|
|
||||||
|
## Breaking changes
|
||||||
|
|
||||||
|
None.
|
||||||
|
|
||||||
|
# 0.1.2 (01. August, 2021)
|
||||||
|
|
||||||
- Implement `Stream` for `WebSocket` ([#52](https://github.com/tokio-rs/axum/pull/52))
|
- Implement `Stream` for `WebSocket` ([#52](https://github.com/tokio-rs/axum/pull/52))
|
||||||
- Implement `Sink` for `WebSocket` ([#52](https://github.com/tokio-rs/axum/pull/52))
|
- Implement `Sink` for `WebSocket` ([#52](https://github.com/tokio-rs/axum/pull/52))
|
||||||
- Implement `Deref` most extractors ([#56](https://github.com/tokio-rs/axum/pull/56))
|
- Implement `Deref` most extractors ([#56](https://github.com/tokio-rs/axum/pull/56))
|
||||||
@@ -20,10 +28,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- Mention required dependencies in docs ([#77](https://github.com/tokio-rs/axum/pull/77))
|
- Mention required dependencies in docs ([#77](https://github.com/tokio-rs/axum/pull/77))
|
||||||
- Fix WebSockets failing on Firefox ([#76](https://github.com/tokio-rs/axum/pull/76))
|
- Fix WebSockets failing on Firefox ([#76](https://github.com/tokio-rs/axum/pull/76))
|
||||||
|
|
||||||
## Breaking changes
|
|
||||||
|
|
||||||
None.
|
|
||||||
|
|
||||||
# 0.1.1 (30. July, 2021)
|
# 0.1.1 (30. July, 2021)
|
||||||
|
|
||||||
- Misc readme fixes.
|
- Misc readme fixes.
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
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"
|
||||||
documentation = "https://docs.rs/axum/0.1.1"
|
documentation = "https://docs.rs/axum/0.1.2"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
homepage = "https://github.com/tokio-rs/axum"
|
homepage = "https://github.com/tokio-rs/axum"
|
||||||
keywords = ["http", "web", "framework"]
|
keywords = ["http", "web", "framework"]
|
||||||
@@ -10,7 +10,7 @@ license = "MIT"
|
|||||||
name = "axum"
|
name = "axum"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/tokio-rs/axum"
|
repository = "https://github.com/tokio-rs/axum"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
|
|||||||
+1
-1
@@ -672,7 +672,7 @@
|
|||||||
//! [`Timeout`]: tower::timeout::Timeout
|
//! [`Timeout`]: tower::timeout::Timeout
|
||||||
//! [examples]: https://github.com/tokio-rs/axum/tree/main/examples
|
//! [examples]: https://github.com/tokio-rs/axum/tree/main/examples
|
||||||
|
|
||||||
#![doc(html_root_url = "https://docs.rs/axum/0.1.1")]
|
#![doc(html_root_url = "https://docs.rs/axum/0.1.2")]
|
||||||
#![warn(
|
#![warn(
|
||||||
clippy::all,
|
clippy::all,
|
||||||
clippy::dbg_macro,
|
clippy::dbg_macro,
|
||||||
|
|||||||
Reference in New Issue
Block a user