diff --git a/CHANGELOG.md b/CHANGELOG.md index b4d2adf5f..db8eca8ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## v0.11.14 + +- Adds `Proxy::no_proxy(url)` that works like the NO_PROXY environment variable. +- Adds `multipart::Part::headers(headers)` method to add custom headers. +- (wasm) Add `Response::bytes_stream()`. +- Perf: several internal optimizations reducing copies and memory allocations. + ## v0.11.13 - Add `ClientBuilder::dns_resolver()` option for custom DNS resolvers. diff --git a/Cargo.toml b/Cargo.toml index 4721d4e49..1102d4e87 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.11.13" # remember to update html_root_url +version = "0.11.14" # remember to update html_root_url description = "higher level HTTP client library" keywords = ["http", "request", "client"] categories = ["web-programming::http-client", "wasm"]