Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 468 Bytes

release.md

File metadata and controls

26 lines (16 loc) · 468 Bytes

Fully automated

$ ./release.sh patch

Making an alpha release

$ ./release.sh patch --new-version 1.33.0a1

semi automated

To make a new release

# update solara/__init__.py
$ git add -u && git commit -m 'Release v1.33.0' && git tag v1.33.0 && git push upstream master v1.33.0

If a problem happens, and you want to keep the history clean

# do fix
$ git rebase -i HEAD~3
$ git tag v1.33.0 -f &&  git push upstream master v1.33.0 -f