From 78ec3a4d75075c8dff0cb543cd5fc797b7f15132 Mon Sep 17 00:00:00 2001 From: Jacob Hoffman-Andrews Date: Fri, 30 Dec 2022 21:56:23 -0800 Subject: [PATCH] Update CHANGELOG for 2.6.0 (#572) --- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9abf815..5082e43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# 2.6.0 + +## Added + * Response::remote_addr() (#489) + * Request::query_pairs() - make query params from an Iterator of pairs (#519) + +## Fixed + * Gzip responses with chunked encoding now work with connection pooling (#560) + * Don't panic when rustls-native-certs errors (#564) + * Responses with zero-length body now work with connection pooling (#565) + # 2.5.0 * Add tcp no_delay option (#465) * Rework public TLS traits diff --git a/Cargo.toml b/Cargo.toml index d0c81d5..9398de6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ureq" -version = "2.5.0" +version = "2.6.0" authors = ["Martin Algesten ", "Jacob Hoffman-Andrews "] description = "Simple, safe HTTP client" license = "MIT/Apache-2.0"