changed
hex_metadata.config
|
@@ -29,29 +29,29 @@
|
29
29
|
{<<"ecto">>,
|
30
30
|
[{<<"app">>,<<"ecto">>},
|
31
31
|
{<<"optional">>,nil},
|
32
|
- {<<"requirement">>,<<"~> 0.7.1">>}]},
|
32
|
+ {<<"requirement">>,<<"~> 0.11.2">>}]},
|
33
33
|
{<<"http_router">>,
|
34
34
|
[{<<"app">>,<<"http_router">>},
|
35
35
|
{<<"optional">>,nil},
|
36
|
- {<<"requirement">>,<<"~> 0.0.5">>}]},
|
36
|
+ {<<"requirement">>,<<"~> 0.0.6">>}]},
|
37
37
|
{<<"plug">>,
|
38
38
|
[{<<"app">>,<<"plug">>},
|
39
39
|
{<<"optional">>,nil},
|
40
|
- {<<"requirement">>,<<"~> 0.9.0">>}]},
|
40
|
+ {<<"requirement">>,<<"~> 0.12.2">>}]},
|
41
41
|
{<<"plugs">>,
|
42
42
|
[{<<"app">>,<<"plugs">>},
|
43
43
|
{<<"optional">>,nil},
|
44
|
- {<<"requirement">>,<<"~> 0.0.2">>}]},
|
44
|
+ {<<"requirement">>,<<"~> 0.0.3">>}]},
|
45
45
|
{<<"poison">>,
|
46
46
|
[{<<"app">>,<<"poison">>},
|
47
47
|
{<<"optional">>,nil},
|
48
|
- {<<"requirement">>,<<"~> 1.3.0">>}]},
|
48
|
+ {<<"requirement">>,<<"~> 1.4.0">>}]},
|
49
49
|
{<<"postgrex">>,
|
50
50
|
[{<<"app">>,<<"postgrex">>},
|
51
51
|
{<<"optional">>,nil},
|
52
|
- {<<"requirement">>,<<"~> 0.7">>}]},
|
52
|
+ {<<"requirement">>,<<"~> 0.8.1">>}]},
|
53
53
|
{<<"templates">>,
|
54
54
|
[{<<"app">>,<<"templates">>},
|
55
55
|
{<<"optional">>,nil},
|
56
|
- {<<"requirement">>,<<"~> 0.0.2">>}]}]}.
|
57
|
- {<<"version">>,<<"0.4.7">>}.
|
56
|
+ {<<"requirement">>,<<"~> 0.0.5">>}]}]}.
|
57
|
+ {<<"version">>,<<"0.4.8">>}.
|
changed
mix.exs
|
@@ -4,7 +4,7 @@ defmodule Sugar.Mixfile do
|
4
4
|
def project do
|
5
5
|
[ app: :sugar,
|
6
6
|
elixir: "~> 1.0",
|
7
|
- version: "0.4.7",
|
7
|
+ version: "0.4.8",
|
8
8
|
name: "Sugar",
|
9
9
|
source_url: "https://github.com/sugar-framework/sugar",
|
10
10
|
homepage_url: "https://sugar-framework.github.io",
|
|
@@ -23,17 +23,17 @@ defmodule Sugar.Mixfile do
|
23
23
|
|
24
24
|
defp deps do
|
25
25
|
[ { :cowboy, "~> 1.0.0" },
|
26
|
- { :plug, "~> 0.9.0" },
|
27
|
- { :http_router, "~> 0.0.5" },
|
28
|
- { :poison, "~> 1.3.0" },
|
29
|
- { :ecto, "~> 0.7.1" },
|
30
|
- { :postgrex, "~> 0.7" },
|
31
|
- { :plugs, "~> 0.0.2" },
|
32
|
- { :templates, "~> 0.0.2" },
|
33
|
- { :earmark, "~> 0.1.12", only: :docs },
|
34
|
- { :ex_doc, "~> 0.6.2", only: :docs },
|
35
|
- { :excoveralls, "~> 0.3", only: :test },
|
36
|
- { :dialyze, "~> 0.1.3", only: :test } ]
|
26
|
+ { :plug, "~> 0.12.2" },
|
27
|
+ { :http_router, "~> 0.0.6" },
|
28
|
+ { :poison, "~> 1.4.0" },
|
29
|
+ { :ecto, "~> 0.11.2" },
|
30
|
+ { :postgrex, "~> 0.8.1" },
|
31
|
+ { :plugs, "~> 0.0.3" },
|
32
|
+ { :templates, "~> 0.0.5" },
|
33
|
+ { :earmark, "~> 0.1.15", only: :docs },
|
34
|
+ { :ex_doc, "~> 0.7.2", only: :docs },
|
35
|
+ { :excoveralls, "~> 0.3.10", only: :test },
|
36
|
+ { :dialyze, "~> 0.1.4", only: :test } ]
|
37
37
|
end
|
38
38
|
|
39
39
|
defp description do
|