### 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.
This commit is contained in:
Jeremiah Senkpiel 2021-11-01 12:41:31 -07:00
parent 5a8dc31b61
commit 876912d59e
3 changed files with 8 additions and 2 deletions

View File

@ -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

View File

@ -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"

View File

@ -47,7 +47,7 @@
<br/>
### 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.