Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 307 Bytes

File metadata and controls

15 lines (11 loc) · 307 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 hex.publish
    git push origin master --tags
    
  • Enjoy!