diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bc959001..b9c2f97da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## Version 3.2 + +- Add `ResponseBody::from_reader_and_size` for constructing a `ResponseBody` + from a `Reader` and an already known size such that `Content-Length` may be + set on the response. + ## Version 3.1.1 - Replace all uses of deprecated `try!` with `?` to suppress warnings that can diff --git a/Cargo.toml b/Cargo.toml index 94b87e241..f94eca16f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rouille" -version = "3.1.1" +version = "3.2.0" authors = ["Pierre Krieger "] license = "MIT/Apache-2.0" repository = "https://github.com/tomaka/rouille"