Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 621 Bytes

RELEASE.md

File metadata and controls

33 lines (24 loc) · 621 Bytes

Steps to Release ScopePlot

These are the steps to take to create a release of the module scope_plot:

  1. Switch to the master branch
git checkout master
  1. Run bump2version

    1. Install bump2version (if needed)
    pip install --user bump2version
    1. Run bump2version with patch, minor, or major.
    bump2version --verbose patch
  2. Update CHANGELOG.md and commit.

git add CHANGELOG.md
  1. Add and commit the changes.
git push && git push --tags
  1. Wait for Travis to test/push.