Skip to content

Latest commit

 

History

History
19 lines (18 loc) · 514 Bytes

RELEASE.md

File metadata and controls

19 lines (18 loc) · 514 Bytes

Releasing a new version

  • Push your changes to origin
  • Document your changes in ~/docs/gui-executor.adoc
  • Run asciidoctor -r asciidoctor-tabs -o index.html gui-executor.adoc
  • Push doc changes to origin
  • Bump the version in __version__.py
  • Push the bumped version
  • Upload to PyPI
    $ pipx run build
    $ pipx run twine upload dist/gui_executor-x.y.z*
    $ git tag x.y.z
    
  • Create a pull request and merge the pull request
  • Push the tags to upstream
    $ git push --tags push-tags