Skip to content

Commit

Permalink
v0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Sep 27, 2023
1 parent 8b3bf76 commit 634b3ba
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,13 @@
### v0.3.6 (September 27, 2023)

- **Features**:
- Add ability to pass `None` to `multipart::form().max_length()`.
- Implement `Reply` for `Result<impl Reply, impl Reply>`.
- Make `multipart::Part::content_type()` return the full mime string.
- Add `TlsServer::try_bind_with_graceful_shutdown()`.
- **Fixes**:
- Updated tungstenite and rustls dependencies for security fixes.

### v0.3.5 (April 28, 2023)

- **Fixes**:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "warp"
version = "0.3.5" # don't forget to update html_root_url
version = "0.3.6" # don't forget to update html_root_url
description = "serve the web at warp speeds"
authors = ["Sean McArthur <sean@seanmonstar.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/warp/0.3.5")]
#![doc(html_root_url = "https://docs.rs/warp/0.3.6")]
#![deny(missing_docs)]
#![deny(missing_debug_implementations)]
#![deny(rust_2018_idioms)]
Expand Down

0 comments on commit 634b3ba

Please sign in to comment.