$ ./release.sh patch
To make a new release
# update reacton/_version.py
$ git add -u && git commit -m 'Release v1.9.0' && git tag v1.9.0 && git push upstream master v1.9.0
If a problem happens, and you want to keep the history clean
# do fix
$ git rebase -i HEAD~3
$ git tag v1.9.0 -f && git push upstream master v1.9.0 -f