Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 283 Bytes

RELEASING.md

File metadata and controls

14 lines (11 loc) · 283 Bytes

Releasing a new version

Checklist

  • Run mix test

  • Ensure CHANGELOG.md is up to date

  • Update version in mix.exs

  • Create a commit:

    git add .
    git commit -m "Bump version to 0.0.1"
    git tag v0.0.1
    mix hex.publish
    git push origin master --tags