From fc8b65ab990207e4974a4a2a8fc45ade19b3c6c3 Mon Sep 17 00:00:00 2001 From: Igor Toporkov Date: Thu, 21 May 2020 11:16:22 +0300 Subject: [PATCH 1/2] Require hackney 1.16 --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 97a04f6..283f118 100644 --- a/mix.exs +++ b/mix.exs @@ -42,7 +42,7 @@ defmodule HTTPoison.Mixfile do defp deps do [ - {:hackney, "~> 1.15 and >= 1.15.2"}, + {:hackney, "~> 1.16 and >= 1.16.0"}, {:mimic, "~> 0.1", only: :test}, {:jason, "~> 1.2", only: :test}, {:httparrot, "~> 1.2", only: :test}, From c0c2e3010258aa0b3aab1a5906d8d2acf2d510e1 Mon Sep 17 00:00:00 2001 From: Toporkov Igor Date: Fri, 29 May 2020 21:20:30 +0300 Subject: [PATCH 2/2] Remove overly specific version requirement --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 283f118..843e48b 100644 --- a/mix.exs +++ b/mix.exs @@ -42,7 +42,7 @@ defmodule HTTPoison.Mixfile do defp deps do [ - {:hackney, "~> 1.16 and >= 1.16.0"}, + {:hackney, "~> 1.16"}, {:mimic, "~> 0.1", only: :test}, {:jason, "~> 1.2", only: :test}, {:httparrot, "~> 1.2", only: :test},