Skip to content

Commit 84f0a77

Browse files
committed
Use the hex package for eiconv 1.0.0
1 parent 1bd2ea9 commit 84f0a77

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

mix.exs

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,31 @@ defmodule Mailman.Mixfile do
22
use Mix.Project
33

44
def project do
5-
[ app: :mailman,
5+
[
6+
app: :mailman,
67
name: "Mailman",
78
source_url: "https://github.com/kamilc/mailman",
89
homepage_url: "https://github.com/kamilc/mailman",
910
description: "Library providing a clean way of defining mailers in Elixir apps",
1011
package: package(),
1112
version: "0.4.0",
1213
elixir: "~> 1.0",
13-
deps: deps() ]
14+
deps: deps()
15+
]
1416
end
1517

1618
# Configuration for the OTP application
1719
def application do
18-
[ applications: [:ssl, :crypto, :eiconv, :gen_smtp, :httpotion]]
20+
[applications: [:ssl, :crypto, :eiconv, :gen_smtp, :httpotion]]
1921
end
2022

2123
# Returns the list of dependencies in the format:
2224
defp deps do
2325
[
24-
{ :eiconv, "~> 1.0.0-alpha1" },
25-
{ :gen_smtp, "~> 0.12.0" },
26-
{ :ex_doc, ">= 0.16.3", only: :dev },
27-
{ :httpotion, "~> 3.0.0" },
26+
{:eiconv, "~> 1.0.0"},
27+
{:gen_smtp, "~> 0.12.0"},
28+
{:ex_doc, ">= 0.16.3", only: :dev},
29+
{:httpotion, "~> 3.0.0"},
2830
{:credo, "~> 0.8", only: [:dev, :test], runtime: false}
2931
]
3032
end
@@ -35,9 +37,9 @@ defmodule Mailman.Mixfile do
3537
maintainers: ["Kamil Ciemniewski <ciemniewski.kamil@gmail.com>"],
3638
licenses: ["MIT"],
3739
links: %{
38-
"GitHub" => "https://github.com/kamilc/mailman",
39-
"Docs" => "http://hexdocs.pm/mailman"
40-
}
40+
"GitHub" => "https://github.com/kamilc/mailman",
41+
"Docs" => "http://hexdocs.pm/mailman"
42+
}
4143
]
4244
end
4345
end

mix.lock

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
%{"bunt": {:hex, :bunt, "0.2.0", "951c6e801e8b1d2cbe58ebbd3e616a869061ddadcc4863d0a2182541acae9a38", [], [], "hexpm"},
2-
"credo": {:hex, :credo, "0.8.8", "990e7844a8d06ebacd88744a55853a83b74270b8a8461c55a4d0334b8e1736c9", [], [{:bunt, "~> 0.2.0", [hex: :bunt, repo: "hexpm", optional: false]}], "hexpm"},
1+
%{
2+
"bunt": {:hex, :bunt, "0.2.0", "951c6e801e8b1d2cbe58ebbd3e616a869061ddadcc4863d0a2182541acae9a38", [:mix], [], "hexpm"},
3+
"credo": {:hex, :credo, "0.8.8", "990e7844a8d06ebacd88744a55853a83b74270b8a8461c55a4d0334b8e1736c9", [:mix], [{:bunt, "~> 0.2.0", [hex: :bunt, repo: "hexpm", optional: false]}], "hexpm"},
34
"earmark": {:hex, :earmark, "1.2.3", "206eb2e2ac1a794aa5256f3982de7a76bf4579ff91cb28d0e17ea2c9491e46a4", [:mix], []},
4-
"eiconv": {:hex, :eiconv, "1.0.0-alpha1", "547da4b8abb5c85ee8e47d7b9ebfca77016b03f2869dedc91a0f0177ab67ebc4", [:rebar3], [], "hexpm"},
5+
"eiconv": {:hex, :eiconv, "1.0.0", "ee1e47ee37799a05beff7a68d61f63cccc93101833c4fb94b454c23b12a21629", [:rebar3], [], "hexpm"},
56
"ex_doc": {:hex, :ex_doc, "0.16.3", "cd2a4cfe5d26e37502d3ec776702c72efa1adfa24ed9ce723bb565f4c30bd31a", [:mix], [{:earmark, "~> 1.1", [hex: :earmark, optional: false]}]},
67
"gen_smtp": {:hex, :gen_smtp, "0.12.0", "97d44903f5ca18ca85cb39aee7d9c77e98d79804bbdef56078adcf905cb2ef00", [:rebar3], []},
78
"httpotion": {:hex, :httpotion, "3.0.3", "17096ea1a7c0b2df74509e9c15a82b670d66fc4d66e6ef584189f63a9759428d", [:mix], [{:ibrowse, "~> 4.4", [hex: :ibrowse, optional: false]}]},
8-
"ibrowse": {:hex, :ibrowse, "4.4.0", "2d923325efe0d2cb09b9c6a047b2835a5eda69d8a47ed6ff8bc03628b764e991", [:rebar3], []}}
9+
"ibrowse": {:hex, :ibrowse, "4.4.0", "2d923325efe0d2cb09b9c6a047b2835a5eda69d8a47ed6ff8bc03628b764e991", [:rebar3], []},
10+
}

0 commit comments

Comments
 (0)