Changes between Version 7 and Version 8 of ReleaseProcess
- Timestamp:
- 10/07/10 11:56:01 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ReleaseProcess
v7 v8 1 = About Releases =1 = About CKAN Releases = 2 2 3 3 The OKF aims to make releases CKAN regularly - minor points every two months. Find releases at: [http://pypi.python.org/pypi/ckan PyPI]. See the changes at on the [http://knowledgeforge.net/ckan/doc/ckan/CHANGELOG.html Changelog]. … … 5 5 See also: VersioningPolicy 6 6 7 = Approaching release - alpha release =7 = Approaching CKAN release - alpha release = 8 8 9 9 1. Change the version number to the next version alpha in ckan/__init__.py e.g. 1.2a … … 52 52 }}} 53 53 1. If there have been any unreleased changes to vdm, make sure you release that too. 54 55 56 = ckanclient releases = 57 58 1. Increase version number in ckanclient/__init__.py 59 1. Add a changelog for this new version in ckanclient/__init__.py 60 1. Check-in the changes 61 1. Tag the version: 62 {{{ 63 $ hg tag "ckanclient=v0.5" 64 }}} 65 1. Create a PYPI config file (~/.pypirc) if necessary: 66 {{{ 67 [distutils] 68 index-servers = 69 pypi 70 71 [pypi] 72 #repository: http://www.python.org/pypi 73 username: joebloggs 74 password: mypassword 75 }}} 76 1. Produce the distribution and upload to PYPI 77 {{{ 78 $ python setup.py sdist upload 79 }}} 80 1. See the upload here: [[http://www.python.org/pypi/ckanclient]]