From 80e4fc5daab6c1f8487f77ccf0648f829493f83e Mon Sep 17 00:00:00 2001 From: Jeremiah Senkpiel Date: Thu, 19 Aug 2021 10:18:11 -0700 Subject: [PATCH] 6.5.0 - `Config` has been stabilized and is now available by default! - `wasm_client` support for `Config` (only timeouts). - `Config::max_connections_per_host` (Supported on `h1_client` and `curl_client`.) - `H1Client::with_max_connections()` was been superseded by `Config::max_connections_per_host`. --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41dd2b3..4440f6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview ## [Unreleased] +## [6.5.0] + +### Added +- `Config` has been stabilized and is now available by default! +- `wasm_client` support for `Config` (only timeouts). +- `Config::max_connections_per_host` (Supported on `h1_client` and `curl_client`.) + +### Deprecated +- `H1Client::with_max_connections()` was been superseded by `Config::max_connections_per_host`. + ## [6.4.1] - 2021-05-19 ### Docs diff --git a/Cargo.toml b/Cargo.toml index 96fe65c..535b676 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "http-client" -version = "6.4.1" +version = "6.5.0" license = "MIT OR Apache-2.0" repository = "https://github.com/http-rs/http-client" documentation = "https://docs.rs/http-client"