This commit is contained in:
Sean McArthur
2018-05-31 12:08:07 -07:00
parent cf5deac02d
commit a4f5c2d3f0
3 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,10 @@
## v0.8.6
### Features
- Add `RedirectAttempt::status` to check status code that triggered redirect.
- Add `RedirectPolicy::redirect` method publicly, to allow composing policies.
## v0.8.5 ## v0.8.5
### Features ### Features

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "reqwest" name = "reqwest"
version = "0.8.5" # remember to update html_root_url version = "0.8.6" # remember to update html_root_url
description = "higher level HTTP client library" description = "higher level HTTP client library"
keywords = ["http", "request", "client"] keywords = ["http", "request", "client"]
repository = "https://github.com/seanmonstar/reqwest" repository = "https://github.com/seanmonstar/reqwest"

View File

@@ -1,7 +1,7 @@
#![deny(warnings)] #![deny(warnings)]
#![deny(missing_docs)] #![deny(missing_docs)]
#![deny(missing_debug_implementations)] #![deny(missing_debug_implementations)]
#![doc(html_root_url = "https://docs.rs/reqwest/0.8.5")] #![doc(html_root_url = "https://docs.rs/reqwest/0.8.6")]
//! # reqwest //! # reqwest
//! //!