From 3f6f1bdc6c64fda0220a72e90cb91b9926a8e2a5 Mon Sep 17 00:00:00 2001 From: Fajar Maulana Firdaus Date: Tue, 24 May 2016 10:39:41 +0700 Subject: [PATCH 1/2] upgrade httpoison --- mix.exs | 2 +- mix.lock | 20 ++++++++++++-------- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/mix.exs b/mix.exs index 31eae4c..df415eb 100644 --- a/mix.exs +++ b/mix.exs @@ -17,7 +17,7 @@ defmodule Mandrill.Mixfile do defp deps do [ - { :httpoison, "~> 0.6" }, + { :httpoison, "~> 0.8.3" }, { :exjsx, "~> 3.2.0", app: false }, { :ex_doc, "~> 0.6.1", only: :docs }, { :earmark, "~> 0.1.12", only: :docs } diff --git a/mix.lock b/mix.lock index 3ba65f5..f270c1f 100644 --- a/mix.lock +++ b/mix.lock @@ -1,8 +1,12 @@ -%{"earmark": {:hex, :earmark, "0.1.13"}, - "ex_doc": {:hex, :ex_doc, "0.6.2"}, - "exjsx": {:hex, :exjsx, "3.2.0"}, - "hackney": {:hex, :hackney, "1.0.6"}, - "httpoison": {:hex, :httpoison, "0.6.2"}, - "idna": {:hex, :idna, "1.0.2"}, - "jsx": {:hex, :jsx, "2.6.2"}, - "ssl_verify_hostname": {:hex, :ssl_verify_hostname, "1.0.1"}} +%{"certifi": {:hex, :certifi, "0.4.0", "a7966efb868b179023618d29a407548f70c52466bf1849b9e8ebd0e34b7ea11f", [:rebar3], []}, + "earmark": {:hex, :earmark, "0.1.13", "b6b865e874d0632998d282b1b1d0747dd8d2a83bef018cb9c3cfe1ad5e0cfa76", [:mix], []}, + "ex_doc": {:hex, :ex_doc, "0.6.2", "e51e39a1274201c753754fafd640be217568d552d2a70a2bb69b93d335eb027b", [:mix], []}, + "exjsx": {:hex, :exjsx, "3.2.0", "7136cc739ace295fc74c378f33699e5145bead4fdc1b4799822d0287489136fb", [:mix], [{:jsx, "~> 2.6.2", [hex: :jsx, optional: false]}]}, + "hackney": {:hex, :hackney, "1.6.0", "8d1e9440c9edf23bf5e5e2fe0c71de03eb265103b72901337394c840eec679ac", [:rebar3], [{:ssl_verify_fun, "1.1.0", [hex: :ssl_verify_fun, optional: false]}, {:mimerl, "1.0.2", [hex: :mimerl, optional: false]}, {:metrics, "1.0.1", [hex: :metrics, optional: false]}, {:idna, "1.2.0", [hex: :idna, optional: false]}, {:certifi, "0.4.0", [hex: :certifi, optional: false]}]}, + "httpoison": {:hex, :httpoison, "0.8.3", "b675a3fdc839a0b8d7a285c6b3747d6d596ae70b6ccb762233a990d7289ccae4", [:mix], [{:hackney, "~> 1.6.0", [hex: :hackney, optional: false]}]}, + "idna": {:hex, :idna, "1.2.0", "ac62ee99da068f43c50dc69acf700e03a62a348360126260e87f2b54eced86b2", [:rebar3], []}, + "jsx": {:hex, :jsx, "2.6.2", "213721e058da0587a4bce3cc8a00ff6684ced229c8f9223245c6ff2c88fbaa5a", [:mix, :rebar], []}, + "metrics": {:hex, :metrics, "1.0.1", "25f094dea2cda98213cecc3aeff09e940299d950904393b2a29d191c346a8486", [:rebar3], []}, + "mimerl": {:hex, :mimerl, "1.0.2", "993f9b0e084083405ed8252b99460c4f0563e41729ab42d9074fd5e52439be88", [:rebar3], []}, + "ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.0", "edee20847c42e379bf91261db474ffbe373f8acb56e9079acb6038d4e0bf414f", [:rebar, :make], []}, + "ssl_verify_hostname": {:hex, :ssl_verify_hostname, "1.0.1", "e6ef428c350d1b7e9c534c0929caae1ecb47c22f88cbbb880e07e46918380cc5", [:make], []}} From 9f8bc2e1112b8078d4900cdf169d5fb70b57884d Mon Sep 17 00:00:00 2001 From: Fajar Maulana Firdaus Date: Tue, 24 May 2016 10:43:03 +0700 Subject: [PATCH 2/2] bump up version --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index df415eb..aecd862 100644 --- a/mix.exs +++ b/mix.exs @@ -3,7 +3,7 @@ defmodule Mandrill.Mixfile do def project do [ app: :mandrill, - version: "0.5.0", + version: "0.5.1", elixir: "~> 1.0", description: description, package: package,