diff options
author | Loïc Hoguin <[email protected]> | 2013-08-24 20:35:28 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-08-24 20:35:28 +0200 |
commit | 694c9bfbfae461550691e1e48c5046b52f7aca27 (patch) | |
tree | a0370b74b14103113026af53964988cc15836b8e | |
parent | bfb6db1eabb945777627a7ced8ab7f1dbc29af67 (diff) | |
download | cowboy-694c9bfbfae461550691e1e48c5046b52f7aca27.tar.gz cowboy-694c9bfbfae461550691e1e48c5046b52f7aca27.tar.bz2 cowboy-694c9bfbfae461550691e1e48c5046b52f7aca27.zip |
Update Ranch to 0.8.5
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | examples/elixir_hello_world/mix.exs | 2 | ||||
-rw-r--r-- | rebar.config | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -12,7 +12,7 @@ PLT_APPS = crypto public_key ssl DEPS = ranch TEST_DEPS = ct_helper -dep_ranch = https://github.com/extend/ranch.git 0.8.4 +dep_ranch = https://github.com/extend/ranch.git 0.8.5 dep_ct_helper = https://github.com/extend/ct_helper.git master # Standard targets. diff --git a/examples/elixir_hello_world/mix.exs b/examples/elixir_hello_world/mix.exs index 9055175..00297bf 100644 --- a/examples/elixir_hello_world/mix.exs +++ b/examples/elixir_hello_world/mix.exs @@ -14,7 +14,7 @@ defmodule ElixirHelloWorld.Mixfile do end defp deps do - [ {:ranch, github: "extend/ranch", tag: "0.8.4"}, + [ {:ranch, github: "extend/ranch", tag: "0.8.5"}, {:cowboy, github: "extend/cowboy"} ] end end diff --git a/rebar.config b/rebar.config index 443949a..edd3948 100644 --- a/rebar.config +++ b/rebar.config @@ -1,3 +1,3 @@ {deps, [ - {ranch, ".*", {git, "git://github.com/extend/ranch.git", "0.8.4"}} + {ranch, ".*", {git, "git://github.com/extend/ranch.git", "0.8.5"}} ]}. |