From ab206a90b61f7b411dae49e0676cd64165ee10f2 Mon Sep 17 00:00:00 2001 From: Lindolfo 'Lorn' Rodrigues Date: Wed, 13 Feb 2019 16:40:19 -0200 Subject: Support Elixir-1.8 Also dropped support for elixir < 1.6 --- mix.exs | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) (limited to 'mix.exs') diff --git a/mix.exs b/mix.exs index ee0a091..94fe8a5 100644 --- a/mix.exs +++ b/mix.exs @@ -2,14 +2,16 @@ defmodule PowerDNSex.Mixfile do use Mix.Project def project do - [app: :powerdnsex, - version: "0.1.0", - elixir: "~> 1.3", - description: description(), - package: package(), - build_embedded: Mix.env == :prod, - start_permanent: Mix.env == :prod, - deps: deps()] + [ + app: :powerdnsex, + version: "0.2.0", + elixir: "~> 1.6", + description: description(), + package: package(), + build_embedded: Mix.env() == :prod, + start_permanent: Mix.env() == :prod, + deps: deps() + ] end def application do @@ -17,9 +19,7 @@ defmodule PowerDNSex.Mixfile do end defp deps do - [{:httpoison, "~> 0.13.0"}, - {:poison, "~> 2.2"}, - {:exvcr, "~> 0.9.1", only: :test}] + [{:httpoison, "~> 1.5.0"}, {:poison, "~> 4.0.1"}, {:exvcr, "~> 0.10.3", only: :test}] end defp description do @@ -29,9 +29,10 @@ defmodule PowerDNSex.Mixfile do end defp package do - [maintainers: ["Rodrigo Coutinho"], - licenses: ["MIT"], - links: %{"GitHub" => "https://github.com/digaoddc/power_dnsex"} + [ + maintainers: ["Lindolfo Rodrigues"], + licenses: ["MIT"], + links: %{"GitHub" => "https://github.com/locaweb/power_dnsex"} ] end end -- cgit v1.2.3