Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 390 Bytes

File metadata and controls

19 lines (14 loc) · 390 Bytes

fully automated

$ ./release.sh 0.17.1

semi automated

To make a new release

# update reacton/_version.py
$ git add -u && git commit -m 'Release v0.17.1' && git tag v0.17.1 && git push upstream master v0.17.1

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

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