From 7412932e471685e1cdd8312502f72fb8fccd30b8 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 22 Jan 2018 09:40:13 -0800 Subject: [PATCH] v0.8.4 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f8800fa1..7fd57ab94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.8.4 + +### Features + +- Add `RequestBuilder::query` to easily adjust query parameters of requests. + ## v0.8.3 ### Features diff --git a/Cargo.toml b/Cargo.toml index b7f6f0211..0ed9c0009 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.8.3" # remember to update html_root_url +version = "0.8.4" # remember to update html_root_url description = "higher level HTTP client library" keywords = ["http", "request", "client"] repository = "https://github.com/seanmonstar/reqwest" diff --git a/src/lib.rs b/src/lib.rs index 9b6215d9c..474e99ead 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,7 @@ #![deny(warnings)] #![deny(missing_docs)] #![deny(missing_debug_implementations)] -#![doc(html_root_url = "https://docs.rs/reqwest/0.8.3")] +#![doc(html_root_url = "https://docs.rs/reqwest/0.8.4")] //! # reqwest //!