Skip to content

Instantly share code, notes, and snippets.

@rob-b
Created October 26, 2013 11:40
Show Gist options
  • Save rob-b/7168506 to your computer and use it in GitHub Desktop.
Save rob-b/7168506 to your computer and use it in GitHub Desktop.
zest.releaser with git-flow
  1. git flow release start x.x.x
  2. prelease to set the correct version number. Not always needed if making a major release. Do not accept offer to commit changes.
  3. Update CHANGES.rst and commit
  4. git flow release finish x.x.x
  5. git checkout x.x.x (replace 'x.x.x' with the name of the git-glow release tag'
  6. If uploading to pypi, release (using twine might be better) else python setup.py sdist
  7. git checkout develop
  8. postrelease to update setup.py and CHANGES.rst with new dev version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment