From 17d62e091590c682b2cec3eb03b9de8cdafaf70d Mon Sep 17 00:00:00 2001 From: Jean Parpaillon Date: Mon, 22 Dec 2014 14:41:55 +0100 Subject: [PATCH 1/2] Upgrade cowboy version to 1.0.1 --- Makefile | 2 +- rebar.config | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1abb921..2b0e9fa 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ PROJECT = cowboy_cors DEPS = cowboy -dep_cowboy = https://github.com/extend/cowboy.git 0.8.6 +dep_cowboy = https://github.com/extend/cowboy.git 1.0.1 include erlang.mk diff --git a/rebar.config b/rebar.config index 86485fb..ba91202 100644 --- a/rebar.config +++ b/rebar.config @@ -2,5 +2,5 @@ {erl_opts, [warnings_as_errors]}. {deps, [ - {cowboy, ".*", {git, "https://github.com/extend/cowboy.git", "0.8.6"}} + {cowboy, ".*", {git, "https://github.com/extend/cowboy.git", "1.0.1"}} ]}. From c387c516a69227192fec7b89d2022d07028478d2 Mon Sep 17 00:00:00 2001 From: Jean Parpaillon Date: Mon, 22 Dec 2014 14:46:03 +0100 Subject: [PATCH 2/2] Upgrade application version number --- src/cowboy_cors.app.src | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cowboy_cors.app.src b/src/cowboy_cors.app.src index ab582c9..1cc9ab7 100644 --- a/src/cowboy_cors.app.src +++ b/src/cowboy_cors.app.src @@ -1,7 +1,7 @@ {application, cowboy_cors, [ {description, "Cross-Origin Resource Sharing middleware for cowboy"}, - {vsn, "0.3.0"}, + {vsn, "0.3.1"}, {modules, []}, {applications, [kernel, stdlib, cowboy]}, {registered, []},