| Version 69 (modified by jml, 3 years ago) |
|---|
This document is a draft.
jml wrote it, and wants to give it a lot of love very very soon. If you want to edit it before then, consider talking to jml
Outcomes
By the end of a Twisted release we'll have:
- Tarballs for Twisted as a whole, and for each of its subprojects
- Windows installers for the whole Twisted project
- Updated documentation (API, howtos & book) on the twistedmatrix.com site
- Updated download links on the twistedmatrix.com site
- Announcement emails sent to major Python lists
- Announcement post on http://labs.twistedmatrix.com
- A tag in our Subversion repository marking the release
Prerequisites
To release Twisted, you will need:
- Commit privileges to Twisted
- Shell access to cube.twistedmatrix.com
- Write permissions to /srv/www-data/twisted on cube (normally, www-data membership)
- Write permissions to /srv/www-data/website/vhosts/twistedmatrix.com/documents
- Permissions to edit WikiStart
- Channel operator permissions for #twisted
- Admin privileges for Twisted's PyPI packages
- Membership of https://launchpad.net/~twisted-dev
- Contributor status for http://labs.twistedmatrix.com
Version numbers
Twisted releases use a time-based numbering scheme. Releases versions like YY.MM.mm, where YY is the last two digits of the year of the release, MM is the number of the release in the year, and mm is the number of the patch release.
For example:
- The first release of 2010 is 10.0.0
- The second release of 2010 is 10.1.0
- If 10.1.0 has some critical defects, then a patch release would be numbered 10.1.1
- The first pre-release of 10.0.0 is 10.0.0pre1, the second is 10.0.0pre2
Every release of Twisted includes the whole project, the core and all subprojects. Each of these has the same number.
Overview
To release Twisted, we
- Prepare for a release
- Release N prereleases
- Release the final release
Prepare for a release
- Check the milestone for the upcoming release
- Get rid of any non-critical bugs
- Get any critical bugs fixed
- Check for any regressions
- Read through the INSTALL and README files to make sure things like the supported Python versions are correct
- Check the required Python version.
- Check that the list matches the current set of buildbots.
- Any mistakes should be fixed in trunk before making the release branch
- Choose a version number. Remember to include the 'preN' suffix
- File a ticket
- Assign it to the upcoming release milestone
- Assign it to yourself
- Call it "Release <version-number>"
- Make a branch (e.g. mkbranch Twisted releases/release-4290)
How to do a pre-release
- Check buildbot to make sure all supported platforms are green (wait for pending builds if necessary).
- Run ./bin/admin/change-versions XX.YY.ZZpreN
- Commit the changes made by change-versions
- Run ./bin/admin/build-news .
- Commit the changes made by build-news
- Delete the NEWS turds (see #4315)
- Bump copyright dates in LICENSE, twisted/_version.py and trunk/README
- Make a temporary directory for the tarballs to live in (e.g. mkdir /tmp/twisted-release)
- Run ./bin/admin/build-tarballs . /tmp/twisted-release/
- Upload the tarballs to a public website (see #4353)
- Write the pre-release announcement
- Read through the NEWS file and summarize the interesting changes for the release
- Get someone else to look over the announcement before doing it
- Announce the pre-release on
- the twisted-python mailing list
- on IRC in the #twisted topic
- in a blog post, ideally labs.twistedmatrix.com
Pre-release announcment
The pre-release announcement should mention the important changes since the last release, and exhort readers to test this pre-release.
Here's what the 10.0.0pre1 release annoucement ought to have looked like:
Live from PyCon Atlanta, I'm pleased to herald the approaching footsteps of the 10.0 release. Tarballs for the first Twisted 10.0.0 pre-release are now available at: http://people.canonical.com/~jml/Twisted/ Highlights include: * Improved documentation, including "Twisted Web in 60 seconds" * Faster Perspective Broker applications * A new Windows installer that ships without zope.interface * Twisted no longer supports Python 2.3 * Over one hundred closed tickets For more information, see the NEWS file. Please download the tarballs and test them as much as possible. Thanks, jml
How to do a final release
Prepare the branch
- Run ./bin/admin/change-versions XX.YY.ZZ
- Add the quote of the release to the README
- Submit the ticket for review
- When the ticket is reviewed, merge the branch into trunk
- Tag the release
- e.g. svn cp svn+ssh://svn.twistedmatrix.com/svn/Twisted/branches/release-x-4290 svn+ssh://svn.twistedmatrix.com/svn/Twisted/tags/releases/twisted-10.0.0
Cut the tarballs & installers
- Create a new staging area for the release (e.g. mkdir /tmp/twisted-release)
- Run ./bin/admin/build-tarballs . /tmp/twisted-release/
- Build windows installers
- http://buildbot.twistedmatrix.com/builders/winxp32-py2.5-msi/
- http://buildbot.twistedmatrix.com/builders/winxp32-py2.6-msi/
- For "Branch" specify the tag, e.g. "tags/releases/twisted-10.0.0"
- Download the latest .msi and .exe files from from http://buildbot.twistedmatrix.com/builds/, save them in the staging directory
- Sign the tarballs and Windows installers
- e.g. md5sum Tw* | gpg -a --clearsign > twisted-10.0.0-md5sums.txt
- e.g. scp twisted-10.0.0-md5sums.txt cube.twistedmatrix.com:/srv/www-data/twisted/Releases/
- example of the result
Distribute
- Upload to the official upload locations (see #2888)
- e.g. ssh cube.twistedmatrix.com mkdir -m 2775 /srv/www-data/twisted/Releases/{Twisted,Core,Conch,Lore,Mail,Names,Pair,Runner,Web,Words}/10.0
- e.g. scp /tmp/twisted-release/Twisted-10.0.0.tar.bz2 cube:/srv/www-data/twisted/Releases/Twisted/10.0/
- For all subprojects, upload the tarballs to cube:/srv/www-data/twisted/Releases/<Project>/<First two parts of version number>/
- Windows installers (msi and exe) go in the Twisted project
- Update the permissions on cube
- For all new directories, chmod 2775 $DIRECTORY
- For all new files, chmod 664 $FILE
- For all new files and directories, chgrp www-data $FILE_OR_DIR
- e.g. find /srv/www-data/twisted/Releases -name '*10.0.0*' | xargs chmod g+w
- Wait for the tarballs to be mirrored to tmrc
- They are mirrored 15 minutes every hour
- You can ask foom on #twisted to force the mirror
Announce
- Update the WikiStart and Downloads pages
- XXX: Describe this process exactly
- Update website documentation
- See APIDocs
- Get the dependencies
- Twisted (export from tagged release branch)
- Pydoctor
- Nevow
- Epytext
- Run the unofficial build-docs script (see below)
- Update the permissions
- XXX: how?
- cp the documents to /srv/.../documentation/10.0.0
- XXX: full path please
- rm -rf twisted/{vfs,web2} from the export
- Run the unofficial build-api script (see below)
- Move the API docs and update the permissions
- cd /srv/www-data/website/vhosts/twistedmatrix.com/documents
- mv ~exarkun/documentation/twisted-10.0.0/api/ ./10.0.0/
- chown -R www-data.www-data 10.0.0/api/
- Copy the book
- Check the permissions
- XXX: what permissions?
- Test the generated docs
- XXX: what to look for?
- Change the "current" symlink
- XXX: exact commands
- Removing the staging area
- Write the release announcement (see below)
- Update ReleaseRevisions with the revision of this release
- XXX: What revision exactly?
- Announce the release
- Send a text version of the announcement to: twisted-python@…, python-announce-list@…, python-list@…, twisted-web@…, twisted-jabber@…
- Update PyPI records
- XXX: You need to be exarkun to do this
- http://pypi.python.org/pypi/Twisted/
- http://pypi.python.org/pypi/Twisted%20Pair/
- http://pypi.python.org/pypi/Twisted%20Conch/
- http://pypi.python.org/pypi/Twisted%20Core/
- http://pypi.python.org/pypi/Twisted%20Lore/
- http://pypi.python.org/pypi/Twisted%20Mail/
- http://pypi.python.org/pypi/Twisted%20Names/
- http://pypi.python.org/pypi/Twisted%20News/
- http://pypi.python.org/pypi/Twisted%20Runner/
- http://pypi.python.org/pypi/Twisted%20Web/
- http://pypi.python.org/pypi/Twisted%20Words/
- Launchpad; https://launchpad.net/twisted/+announcements
- Include a text version of the announcement and the new entries of the NEWS file
- http://labs.twistedmatrix.com
- Post a web version of the announcements, with links instead of literal URLs
- Twitter, if you feel like it
- #twisted topic on IRC (you'll need ops)
Release announcement
The final release announcement should:
- Mention the version number
- Include links to the release tarballs & Windows installers
- Summarize the significant changes in the release
- Consider including the quote of the release
- Thank the contributors to the release
Here's an example:
On behalf of Twisted Matrix Laboratories, I am honored to announce the release of Twisted 10.0. Highlights include: * Improved documentation, including "Twisted Web in 60 seconds" * Faster Perspective Broker applications * A new Windows installer that ships without zope.interface * Twisted no longer supports Python 2.3 * Over one hundred closed tickets For more information, see the NEWS file. It's stable, backwards compatible, well tested and in every way an improvement. Download it now from: http://tmrc.mit.edu/mirror/twisted/Twisted/10.0/Twisted-10.0.0.tar.bz2 or http://tmrc.mit.edu/mirror/twisted/Twisted/10.0/Twisted-10.0.0.win32-py2.5.msi Many thanks to Jean-Paul Calderone and Chris Armstrong, whose work on release automation tools and answers to numerous questions made this possible. Thanks also to the supporters of the Twisted Software Foundation and to the many contributors for this release. jml
When things go wrong
If you discover a showstopper bug during the release process, you have three options.
- Abort the release, make a new point release (e.g. abort 10.0.0, make 10.0.1 after the bug is fixed)
- Abort the release, make a new pre-release (e.g. abort 10.0.0, make 10.0.0pre3 after the bug is fixed)
- Interrupt the release, fix the bug, then continue with it (e.g. release 10.0.0 with the bug fix)
If you choose the third option, then you should:
- Delete the tag for the release
- Recreate the tag from the release branch once the fix has been applied to that branch
Examples
Build API docs for website
See also APIDocs. See #2891.
from twisted.python._release import APIBuilder from twisted.python.filepath import FilePath APIBuilder().build( 'Twisted', 'http://twistedmatrix.com/', 'http://twistedmatrix.com/trac/browser/tags/releases/twisted-10.0.0/', FilePath('twisted'), FilePath('api'))
Build howto documents for website
See #2380.
from twisted.python import _release as r from twisted.python.filepath import FilePath done = {} for p in FilePath('doc').walk(): if p.basename() == 'man': print 'processing manual pages:', p.path done[p] = True r.ManBuilder().build(p) for p in FilePath('doc').walk(): if p.basename().endswith('.xhtml'): if p.parent() not in done: print 'processing howto pages:', p.parent().path done[p.parent()] = True r.DocBuilder().build( '10.0.0', FilePath('doc/core/howto'), p.parent(), FilePath('doc/core/howto/template.tpl'), 'http://twistedmatrix.com/documents/10.0.0/api/%s.html', False) print 'building book:' for p in done: print ' ', p.path r.BookBuilder().build(FilePath('doc/core/howto'), done.keys(), FilePath('doc/core/howto/book.tex'), FilePath('book.pdf'))
Open questions
- How do we manage the case where there are untested builds in trunk?
- Should picking a release quote be part of the release or the pre-release?
- What bugs should be considered release blockers?
- Ultimately it's the RM's discretion
- Should news fragments contain information about who made the changes?
- Does this document miss anything relevant that ReleaseProcedure includes?
- A thought for future releases: since we'd really like folks to download the prereleases and try them out, perhaps we should put the NEWS file on the web somewhere official, too, so they can see all the cool stuff they can try out?
- XXX: jml doesn't know what this means any more
Bugs mentioned on this page
- Automate uploading tarballs to TMRC
- Automate uploading pre-release tarballs
- Convenience command for removing news fragments
- Automate building & uploading API docs for website
- Automate building & uploading howto docs for website
See also
- release management tickets
- regular-release tickets
- ReleaseAutomation
- Releasing Bazaar -- release documentation for another project that does time-based releases
