Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 387 Bytes

RELEASE.md

File metadata and controls

17 lines (13 loc) · 387 Bytes

Creating a release

Update release date and version in changelog.md and commit.

Then tag the new release: git tag v0.4.0 -a <enter something like "Release v0.4.0"> git push origin v0.4.0

Upload new release to pypi: rm dist/* python -m build twine upload dist/gstat_exporter*

Back to development:

  • Update changelog again, commit and push.