Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 248 Bytes

HOW_TO_RELEASE.md

File metadata and controls

12 lines (11 loc) · 248 Bytes

How to release a new tool version

Checklist

  • 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 --tags