Skip to content

Commit c27ef1c

Browse files
committed
Loosen and update deps
The only major version bump is plug, and that's primarily due to plug having its (presumably, assuming they're following semver) first real stable release. The rest is just loosening existing deps to allow for newer minor versions.
1 parent 74391f2 commit c27ef1c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

mix.exs

+9-9
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ defmodule HttpRouter.Mixfile do
1919
end
2020

2121
defp deps do
22-
[ { :cowboy, "~> 1.0.2" },
23-
{ :plug, "~> 0.14.0" },
24-
{ :poison, "~> 1.4.0" },
25-
{ :xml_builder, "~> 0.0.6" },
26-
{ :earmark, "~> 0.1.17", only: :docs },
27-
{ :ex_doc, "~> 0.7.3", only: :docs },
28-
{ :inch_ex, "~> 0.3.3", only: :docs },
29-
{ :excoveralls, "~> 0.3.11", only: :test },
30-
{ :dialyze, "~> 0.2.0", only: :test } ]
22+
[ { :cowboy, "~> 1.0" },
23+
{ :plug, "~> 1.0" },
24+
{ :poison, "~> 1.4" },
25+
{ :xml_builder, "~> 0.0" },
26+
{ :earmark, "~> 0.1", only: :docs },
27+
{ :ex_doc, "~> 0.7", only: :docs },
28+
{ :inch_ex, "~> 0.3", only: :docs },
29+
{ :excoveralls, "~> 0.3", only: :test },
30+
{ :dialyze, "~> 0.2", only: :test } ]
3131
end
3232

3333
defp description do

0 commit comments

Comments
 (0)