From 0cd56ac576765a135fb27286e9ec21b8abb5911b Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 21 Nov 2015 12:55:39 -0800 Subject: [PATCH] Document removed deprecations in CHANGES.md --- CHANGES.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 05147b2b..654290d3 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,19 @@ +## HEAD + +* [#265](https://github.com/httprb/http/pull/265/): + Remove deprecations ([@tarcieri]): + - HTTP::Chainable#with_follow (use #follow) + - HTTP::Chainable#with, #with_headers (use #headers) + - HTTP::Chainable#auth(:basic, ...) (use #basic_auth) + - HTTP::Chainable#default_headers (use #default_options[:headers]) + - HTTP::Headers#append (use #add) + - HTTP::Options#[] hash-like API deprecated in favor of explicit methods + - HTTP::Request#request_header (use #headline) + - HTTP::Response::STATUS_CODES (use HTTP::Status::REASONS) + - HTTP::Response::SYMBOL_TO_STATUS_CODE (no replacement) + - HTTP::Response#status_code (use #status or #code) + - HTTP::Response::Status#symbolize (use #to_sym) + ## 0.9.8 (2015-09-29) * [#260](https://github.com/httprb/http/pull/258):