Horus 0.2.1
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.2.1
This release focuses on bug fixes.
Fix ?IS_HORUS_STANDALONE_FUN() macro
The ?IS_HORUS_STANDALONE_FUN() macro was not updated after the change to the #horus_fun{} record in #5. Horus and any consumer would compiler just fine, but the macro would return the wrong result.
This is fixed by #8. A testcase was added to prevent this from happening again.
Download
Horus 0.2.1 is available from Hex.pm: https://hex.pm/packages/horus/0.2.1
Upgrade
Using Rebar:
-
Update your
rebar.config:%% In rebar.config {deps, [{horus, "0.2.1"}]}.
-
Run
rebar3 upgrade horus.
Using Erlang.mk:
-
Update your
Makefile:%% In your Makefile dep_horus = hex 0.2.1 -
Remove the
deps/horusdirectory. The new version will be fetched the next time you build your project.