Skip to content

Horus 0.2.1

Choose a tag to compare

@dumbbell dumbbell released this 30 Mar 14:41
· 82 commits to main since this release
v0.2.1
d91d8d5

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:

  1. Update your rebar.config:

    %% In rebar.config
    {deps, [{horus, "0.2.1"}]}.
  2. Run rebar3 upgrade horus.

Using Erlang.mk:

  1. Update your Makefile:

    %% In your Makefile
    dep_horus = hex 0.2.1
  2. Remove the deps/horus directory. The new version will be fetched the next time you build your project.

Documentation

The documentation for Horus 0.2.1 is available on Hex.pm.