- Commit all other changes
- Update the version string in both places:
- motifapi/init.py (version = '0.2.X')
- setup.py (version='0.2.X')
- Commit the version change: git commit -am "0.2.X"
- Create a tag: git tag -a v0.2.X -m "0.2.X"
- Push the commit and tag together: git push origin master --tags --atomic
The CI workflow builds an sdist+wheel and publishes to PyPI on any tag push matching v*. Deb packages are also built for matching tags.