From ec3ccb128ca6cb6e260797500f9facecc8f070bf Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Fri, 19 Oct 2018 17:22:52 +0200 Subject: [PATCH] [1.0] UPGRADING.md: Mention Ruby 2.3+ (#829) --- UPGRADING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UPGRADING.md b/UPGRADING.md index 451e1043..d3adbb98 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -1,7 +1,7 @@ ## Faraday 1.0 * Dropped support for jruby and Rubinius. -* Officially supports Ruby 2.2+ +* Officially supports Ruby 2.3+ * In order to specify the adapter you now MUST use the `#adapter` method on the connection builder. If you don't do so and your adapter inherits from `Faraday::Adapter` then Faraday will raise an exception. Otherwise, Faraday will automatically push the default adapter at the end of the stack causing your request to be executed twice. ```ruby class OfficialAdapter < Faraday::Adapter