diff --git a/.gitignore b/.gitignore index 57bc8a4..17fef02 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +hexer.config tirerl.d .erlang.mk/ .eunit diff --git a/CHANGELOG.md b/CHANGELOG.md index 61ff808..4cd92cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ **Merged pull requests:** - \[\#40\] Fix for rebar.config dependency \(changed to rustyio/sync\) [\#42](https://github.com/inaka/tirerl/pull/42) ([nazar256](https://github.com/nazar256)) +- Hex Package [\#41](https://github.com/inaka/tirerl/pull/41) ([elbrujohalcon](https://github.com/elbrujohalcon)) - \[Closes \#39\] Update erlang.mk so that dialyzer doesn't fail [\#40](https://github.com/inaka/tirerl/pull/40) ([jfacorro](https://github.com/jfacorro)) - Make sure all uris start with / [\#38](https://github.com/inaka/tirerl/pull/38) ([elbrujohalcon](https://github.com/elbrujohalcon)) - \[\#1\] Fix docstrings to be able to generate erldocs [\#37](https://github.com/inaka/tirerl/pull/37) ([jfacorro](https://github.com/jfacorro)) diff --git a/Makefile b/Makefile index d5d8594..bdda7d5 100644 --- a/Makefile +++ b/Makefile @@ -10,9 +10,9 @@ dep_shotgun = hex 0.1.15 dep_worker_pool = hex 1.0.4 dep_sync = git https://github.com/rustyio/sync.git 475d728a dep_mixer = git https://github.com/inaka/mixer.git 0.1.4 -dep_katana = hex 0.2.18 +dep_katana = hex 0.2.19 dep_inaka_mk = git https://github.com/inaka/inaka.mk.git 1.0.0 -dep_hexer_mk = git https://github.com/inaka/hexer.mk.git 1.0.0 +dep_hexer_mk = git https://github.com/inaka/hexer.mk.git 1.0.2 DEP_PLUGINS = inaka_mk hexer_mk diff --git a/src/tirerl.app.src b/src/tirerl.app.src index 0c38d38..0fc5124 100644 --- a/src/tirerl.app.src +++ b/src/tirerl.app.src @@ -2,7 +2,7 @@ [ {description, "Erlang interface to Elastic Search"}, - {vsn, "0.1.8"}, + {vsn, "0.1.9"}, {applications, [kernel, stdlib, @@ -16,6 +16,6 @@ {maintainers,["Inaka"]}, {licenses,["Apache 2.0"]}, {links,[{"Github","https://github.com/inaka/tirerl"}]}, - {build_tools,["make", "rebar"]} + {build_tools,["erlang.mk", "rebar"]} ] }.