Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 439 Bytes

File metadata and controls

23 lines (16 loc) · 439 Bytes

Developer README

Releasing

Releases are published automatically when a tag is pushed to GitHub.

  # Set next version number
  export RELEASE=x.x.x

  # Ensure committing everything (optional)
  git add -A

  # Create tags
  git commit --allow-empty -m "Release $RELEASE"
  git tag -a $RELEASE -m "Version $RELEASE"

  # Push
  git push --follow-tags