From c0d7157ae7169ec725f95d4237f641502790e62a Mon Sep 17 00:00:00 2001 From: Jacob Hoffman-Andrews Date: Mon, 26 Apr 2021 11:00:53 -0700 Subject: [PATCH] Update CHANGELOG and Cargo.toml for 2.1.1 (#376) --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6da0e90..2280eaa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 2.1.1 + * Bugfix: don't reuse conns with bytes pending from server (#372). This + reduces Transport errors when using an Agent for connection pooling. + # 2.1.0 * Bugfix: allow status lines without a reason phrase (#316) * Example: "cureq" to easier make ad-hoc command line tests (#330) diff --git a/Cargo.toml b/Cargo.toml index ee05a69..e2d7679 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ureq" -version = "2.1.0" +version = "2.1.1" authors = ["Martin Algesten ", "Jacob Hoffman-Andrews "] description = "Simple, safe HTTP client" license = "MIT/Apache-2.0"