aboutsummaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorSam Seay <sam@manuka.co>2016-09-08 09:36:09 +1200
committerGitHub <noreply@github.com>2016-09-08 09:36:09 +1200
commit8b77a3c045c81061f50f44716d60a96787203a5f (patch)
tree327005e4a38f13805d5dbb132d6f13422a41d4b5 /mix.exs
parenta35e5f82f3ff09b9c76e4924b50af559a6c07ae6 (diff)
downloadrecaptcha-8b77a3c045c81061f50f44716d60a96787203a5f.tar.gz
recaptcha-8b77a3c045c81061f50f44716d60a96787203a5f.tar.xz
support 1.5 and 2.x poison2.0.1
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mix.exs b/mix.exs
index a63f56d..eb0106e 100644
--- a/mix.exs
+++ b/mix.exs
@@ -3,7 +3,7 @@ defmodule Recaptcha.Mixfile do
def project do
[app: :recaptcha,
- version: "2.0.0",
+ version: "2.0.1",
elixir: "~> 1.2",
description: description,
deps: deps,
@@ -24,7 +24,7 @@ defmodule Recaptcha.Mixfile do
defp deps do
[
{:httpoison, "~> 0.9.0"},
- {:poison, "~> 2.0"},
+ {:poison, "~> 1.5 or ~> 2.0"},
{:credo, "~> 0.4", only: [:dev, :test]},
{:ex_doc, ">= 0.0.0", only: :dev}
]