Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 353 Bytes

RELEASING.md

File metadata and controls

15 lines (11 loc) · 353 Bytes

Releasing a new version

Checklist

  • Ensure CHANGELOG.md is up-to-date

  • Ensure working dir is clean

  • Update version in mix.exs

  • Create a commit:

      git commit -a -m "Bump version to 0.X.Y"
      git tag v0.X.Y
      mix test && mix dialyzer --plt && mix dialyzer && mix hex.publish
      git push origin master --tags
    
  • Enjoy!