Release ProcessΒΆ

  1. Increment version number in cloudbridge/__init__.py as per `semver rules <https://semver.org/>_.
  2. Freeze all library dependencies in setup.py. The version numbers can be a range with the upper limit being the latest known working version, and the lowest being the last known working version.
  3. Run all tox tests.
  4. Add release notes to CHANGELOG.rst. Also add last commit hash to changelog. List of commits can be obtained using git shortlog <last release hash>..HEAD
  5. Release to PyPi
python setup.py sdist upload
python setup.py bdist_wheel upload
  1. Tag release and make GitHub release.