diff --git a/CHANGELOG.md b/CHANGELOG.md index 139a90b83..c0ecb85fd 100644 --- a/CHANGELOG.md +++ b/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`. + - 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**: diff --git a/Cargo.toml b/Cargo.toml index e7533895d..d675ea06f 100644 --- a/Cargo.toml +++ b/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 "] license = "MIT" diff --git a/src/lib.rs b/src/lib.rs index 6bc4cf0c9..35ed0dcd2 100644 --- a/src/lib.rs +++ b/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)]