Version 11 (modified by dread, 3 years ago) (diff) |
---|
About CKAN Releases
The OKF aims to make releases CKAN regularly - minor points every two months. Find releases at: PyPI. See the changes at on the Changelog.
See also: VersioningPolicy
Approaching CKAN release - alpha release
- Change the version number to the next version alpha in ckan/init.py e.g. 1.2a
- Commit and push this change.
- Bring metastable branch in line with default:
$ hg up -C metastable $ hg merge -r default $ nosetests ckan/tests $ hg ci -m '[merge] from release 1.1a.' $ hg push
Doing a CKAN release
- Test the code satisfactorily.
- Summarise the tickets going in this release in the ckan/doc/CHANGELOG.rst
- Remove the pre-release letter in the version number in ckan/init.py e.g. 1.1c -> 1.1
- Commit this change.
- Compile the docs:
$ python setup.py build_sphinx
- Upload docs to knowledgeforge.
- Tag the repo with the version number (commits change). (add -f to the tag if you want to overwrite a previous tag with this release) e.g.
$ hg tag ckan-1.1 -m 'Release 1.1' $ hg push
- Upload the release to PyPI (If you make a mistake, you can always go into PyPI, remove the release file and then reupload it.)
python setup.py sdist upload
- Bring metastable branch in line with default:
$ hg up -C metastable $ hg merge -r default $ nosetests ckan/tests $ hg ci -m '[merge] from release 1.1.' $ hg push
- Merge the release to the bitbucket i18n repo and recreate the pot:
???
- If there have been any unreleased changes to vdm, make sure you release that too.
ckanclient releases
- Increase version number in ckanclient/init.py
- Add a changelog for this new version in ckanclient/init.py
- Check-in the changes
- Tag the version:
$ hg tag "ckanclient-v0.5"
- Create a PYPI config file (~/.pypirc) if necessary:
[distutils] index-servers = pypi [pypi] #repository: http://www.python.org/pypi username: joebloggs password: mypassword
- Produce the distribution and upload to PYPI
$ python setup.py sdist upload
- See the upload here: http://www.python.org/pypi/ckanclient
- Check that the setup.py for various branches of CKAN have the new version in their range (as appropriate).
- Check that the various pip-requirements.txt files also match the new version (as appropriate).
vdm releases
- Increase version number in vdm/init.py
- Add a changelog for this new version in vdm/CHANGELOG.txt
- Check-in the changes
- Tag the version:
$ hg tag "vdm-0.8"
- Create a PYPI config file (~/.pypirc) if necessary:
[distutils] index-servers = pypi [pypi] #repository: http://www.python.org/pypi username: joebloggs password: mypassword
- Produce the distribution and upload to PYPI
$ python setup.py sdist upload
- See the upload here: http://www.python.org/pypi/vdm
- Check that the setup.py for various branches of CKAN have the new version in their range (as appropriate).
- Check that the various pip-requirements.txt files also match the new version (as appropriate).