Skip to content

Latest commit

 

History

History
39 lines (20 loc) · 808 Bytes

RELEASE.md

File metadata and controls

39 lines (20 loc) · 808 Bytes

To release a new version of spyder-terminal:

  • git fetch upstream && git merge upstream/master

  • Close milestone on Github

  • git clean -xfdi

  • Update CHANGELOG.md with loghub -m <milestone> -u <github-user> spyder-ide/spyder-terminal

  • Update VERSION_INFO in __init__.py (set release version, remove 'dev0')

  • git add and git commit

  • python setup.py clean_components

  • python setup.py build_static

  • python setup.py bdist_wheel --plat-name win_amd64

  • python setup.py bdist_wheel --plat-name win32

  • python setup.py bdist_wheel --universal

  • python setup.py sdist

  • twine check

  • twine upload dist/*

  • git tag -a vX.X.X -m 'comment'

  • Update VERSION_INFO in __init__.py (add 'dev0' and increment minor)

  • git add and git commit

  • git push upstream master

  • git push upstream --tags