Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 380 Bytes

RELEASING.md

File metadata and controls

16 lines (12 loc) · 380 Bytes

Releasing a new version

Checklist

  • Ensure CHANGELOG.md is up-to-date

  • Ensure working dir is clean

  • Update version requirement in README.md

  • 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 --warnings-as-errors && mix hex.publish
      git push origin master --tags
    
  • Enjoy!