Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 534 Bytes

README-developers.md

File metadata and controls

21 lines (15 loc) · 534 Bytes

Release instructions

  • Note: pandoc must be installed before this works. You can install with brew or apt-get or yum.

This section is only relevant for project maintainers. To create a new release, do the following:

  1. Bump the __version__ in ontobio/__init__.py.

  2. Run the following commands:

TAG=v`python setup.py --version`
git add ontobio/__init__.py
git commit --message="Upgrade to $TAG"
git push
git tag --annotate $TAG --message="Upgrade to $TAG"
git push --tags