summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorLindolfo 'Lorn' Rodrigues <lorn@lornlab.org>2020-03-17 19:30:34 -0300
committerLindolfo 'Lorn' Rodrigues <lorn@lornlab.org>2020-03-19 23:29:50 -0300
commit6589586f985b466194a6553c50ab3f7419a13b7f (patch)
treecdb94939b65877c420abd60a26f3eab595b9aae6 /mix.exs
parentMerge pull request #14 from locaweb/fix-docs (diff)
Timeout option
Now, you need to pass the timeout for the PowerDNS API in seconds We need to add the timeout to the GenServer.call function
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mix.exs b/mix.exs
index e1ee79b..00c9ccb 100644
--- a/mix.exs
+++ b/mix.exs
@@ -4,8 +4,8 @@ defmodule PowerDNSex.Mixfile do
def project do
[
app: :powerdnsex,
- version: "0.2.0",
- elixir: "~> 1.6",
+ version: "0.3.1",
+ elixir: "~> 1.8",
description: description(),
package: package(),
build_embedded: Mix.env() == :prod,
@@ -21,7 +21,7 @@ defmodule PowerDNSex.Mixfile do
defp deps do
[
{:httpoison, "~> 1.5.0"},
- {:poison, "~> 4.0.1"},
+ {:poison, "~> 3.1.0"},
{:exvcr, "~> 0.10.3", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev}
]