From 09721f70cd391088b35196fa0a046b0180e85c73 Mon Sep 17 00:00:00 2001 From: Jens Pitkanen Date: Sat, 20 May 2023 19:21:49 +0300 Subject: [PATCH] Release 2.8.1 --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd0a0bc..58af3ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.8.1] - 2023-05-20 +### Fixed +- Proxy strings with the protocol included not working. Thanks for the report, + @tkkcc! ([#95](https://github.com/neonmoe/minreq/issues/95)) + ## [2.8.0] - 2023-05-13 ### Added - Default proxy from environment variables when the `proxy` feature is diff --git a/Cargo.toml b/Cargo.toml index 11f6f63..da780f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minreq" -version = "2.8.1-alpha" +version = "2.8.1" authors = ["Jens Pitkanen "] description = "Simple, minimal-dependency HTTP client" documentation = "https://docs.rs/minreq" diff --git a/src/lib.rs b/src/lib.rs index 13eaed1..3908a3a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -21,7 +21,7 @@ //! //! ```toml //! [dependencies] -//! minreq = { version = "2.8.1-alpha", features = ["punycode"] } +//! minreq = { version = "2.8.1", features = ["punycode"] } //! ``` //! //! Below is the list of all available features.