At this point, Horus should be considered Alpha and not production ready. The API will likely evolve and future releases will likely introduce breaking changes. The goal of this release is to make it easy for anyone to try it and possibly give feedback.
What's new in Horus 0.3.2
This release fixes a performance issue where Horus can put too much load on the Erlang code server when the same module is disassembled multiple times concurrently.
See #33.
Download
Horus 0.3.2 is available from Hex.pm: https://hex.pm/packages/horus/0.3.2
Upgrade
Using Rebar:
-
Update your
rebar.config:%% In rebar.config {deps, [{horus, "0.3.2"}]}.
-
Run
rebar3 upgrade horus.
Using Erlang.mk:
-
Update your
Makefile:%% In your Makefile dep_horus = hex 0.3.2 -
Remove the
deps/horusdirectory. The new version will be fetched the next time you build your project.