From 876912d59ef5850177f77af783aa699ac4f111cc Mon Sep 17 00:00:00 2001 From: Jeremiah Senkpiel Date: Mon, 1 Nov 2021 12:41:31 -0700 Subject: [PATCH] 2.3.2 ### Fixes - Fixed `Config::set_tls_config()` when using `h1-client` (`async-h1` with `async-native-tls`). - Previously this function was never exposed due to a faulty feature flag check. --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0207f17..a02b7b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview ## [Unreleased] +## [2.3.2] - 2021-11-01 + +### Fixes +- Fixed `Config::set_tls_config()` when using `h1-client` (`async-h1` with `async-native-tls`). + - Previously this function was never exposed due to a faulty feature flag check. + ## [2.3.1] - 2021-08-23 Fixed git base of 2.3.0 diff --git a/Cargo.toml b/Cargo.toml index 660f309..c514518 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "surf" -version = "2.3.1" +version = "2.3.2" license = "MIT OR Apache-2.0" repository = "https://github.com/http-rs/surf" documentation = "https://docs.rs/surf" diff --git a/README.md b/README.md index 21e6843..b80b71e 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@
-### surf the web. +### Surf the web - HTTP client framework Surf is a Rust HTTP client built for ease-of-use and multi-HTTP-backend flexibility. Whether it's a quick script, or a cross-platform SDK, Surf will make it work.