diff --git a/CHANGELOG.md b/CHANGELOG.md index a329be0..c42ae9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] + +### Changed +- Changed minimum version of `reqwest` to `0.11.10`. url_mut, with_url, without_url functions are added after `0.11.10`. + ### [0.2.4] - 2023-09-21 ### Added diff --git a/reqwest-middleware/Cargo.toml b/reqwest-middleware/Cargo.toml index 2bcd347..3909693 100644 --- a/reqwest-middleware/Cargo.toml +++ b/reqwest-middleware/Cargo.toml @@ -14,13 +14,12 @@ readme = "../README.md" anyhow = "1.0.0" async-trait = "0.1.51" http = "0.2.0" -reqwest = { version = "0.11.4", default-features = false, features = ["json", "multipart"] } +reqwest = { version = "0.11.10", default-features = false, features = ["json", "multipart"] } serde = "1.0.106" task-local-extensions = "0.1.4" thiserror = "1.0.21" [dev-dependencies] -reqwest = "0.11.4" reqwest-retry = { path = "../reqwest-retry" } reqwest-tracing = { path = "../reqwest-tracing" } tokio = { version = "1.0.0", features = ["macros", "rt-multi-thread"] }