Skip to content

Commit

Permalink
Version bump to v0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
cabol committed Jul 16, 2023
1 parent 910955c commit 6f21c43
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ edoc
priv/*.so
*.crashdump
*_plt
doc
23 changes: 23 additions & 0 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@

{deps, []}.

%% == EDoc ==

{edoc_opts, []}.

%% == Plugins ==

{project_plugins, [rebar3_ex_doc]}.

%% == Pre/Post Shell Hooks ==

%% Running shell commands before or after a given rebar3 command
Expand Down Expand Up @@ -56,3 +64,18 @@
{base_plt_location, "."},
{base_plt_prefix, "jchash"}
]}.

%% == Docs ==

{hex, [
{doc, #{provider => ex_doc}}
]}.

{ex_doc, [
{source_url, <<"https://github.com/cabol/jchash">>},
{extras, [
<<"README.md">>,
<<"LICENSE">>
]},
{main, <<"readme">>}
]}.
3 changes: 2 additions & 1 deletion src/jchash.app.src
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{application, jchash, [
{description, "Jump Consistent Hash NIF library for Erlang/Elixir."},
{vsn, "0.1.3"},
{vsn, "0.1.4"},
{registered, []},
{applications, [kernel, stdlib]},
{env,[]},
{modules, []},
{licenses, ["MIT"]},
{build_tools, ["rebar3"]},
{doc, "doc"},
{links, [
{"GitHub", "https://github.com/cabol/jchash"}
]}
Expand Down

0 comments on commit 6f21c43

Please sign in to comment.