From 8e5b58e7858e9d617fb50addf9751fa43fc93572 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leo=20Nikkil=C3=A4?= Date: Fri, 18 Oct 2024 20:55:51 +0300 Subject: [PATCH] Relax Ranch version requirement (#134) Depending on 1.7.x prevents upgrading beyond Cowboy 2.8.0, since Ranch 1.8.0 is used by Cowboy 2.9.0 and up. --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index d734b40..9dd16da 100644 --- a/mix.exs +++ b/mix.exs @@ -31,7 +31,7 @@ defmodule Bypass.Mixfile do [ {:plug_cowboy, "~> 2.0"}, {:plug, "~> 1.7"}, - {:ranch, "~> 1.7.1"}, + {:ranch, "~> 1.7"}, {:ex_doc, "> 0.0.0", only: :dev}, {:espec, "~> 1.6", only: [:dev, :test]}, {:mint, "~> 1.1", only: :test},