Skip to content

Commit 634b3ba

Browse files
committed
v0.3.6
1 parent 8b3bf76 commit 634b3ba

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### v0.3.6 (September 27, 2023)
2+
3+
- **Features**:
4+
- Add ability to pass `None` to `multipart::form().max_length()`.
5+
- Implement `Reply` for `Result<impl Reply, impl Reply>`.
6+
- Make `multipart::Part::content_type()` return the full mime string.
7+
- Add `TlsServer::try_bind_with_graceful_shutdown()`.
8+
- **Fixes**:
9+
- Updated tungstenite and rustls dependencies for security fixes.
10+
111
### v0.3.5 (April 28, 2023)
212

313
- **Fixes**:

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "warp"
3-
version = "0.3.5" # don't forget to update html_root_url
3+
version = "0.3.6" # don't forget to update html_root_url
44
description = "serve the web at warp speeds"
55
authors = ["Sean McArthur <sean@seanmonstar.com>"]
66
license = "MIT"

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/warp/0.3.5")]
1+
#![doc(html_root_url = "https://docs.rs/warp/0.3.6")]
22
#![deny(missing_docs)]
33
#![deny(missing_debug_implementations)]
44
#![deny(rust_2018_idioms)]

0 commit comments

Comments
 (0)