= v0.9.0 =
- Update to
reqwest
0.10.1
. (PR #26 @incker2)- New version of
reqwest
makes theasync
client the default. Foruser_agent
, utilizereqwest::blocking::Client
instead. reqwest
version of theurl
crate is now consistent withuser_agent
, allowing the removal of some round-trip encode/decode logic which handle the crate version mismatch previously.
- New version of
- Minor dependency bumps
= v0.8.0 =
- remove
failure
for Error handling
= v0.7.0 =
- Update to latest
cookie_store
andcookie
- Document
cookie_store
support availibility inreqwest
= v0.6.0 =
- Introduce features
default-tls
andrustls-tls
to enable control of dependency (reqwest
) features
= v0.6.5 =
- Bugfix for multiple Set-Cookie values
= v0.6.3 =
- Add
SessionClient::send()
fn, and simplify the{get,post,...}_with
functions.- BREAKING:
*_with
fns now take aprepare
FnOnce
returningSelf::Request
, instead ofprepare_and_send
which returnedResult<Self::Response, Self::SendError>
- BREAKING:
- Introduce convenience
get
,post
, etc. methods - BREAKING: Remove various
Deref
impls
= v0.6.0 =
Split CookieStore
into separate crate
= v0.5.0 = Refactor and reduce some trait and macro usage
= v0.4.0 =
- Update to Rust 2018 edition
= v0.3.1 =
- Upgrades to
cookies
v0.11 - Minor dependency upgrades
= v0.3 =
- Upgrades to
reqwest
v0.9 - Replaces
error-chain
withfailure
= v0.2 =
- Removes separate
ReqwestSession::ErrorKind
. Added as variant::ErrorKind::Reqwest
instead.