Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 724 Bytes

RELEASE.md

File metadata and controls

22 lines (19 loc) · 724 Bytes

Release Instructions

  1. Bump version in related files below(mix.exs)
  2. Run tests:
    1. mix test in the root folder
  3. Commit and push code
    1. git commit -m "Version $(mix version)"
    2. git push
  4. Publish packages and docs after pruning any extraneous uncommitted files
    1. mix hex.publish
  5. Test the published version in other project
    1. mix deps.get && mix compile && mix test --cover
  6. Create tag and push
    1. git tag -a "v$(mix version)" -m "Version $(mix version)"
    2. git push origin "v$(mix version)"
  7. Start -dev version in related files below

Files with version