diff --git a/CHANGELOG.md b/CHANGELOG.md index dbf80b879..81ebd9e59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### v0.3.4 (March 31, 2023) + +- **Fixes**: + - `multipart::Part` data is now streamed instead of buffered. + - Update dependency used for `multipart` filters. + ### v0.3.3 (September 27, 2022) - **Fixes**: diff --git a/Cargo.toml b/Cargo.toml index 7fbeb74c3..68d9f4fc5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "warp" -version = "0.3.3" # don't forget to update html_root_url +version = "0.3.4" # 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 a965b1d1b..3f33a1260 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/warp/0.3.3")] +#![doc(html_root_url = "https://docs.rs/warp/0.3.4")] #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![deny(rust_2018_idioms)]