Skip to content

Commit 42b7cb1

Browse files
committed
Allow poison 3.0
1 parent 9679b9b commit 42b7cb1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mix.exs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule GraphQL.Relay.Mixfile do
22
use Mix.Project
33

4-
@version "0.5.0"
4+
@version "0.5.1"
55
@description "Relay helpers for GraphQL Elixir"
66
@repo_url "https://github.com/graphql-elixir/graphql_relay"
77

@@ -29,15 +29,15 @@ defmodule GraphQL.Relay.Mixfile do
2929
]
3030
]
3131
end
32-
32+
3333
defp applications(:test), do: applications(:prod) ++ [:ecto]
3434
defp applications(:dev), do: applications(:prod) ++ [:ecto]
3535
defp applications(_), do: [:logger]
3636

3737
defp deps do
3838
[
3939
{:graphql, "~> 0.3"},
40-
{:poison, "~> 1.5 or ~> 2.0"}, # For .generate_schema_json!
40+
{:poison, "~> 1.5 or ~> 2.0 or ~> 3.0"}, # For .generate_schema_json!
4141
{:ecto, "~> 1.0 or ~> 2.0", optional: true, only: [:dev, :test]},
4242
{:postgrex, ">= 0.0.0", only: [:dev, :test]},
4343
]

0 commit comments

Comments
 (0)