Skip to content

Commit 6eafbe3

Browse files
Prepare the lib to be published in Hex.pm (#37)
* Prepare the lib to be published in Hex.pm * Even further * Even further
1 parent e8f0ebc commit 6eafbe3

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

rebar.config

+5-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@
3232
deprecated_function_calls,
3333
deprecated_functions]}.
3434

35-
{alias, [{test, [format, lint, hank, xref, dialyzer, eunit]}]}.
35+
{alias, [{test, [format, lint, hank, xref, dialyzer, eunit, edoc]}]}.
3636

3737
{project_plugins,
38-
[{rebar3_format, "~> 1.2.1"}, {rebar3_lint, "~> 2.0.1"}, {rebar3_hank, "~> 1.3.0"}]}.
38+
[{rebar3_hex, "~> 7.0.4"},
39+
{rebar3_format, "~> 1.2.1"},
40+
{rebar3_lint, "~> 2.0.1"},
41+
{rebar3_hank, "~> 1.3.0"}]}.

src/zstd.app.src

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{application,
22
zstd,
33
[{description, "Zstd binding for Erlang/Elixir"},
4-
{vsn, "0.3.0"},
4+
{vsn, git},
55
{registered, []},
66
{applications, [kernel, stdlib]},
77
{env, []},
88
{modules, []},
9-
{maintainers, ["Yuki Ito"]},
9+
{maintainers, ["Yuki Ito", "NextRoll"]},
10+
{pkg_name, nextroll_zstd},
1011
{licenses, ["BSD"]},
11-
{links, [{"GitHub", "https://github.com/mururu/zstd-erlang"}]}]}.
12+
{links, [{"GitHub", "https://github.com/AdRoll/zstd-erlang"}]}]}.

0 commit comments

Comments
 (0)