Differences between revisions 2 and 20 (spanning 18 versions)
Revision 2 as of 2007-06-26 00:09:54
Size: 1101
Comment:
Revision 20 as of 2009-05-26 19:31:01
Size: 2163
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
These are just some rough notes on the steps I take to release Jython. ## page was renamed from JythonDeveloperGuide/HowToReleaseJython
These are just some rough notes on the steps needed to make a full release of Jython. I generally run ant full-build as a test beforehand, as well as testing many of these steps throughout, but since that isn't strictly necessary I'm not including it here. full-build requires all of the optional jars for the build be available and named in ant.properties. See build.xml for more information.
Line 4: Line 5:
  1. PySystemState.java
  1. build.xml
  1. build.xml - <property name="jython.version">. Also version.noplus, jython.major_version, jython.minor_version, jython.micro_version, and jython.release_serial.
  1. imp.java - If there has been any compiler change, increment magic number APIVersion.
Line 8: Line 9:
 1. Copy trunk and installer to a tag
  1. make svn tag dir
  1. svn cp trunk/jython into tag dir
  1. svn cp trunk/installer into tag dir
 1. Run regrtest and the bugtests
 1. Copy maint to a tag
  1. svn cp https://jython.svn.sourceforge.net/svnroot/jython/branches/Release_2_2maint https://jython.svn.sourceforge.net/svnroot/jython/tags/Release_2_2_1
Line 13: Line 13:
  1. svn co tag release_checkout
 1. cp ant.properties into release_checkout/jython
  1. ant full-build in release_checkout/jython
  1. set svn.main.dir to tags/Release_2_2_1 in ant.properties
  1. ant full-build
Line 20: Line 19:
  1. ftp the built installer as on http://sourceforge.net/docman/display_doc.php?docid=6445&group_id=1#upload   1. upload the built installer https://frs.sourceforge.net/webupload as documented on http://apps.sourceforge.net/trac/sitedocs/wiki/Release%20files%20for%20download
Line 22: Line 21:
 1. update site   1. also update the Source``Forge News page (announcement can be added in Admin/News/Submit)
 1. update files in the website that reference the current release
  1. constants.txt
Line 24: Line 25:
  1. download.txt
  1. index.txt
1. installation.txt
  1. userfaq.txt
  1. download.txt - checksums
  1. index.txt - version number
  1. userfaq.txt - current status
Line 30: Line 30:
  1. scp dist/jython-2.2-rc1-bundle.jar shell.sf.net:/   1. scp dist/jython-2.2-rc1-bundle.jar shell.sf.net:/home/groups/j/jy/jython/htdocs
  1. File a jira issue for the upload as described in "Posting the request" on http://maven.apache.org/guides/mini/guide-central-repository-upload.html

These are just some rough notes on the steps needed to make a full release of Jython. I generally run ant full-build as a test beforehand, as well as testing many of these steps throughout, but since that isn't strictly necessary I'm not including it here. full-build requires all of the optional jars for the build be available and named in ant.properties. See build.xml for more information.

  1. Update files in trunk that have information on the current version
    1. build.xml - <property name="jython.version">. Also version.noplus, jython.major_version, jython.minor_version, jython.micro_version, and jython.release_serial.

    2. imp.java - If there has been any compiler change, increment magic number APIVersion.
    3. NEWS
    4. README
  2. Run regrtest and the bugtests
  3. Copy maint to a tag
    1. svn cp https://jython.svn.sourceforge.net/svnroot/jython/branches/Release_2_2maint https://jython.svn.sourceforge.net/svnroot/jython/tags/Release_2_2_1

  4. build from tag
    1. set svn.main.dir to tags/Release_2_2_1 in ant.properties
    2. ant full-build
  5. upload installer
    1. go to Admin/File Release on sourceforge
    2. Click on Add release next to the jython package
    3. create with a name in line with the version like 2.2rc1
    4. upload the built installer https://frs.sourceforge.net/webupload as documented on http://apps.sourceforge.net/trac/sitedocs/wiki/Release%20files%20for%20download

    5. associate the uploaded file with the new release
    6. also update the SourceForge News page (announcement can be added in Admin/News/Submit)

  6. update files in the website that reference the current release
    1. constants.txt
    2. news.txt
    3. download.txt - checksums
    4. index.txt - version number
    5. userfaq.txt - current status
  7. upload maven package
    1. ant -Dproject.version=2.2-rc1 in jython/maven
    2. scp dist/jython-2.2-rc1-bundle.jar shell.sf.net:/home/groups/j/jy/jython/htdocs
    3. File a jira issue for the upload as described in "Posting the request" on http://maven.apache.org/guides/mini/guide-central-repository-upload.html

HowToReleaseJython (last edited 2010-10-20 05:57:29 by Oti)