Changes between Version 7 and Version 8 of ReleaseProcess


Ignore:
Timestamp:
10/07/10 11:56:01 (4 years ago)
Author:
dread
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ReleaseProcess

    v7 v8  
    1 = About Releases = 
     1= About CKAN Releases = 
    22 
    33The 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]. 
     
    55See also: VersioningPolicy 
    66 
    7 = Approaching release - alpha release = 
     7= Approaching CKAN release - alpha release = 
    88 
    99 1. Change the version number to the next version alpha in ckan/__init__.py e.g. 1.2a 
     
    5252}}} 
    5353 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] 
     68index-servers = 
     69  pypi 
     70 
     71[pypi] 
     72#repository: http://www.python.org/pypi 
     73username: joebloggs 
     74password: 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]]