Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.31 KB

release-procedure.md

File metadata and controls

32 lines (22 loc) · 1.31 KB
git tag -a x.x.x -m 'Version x.x.x'
git push python-semver master --tags

or using GitHub web interface available at https://github.com/k-bx/python-semver/releases

  • Upload to PyPI
git clean -xfd
python setup.py register sdist bdist_wheel --universal
twine upload dist/*