|
Revision 390, 1.1 kB
(checked in by ged, 3 years ago)
|
|
let's try to avoid a messed-up release like 0.6
|
| Line | |
|---|
| 1 | How to make a release: |
|---|
| 2 | |
|---|
| 3 | - svn up |
|---|
| 4 | - change version in CHANGES, add release date and link to upgrade notes if any |
|---|
| 5 | - change version in __version__ (elixir/__init__.py) |
|---|
| 6 | - change version in setup.py |
|---|
| 7 | - change version in setup.cfg (trac link) |
|---|
| 8 | - commit |
|---|
| 9 | |
|---|
| 10 | - add version to the trac, mark milestone as completed |
|---|
| 11 | |
|---|
| 12 | - make tag in subversion |
|---|
| 13 | "svn copy http://elixir.ematia.de/svn/elixir/trunk |
|---|
| 14 | http://elixir.ematia.de/svn/elixir/tags/%s" % version |
|---|
| 15 | |
|---|
| 16 | - build tar.gz, egg for 2.4 and 2.5 and send them to pypi. |
|---|
| 17 | On my system (Unbuntu gutsy): |
|---|
| 18 | python2.4 setup.py egg_info -RDb "" register bdist_egg upload |
|---|
| 19 | python2.5 setup.py egg_info -RDb "" sdist bdist_egg upload |
|---|
| 20 | |
|---|
| 21 | or, you could also set an alias up like this: |
|---|
| 22 | python setup.py alias -u release egg_info -RDb "" |
|---|
| 23 | |
|---|
| 24 | On older systems, you might need to upload the files manually to Pypi. |
|---|
| 25 | |
|---|
| 26 | - announce release on our news page (link to CHANGES) |
|---|
| 27 | |
|---|
| 28 | - announce release on those lists: |
|---|
| 29 | - Elixir <sqlelixir@googlegroups.com> |
|---|
| 30 | - SQLAlchemy <sqlalchemy@googlegroups.com> |
|---|
| 31 | - TurboGears <turbogears@googlegroups.com> |
|---|
| 32 | - Python announce <python-announce-list@python.org> |
|---|
| 33 | |
|---|
| 34 | - announce it on freshmeat |
|---|