-
Notifications
You must be signed in to change notification settings - Fork 8
Creating a New Release
brownhead edited this page Jan 9, 2013
·
5 revisions
Hopefully, soon, this will be automated.
- Change the version number inside of
setup.py
- Change the version number inside of
galah/base/config.py
- Update any changes inside of
CHANGES.md
- Commit any changes
- Tag the commit as the new version number (see here).
git tag -a vTHEVERSION -m "Super short description."
- Update the
latest-release
tag to point at the new commit.git tag -d latest-release; git tag -a latest-release -m "Will always point to the latest release."
- Push everything.
git push origin HEAD; git push --tags origin HEAD
- Update pip by running
python setup.py sdist upload
(if you get an authentication failure you need to create a.pypirc
in your home directory with your credentials)
General
- Home
- User Guide (for admins and teachers)
- Comparison to Similar Software
- Goals and Ideals
- Credits and Contributers
Administration
Development