Changes between Version 5 and Version 6 of ReleaseProcess


Ignore:
Timestamp:
08/10/10 16:51:26 (4 years ago)
Author:
dread
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ReleaseProcess

    v5 v6  
    1414}}} 
    1515 1. Upload docs to knowledgeforge. 
    16  1. Tag the repo with the version number (commits change). e.g. 
     16 1. 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. 
    1717{{{ 
    1818$ hg tag ckan-1.1 -m 'Release 1.1' 
    1919$ hg push 
    2020}}}  
    21 (add -f to the tag if you want to overwrite a previous tag with this release) 
    22  1. Upload the release to PyPI:  
     21 1. Upload the release to PyPI (If you make a mistake, you can always go into PyPI, remove the release file and then reupload it.)  
    2322{{{ 
    2423python setup.py sdist upload 
    2524}}} 
    26 (If you make a mistake, you can always go into PyPI, remove the release file and then reupload it.) 
     25 1. Change the version number to the next version alpha in ckan/__init__.py e.g. 1.2a 
     26 1. Commit and push this change. 
    2727 1. Bring metastable branch in line with default:  
    2828{{{ 
    29 $ hg -C metastable 
     29$ hg up -C metastable 
    3030$ hg merge -r default 
    3131$ nosetests ckan/tests 
    32 $ hg ci -m '[merge] from release 1.1' 
     32$ hg ci -m '[merge] from release 1.1.' 
     33$ hg push 
     34$ hg up -C default 
     35$ hg merge -r metastable 
     36$ hg ci -m '[merge] from metastable.' 
    3337$ hg push 
    3438}}} 
    35  1. Change the version number to the next version alpha in ckan/__init__.py e.g. 1.2a 
    36  1. Commit and push this change. 
    3739 1. Merge the release to the bitbucket i18n repo and recreate the pot: 
    3840{{{ 
    3941??? 
    4042}}} 
    41   
    42 If there have been any unreleased changes to vdm, make sure you release that too. 
     43 1. If there have been any unreleased changes to vdm, make sure you release that too.