Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 300 Bytes

RELEASEME.md

File metadata and controls

15 lines (13 loc) · 300 Bytes

How to release a new version

  • Ensure working dir is clean
  • Make sure tests pass with mix test
  • Update version in mix.exs
  • Update CHANGELOG.md
  • Create a commit:
  git commit -a -m "Bump version to 0.X.Y"
  git tag v0.X.Y
  mix hex.user auth
  mix hex.publish
  git push --tags