From 6555261064ffd82ae5901baa53b6ab9b217beef0 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 13 Nov 2018 12:31:12 -0800 Subject: [PATCH] v0.9.5 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e9966a1..ef2f093 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## v0.9.5 + +### Features + +- Adds `Response::remote_addr()` method to check the address of the connection used. +- Adds `default-tls` crate feature, enabled by default, which allows users to *disable* TLS. + ## v0.9.4 ### Features diff --git a/Cargo.toml b/Cargo.toml index d7f7eaf..5a4194c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.9.4" # remember to update html_root_url +version = "0.9.5" # 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 2b40871..775e2b5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,7 @@ #![deny(missing_debug_implementations)] #![cfg_attr(test, deny(warnings))] #![cfg_attr(docs_rs_workaround, feature(extern_prelude))] -#![doc(html_root_url = "https://docs.rs/reqwest/0.9.4")] +#![doc(html_root_url = "https://docs.rs/reqwest/0.9.5")] //! # reqwest //!