Skip to content

0.5.1 Release Notes

Choose a tag to compare

@oubiwann oubiwann released this 22 Oct 07:17
· 0 commits to release/0.4.x since this release

rebar3_lfe 0.5.1 - Maintenance Release

Minor cleanup and maintenance updates following the 0.5.0 major release.

πŸ”§ Changes

Templates Improved

  • App.src templates: Changed version from git to "0.1.0" for better default versioning
    • New projects now start with explicit version numbers
    • More intuitive for developers new to Erlang/LFE ecosystem

Documentation Cleanup

  • README: Simplified title to "rebar3_lfe"
  • Removed coverage badge (temporarily unavailable)

Build & Test Updates

  • Makefile: Streamlined test targets for better consistency
    • Template tests now use rebar3 compile instead of rebar3 lfe compile
    • Ensures generated projects work correctly with default rebar3 workflows
    • Removed deprecated test-clean-build-cmd target

πŸ“Š Statistics

  • 4 commits since 0.5.0
  • 5 files changed: 8 insertions(+), 15 deletions(-)
  • Changes focused on templates, documentation, and build tooling

πŸ“¦ Installation

%% rebar.config
{plugins, [
    {rebar3_lfe, "0.5.1"}
]}.

{deps, [
    {lfe, "2.2.0"}
]}.

⬆️ Upgrade from 0.5.0

This is a patch release with no breaking changes. Simply update the version number in your rebar.config:

%% Change from:
{plugins, [{rebar3_lfe, "0.5.0"}]}.

%% To:
{plugins, [{rebar3_lfe, "0.5.1"}]}.

Then run:

rebar3 update
rebar3 lfe compile

πŸ”— Links


Full Changelog: 0.5.0...0.5.1