Skip to content

Commit a674759

Browse files
committed
Prepare release
1 parent 8f1887e commit a674759

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

mix.exs

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,21 @@ defmodule LoggerBinary.MixProject do
77
version: "0.1.0",
88
elixir: "~> 1.12",
99
start_permanent: Mix.env() == :prod,
10-
deps: deps()
10+
deps: deps(),
11+
description: "A custom Logger formatter for handling binary data.",
12+
package: package(),
13+
docs: docs()
1114
]
1215
end
1316

17+
defp package do
18+
[licenses: ["MIT"], links: %{"GitHub" => "https://github.com/tagbase-io/logger-binary"}]
19+
end
20+
21+
defp docs do
22+
[main: "LoggerBinary"]
23+
end
24+
1425
# Run "mix help compile.app" to learn about applications.
1526
def application do
1627
[

0 commit comments

Comments
 (0)