Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 499 Bytes

release.rst

File metadata and controls

30 lines (18 loc) · 499 Bytes

Flowbber Release

  1. Edit version:

    nano .cookiecutter.json lib/flowbber/__init__.py
    
  2. Update changelog in README.rst:

    git log > the.log
    nano README.rst
    
  3. Commit, tag:

    git commit -a
        chg: dev: Bumping version number to x.y.z.
    git tag x.y.z
    
  4. Build wheel package:

    tox -e build
    
  5. Push new revision and tag:

    git push
    git push --tags
    
  6. Upload to PyPI:

    twine upload --username kuralabs dist/flowbber-x.y.z-py3-none-any.whl