From 71a9d82985dc57eeaadfa92efa86fe7857ba6b2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lennart=20Fride=CC=81n?= Date: Sat, 6 Jun 2015 18:56:49 +0200 Subject: [PATCH] Release 0.6.0 --- README.md | 2 +- mix.exs | 6 +++--- mix.lock | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 3c098ae..39da0c2 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ An Elixir Plug for requiring and extracting a given header. Update your `mix.exs` file and run `mix deps.get`. ```elixir defp deps do - [{:plug_require_header, "~> 0.5"}] + [{:plug_require_header, "~> 0.6"}] end ``` diff --git a/mix.exs b/mix.exs index 2f7a39f..217352f 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule PlugRequireHeader.Mixfile do def project do [ app: :plug_require_header, - version: "0.5.0", + version: "0.6.0", name: "PlugRequireHeader", source_url: "https://github.com/DevL/plug_require_header", elixir: "~> 1.0", @@ -35,8 +35,8 @@ defmodule PlugRequireHeader.Mixfile do defp deps do [ - {:plug, "~> 0.11"}, - {:poison, "~> 1.3"}, + {:plug, "~> 0.13"}, + {:poison, "~> 1.4"}, {:earmark, "~> 0.1", only: :dev}, {:ex_doc, "~> 0.7", only: :dev}, {:inch_ex, only: :docs} diff --git a/mix.lock b/mix.lock index 8fb5b2b..1656bf3 100644 --- a/mix.lock +++ b/mix.lock @@ -1,5 +1,5 @@ -%{"earmark": {:hex, :earmark, "0.1.15"}, - "ex_doc": {:hex, :ex_doc, "0.7.2"}, - "inch_ex": {:hex, :inch_ex, "0.2.4"}, - "plug": {:hex, :plug, "0.12.0"}, +%{"earmark": {:hex, :earmark, "0.1.17"}, + "ex_doc": {:hex, :ex_doc, "0.7.3"}, + "inch_ex": {:hex, :inch_ex, "0.3.2"}, + "plug": {:hex, :plug, "0.13.0"}, "poison": {:hex, :poison, "1.4.0"}}