* Tag the current state of the repository using git. Make sure that the release version number starts with 'v', eg:
bash
git tag -a v0.2 -m "Release Version 0.2"
* Push the commit and the tag to Github:
bash
git push origin
git push origin v0.2
* Publish the release to PyPI (see [here](https://python-poetry.org/docs/cli/#publish)):
bash
poetry publish --build