Skip to content

Commit

Permalink
Relax plug version requirements (#37)
Browse files Browse the repository at this point in the history
plug version was over specified (~> 1.14.2 == >= 1.14.2 & < 1.15).
This caused issue on minor plug release to 1.15.x.

Now we only specify ~> 1.14 which means >= 1.14 & < 2.0
  • Loading branch information
EddieWhi authored Jan 18, 2024
1 parent 9160dca commit d2bdb79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ defmodule CloudflareAccessEx.MixProject do
{:httpoison, "~> 1.7 or ~> 2.0"},
{:joken, "~> 2.6"},
{:joken_jwks, "~> 1.6.0"},
{:plug, "~> 1.14.2"},
{:plug, "~> 1.14"},
{:test_server, "~> 0.1.13", only: :test}
]
end
Expand Down

0 comments on commit d2bdb79

Please sign in to comment.