Skip to content

v1.4.1

Choose a tag to compare

@novaugust novaugust released this 26 Mar 16:27
· 91 commits to main since this release

Improvements

  • to_timeout/1 rewrites to use the next largest unit in some simple instances

    # before
    to_timeout(second: 60 * m)
    to_timeout(day: 7)
    # after
    to_timeout(minute: m)
    to_timeout(week: 1)

Fixes

  • fixed styler raising when encountering invalid function definition ast