Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time

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!