diff --git a/CHANGELOG.md b/CHANGELOG.md index 81ebd9e59..139a90b83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### v0.3.5 (April 28, 2023) + +- **Fixes**: + - `multipart` filters now use `multer` dependency, fixing some streaming bugs. + - `Rejection::into_response()` is significantly faster. + ### v0.3.4 (March 31, 2023) - **Fixes**: diff --git a/Cargo.toml b/Cargo.toml index dcd2d43f7..93ea57369 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "warp" -version = "0.3.4" # don't forget to update html_root_url +version = "0.3.5" # 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 3f33a1260..f20e67c10 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/warp/0.3.4")] +#![doc(html_root_url = "https://docs.rs/warp/0.3.5")] #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![deny(rust_2018_idioms)]