Skip to content

Latest commit

 

History

History
20 lines (19 loc) · 534 Bytes

File metadata and controls

20 lines (19 loc) · 534 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 and pyproject.toml
  • Push the bumped version
  • Upload to PyPI
    $ rm -r dist
    $ uv build
    $ uv publish --token $UV_PUBLISH_TOKEN
    $ git tag v#.#.#
    
  • Create a pull request and merge the pull request
  • Push the tags to upstream
    $ git push upstream v#.#.#