4 release_managers_guide - Releasing a new version of perl 5.x
6 XXX as of Jul 2009, this file is still a work-in-progress. I think it
7 contains all the actions needed to build a release, but things may have
8 got skipped, and some things could do with polishing. Note that things
9 change each release, there may be new things not covered here, or
10 tools may need updating. DAPM
14 This document describes the series of tasks required - some automatic, some
15 manual - to produce a perl release of some description, be that a snaphot,
16 release candidate, or final release.
18 The release process is primarily executed by the current pumpking.
20 This document both helps as a check-list for the pumpking and is
21 a base for ideas on how the various tasks could be automated or
24 The outline of a typical release cycle is as follows:
26 (5.10.1 is released, and post-release actions have been done)
30 an occasional snapshot is released, that still identifies itself as
35 a few weeks before the release, a number of steps are performed,
36 including bumping the version to 5.10.2
38 ...a few weeks passes...
40 perl-5.10.2-RC1 is released
42 perl-5.10.2 is released
44 post-release actions are performed, including creating new
47 ... the cycle continues ...
52 =head2 Building a snapshot
54 A snapshot is intended to encourage in-depth testing from time-to-time,
55 for example after a key point in the stabilisation of a branch. It
56 requires less steps than a full release, and the version number of perl in
57 the tarball will usually still be the old one.
63 As there are no regular smokes [ XXX yet - please fix?] find out about the
64 state of VMS. If it's bad, think again.
68 Configure and build perl so that you have a Makefile and porting tools:
70 $ ./Configure -Dusedevel -des
80 Commit META.yml if it has changed:
82 $ git commit -m 'Updating META.yml in preparation for release of 5.x.y' META.yml
86 Check that the manifest is sorted and correct:
90 $ perl Porting/manicheck
93 Commit MANIFEST if it has changed:
95 $ git commit -m 'Updating MANIFEST in preparation for release of 5.x.y' MANIFEST
101 If this is a release candidate or final release, add an entry to
102 F<pod/perlhist.pod> with the current date, e.g.
104 5.8.9-RC1 2008-Nov-10
106 Make sure the correct pumpking is listed, and if this is your first time,
107 append your name to C<THE KEEPERS OF THE PUMPKIN>.
111 Build perl, then make sure it passes its own test suite, and installs.
113 $ ./Configure -des -Dusedevel -Dprefix=/tmp/perl-5.x.y-pretest
118 Create a tarball. Use the C<-s> option to specify a suitable suffix for
119 the tarball and directory name:
121 $ cd root/of/perl/tree
123 $ git clean -xdf # make sure perl and git agree on files
125 $ perl Porting/makerel -b -s `git describe` # for a snapshot
126 $ perl Porting/makerel -b -s RC1 # for a release candidate
127 $ perl Porting/makerel -b # for a final release
129 This creates the directory F<../perl-x.y.z-RC1> or similar, copies all
130 the MANIFEST files into it, sets the correct permissions on them,
131 adds DOS line endings to some, then tars it up as
132 F<../perl-x.y.z-RC1.tar.gz>. With C<-b>, it also creates a C<tar.bz2> file.
134 XXX if we go for extra tags and branches stuff, then add the extra details
139 Copy the tarballs (.gz and possibly .bz2) to a web server somewhere you
144 Download the tarball to some other machine. For a release candidate,
145 you really want to test your tarball on two or more different platforms
146 and architectures. The #p5p IRC channel on irc.perl.org is a good place
147 to find willing victims.
151 Check that C<./Configure -des && make all test> works on each test
156 Check that C<./Configure ... && make all test_harness install> works.
160 Check that the output of C<perl -v> and C<perl -V> are as expected,
161 especially as regards version numbers, patch and/or RC levels, and @INC
164 Note that the results may be different without a F<.git/> directory,
165 which is why you should test from the tarball.
169 Bootstrap the CPAN client on the clean install.
175 perl -MCPAN -e'install Inline'
177 Check that your perl can run this:
179 perl -lwe 'use Inline C => "int answer() { return 42;} "; print answer'
183 Bootstrap the CPANPLUS client.
187 Install an XS module.
191 If all is well, announce the snapshot to p5p. (For a release candidate,
192 instead follow the further steps described later.)
196 =head2 Actions prior to the first release candidate
198 A week or two before the first release candidate, there are some additional
199 tasks you should perform (actually, some of these should be done regularly
200 anyway, but they definitely need doing now):
206 Check F<Maintainers.pl> for consistency; both these commands should
209 perl Porting/Maintainers --checkmani
210 perl Porting/Maintainers --checkmani lib/ ext/
214 Ensure that dual-life CPAN modules are synchronised with CPAN. Basically,
217 ./perl -Ilib Porting/core-cpan-diff -a -o /tmp/corediffs
219 to see any inconsistencies between the core and CPAN versions of distros,
220 then fix the core, or cajole CPAN authors as appropriate. See also the
221 C<-d> and C<-v> options for more detail. You'll probably want to use the
222 C<-c cachedir> option to avoid repeated CPAN downloads.
224 To see which core distro versions differ from the current CPAN versions:
226 ./perl -Ilib Porting/core-cpan-diff -x -a
228 if you are making a maint release, run C<core-cpan-diff> on both blead and
229 maint, then diff the two outputs. Compare this with what you expect, and if
230 necessary, fix things up. For example, you might think that both blead
231 and maint are synchronised with a particular CPAN module, but one might
232 have some extra changes.
236 Ensure dual-life CPAN modules are stable, which comes down to:
238 for each module that fails its regression tests on $current
239 did it fail identically on $previous?
240 if yes, "SEP" (Somebody Else's Problem)
241 else work out why it failed (a bisect is useful for this)
243 attempt to group failure causes
245 for each failure cause
246 is that a regression?
247 if yes, figure out how to fix it
248 (more code? revert the code that broke it)
250 (presumably) it's relying on something un-or-under-documented
251 should the existing behaviour stay?
252 yes - goto "regression"
253 no - note it in perldelta as a significant bugfix
254 (also, try to inform the module's author)
258 Similarly, monitor the smoking of core tests, and try to fix.
262 Similarly, monitor the smoking of perl for compiler warnings, and try to
267 Run F<Porting/cmpVERSION.pl> to compare the current source tree with the
268 previous version to check for for modules that have identical version
269 numbers but different contents, e.g.:
271 $ cd ~/some-perl-root
272 $ ./perl -Ilib Porting/cmpVERSION.pl -xd ~/my_perl-tarballs/perl-5.10.0 .
274 then bump the version numbers of any non-dual-life modules that have
275 changed since the previous release, but which still have the old version
276 number. If there is more than one maintenance branch (e.g. 5.8.x, 5.10.x),
277 then compare against both.
279 Note that some of the files listed may be generated (e.g. copied from ext/
280 to lib/, or a script like lib/lib_pm.PL is run to produce lib/lib.pm);
281 make sure you edit the correct file!
283 Once all version numbers have been bumped, re-run the checks.
285 Then run again without the -x option, to check that dual-life modules are
291 Get perldelta in a mostly finished state.
292 Peruse F<Porting/how_to_write_a_perldelta.pod>, and try to make sure that
293 every section it lists is, if necessary, populated and complete. Copy
294 edit the whole document.
298 Bump the perl version number (e.g. from 5.10.0 to 5.10.1).
300 There is a tool to semi-automate this process. It works in two stages.
301 First, it generates a list of suggested changes, which you review and
302 edit; then you feed this list back and it applies the edits. So, first
303 scan the source dir looking for likely candidates:
305 $ Porting/bump-perl-version -s 5.10.0 5.10.1 > /tmp/scan
307 This produces a file containing a list of suggested edits, eg:
311 89: -MODULE_DESC = "Perl 5.10.0 for NetWare"
312 +MODULE_DESC = "Perl 5.10.1 for NetWare"
314 i.e. in the file F<NetWare/Makefile>, line 89 would be changed as shown.
315 Review the file carefully, and delete any -/+ line pairs that you don't
316 want changing. Remember that this tool is largely just grepping for '5.10.0'
317 or whatever, so it will generate false positives. Be careful not change
318 text like "this was fixed in 5.10.0"! Then run:
320 $ Porting/bump-perl-version -u < /tmp/scan
322 which will update all the files shown; then commit the changes.
324 Be particularly careful with F<INSTALL>, which contains a mixture of
325 C<5.10.0>-type strings, some of which need bumping on every release, and
326 some of which need to be left. Also note that this tool currently only
327 performs a single change per line, so in particular, this line in
328 README.vms needs special handling:
330 rename perl-5^.10^.1.dir perl-5_10_1.dir
335 Review and update INSTALL to account for the change in version number;
336 in particular, the "Coexistence with earlier versions of perl 5" section.
340 Update the F<Changes> file to contain the git log command which would show
341 all the changes in this release. You will need assume the existence of a
342 not-yet created tag for the forthcoming release; e.g.
344 git log ... perl-5.10.0..perl5.12.0
346 Due to warts in the perforce-to-git migration, some branches require extra
347 exclusions to avoid other branches being pulled in. Make sure you have the
348 correct incantation: replace the not-yet-created tag with C<HEAD> and see
349 if git log produces roughly the right number of commits across roughly the
355 Check some more build configurations, e.g.
357 -Duseshrplib -Dd_dosuid
360 Check that setuid installs works (for < 5.11.0 only).
361 XXX any other configs?
365 Make sure you have a PAUSE account suitable for uploading a perl release.
366 If you don't have a PAUSE account, then request one:
368 https://pause.perl.org/pause/query?ACTION=request_id
370 Check that your account is allowed to upload perl distros: goto
371 https://pause.perl.org/, login, then select 'upload file to CPAN'; there
372 should be a "For pumpkings only: Send a CC" tickbox. If not, ask Andreas
373 to add your ID to the list of people allowed to upload something called
378 Update F<AUTHORS>, using the C<Porting/checkAUTHORS.pl> script, and if
379 necessary, update the script to include new alias mappings.
381 XXX This script is currently broken (7/2009). It needs updating to work
382 with git and a lack of Changes files.
386 =head2 Building a release candidate
388 (At this point you should already have performed the actions described in
389 L</"Actions prior to the first release candidate">.) You should review
390 that section to ensure that everything there has done, and to see whether
391 any of those actions (such as consistency checks) need to be repeated.
397 Re-read the perldelta to try to find any embarrassing typos and thinkos;
398 remove any C<TODO> or C<XXX> flags; and run through pod and spell
401 podchecker -warnings -warnings pod/perl5101delta.pod
402 spell pod/perl5101delta.pod
406 Update patchlevel.h to add a C<-RC1>-or-whatever string; or, if this is a
407 final release, remove it. [ XXX how now?? see 34813 for old way ]
411 Update C<Module::Corelist>.
413 Note that if this is a maint release, you should run the following actions
414 from the maint directory, but edit the C<Corelist.pm> in I<blead> and
415 subsequently cherry-pick it.
417 First, in order to update the C<%upstream> and C<%bug_tracker> hashes,
418 the C<Porting/corelist.pl> script requires you to have a local CPAN
419 mirror. See http://www.cpan.org/misc/cpan-faq.html#How_mirror_CPAN for
420 more details, but basically:
422 $ mkdir ~/cpan-mirror
423 $ rsync -av --delete ftp.funet.fi::CPAN ~/cpan-mirror/
425 (and re-run the rsync each time you need it to be up-to-date).
426 [XXX this really needs fixing to not require a whole CPAN mirror]
428 If necessary, bump C<$VERSION> (there's no need to do this for
429 every RC; in RC1, bump the version to a new clean number that will
430 appear in the final release, and leave as-is for the later RCs and final).
434 $ cd ~/perl/root; make perl
435 $ ./perl -Ilib Porting/corelist.pl ~/cpan-mirror/ > /tmp/corelist
437 This creates a file that looks something like
440 'AnyDBM_File' => '1.00',
445 'App::Prove' => undef,
450 'App::Prove' => 'http://rt.cpan.org/...',
454 Cut and paste these tables into F<lib/Module/CoreList.pm>: the module
455 version list should be appended as the last entry in the C<%version> hash
456 (or replaced, if we've already added it for an earlier release candidate),
457 while the existing C<%upstream> and C<%bug_tracker> hashes should be
458 replaced with the new versions.
460 Edit the version number in the new C<< 'Module::CoreList' => 'X.YZ' >>
461 entry, as that is likely to reflect the previous version number.
463 Then, add the current perl version to the C<CAVEATS> paragraph.
465 Add or update an entry to the C<%released> hash, including today's date
466 (if this is just a release candidate, set the date to '????-??-??').
471 Follow the instructions in the section L</"Building a snapshot">, then
472 carry on with the extra steps that follow here.
476 Disarm the patchlevel.h change [ XXX expand ]
480 Wait for the smoke tests to catch up with the commit which this release is
481 based on (or at least the last commit of any consequence).
483 Then check that the smoke tests pass (particularly on Win32). If not, go
489 Once smoking is okay, upload it to PAUSE. This is the point of no return.
490 You may wish to create a .bz2 version of the tarball and upload that too.
494 create a tag [XXX and branches and stuff ????], e.g.:
496 $ git tag perl-5.10.1-RC1 -m'Release Candidate 1 of Perl 5.10.1'
497 $ git push origin tag perl-5.10.1-RC1
501 Mail p5p to announce it, with a quote you prepared earlier.
505 Wait 24 hours or so, then post the announcement to use.perl.org.
506 (if you don't have access rights to post news, ask someone like Rafael to
512 =head2 Making a final release
514 At this point you should have a working release candidate with few or no
517 It's essentially the same procedure as for making a release candidate, but
518 with a whole bunch of extra post-release steps.
524 Follow the same steps as for making a release candidate, then
528 Ask Jarkko to update http://www.cpan.org/src/README.html and
529 Rafael to update http://dev.perl.org/perl5/
533 Create a new empty perlNNNdelta.pod file for the current release + 1;
534 see F<Porting/how_to_write_a_perldelta.pod>.
535 [ XXX Perhaps we should have an empty template file we can copy in. ]
537 In addition, edit F<pod.lst>, adding the new entry as 'D', and unmark previous
538 entry as 'D', then run C<perl pod/buildtoc --build-all> to update the
544 vms/descrip_mms.template
546 (F<vms/descrip_mms.template> still needs a manual edit to bump the
547 C<perldelta.pod> entry - it would be good for someone to figure out the fix.)
549 and change perlNNNdelta references to the new version in these files
557 Also, edit the previous delta file to change the C<NAME> from C<perldelta>
560 These two lists of files probably aren't exhaustive; do a recursive grep
561 on the previous filename to look for suitable candidates.
563 (see 16410843ea for an example).
567 If this was a maintenance release, then edit F<Porting/mergelog> to change
568 all the C<d> (deferred) flags to C<.> (needs review).
573 If this was a major release, then
579 bump the version, e.g. 5.12.0 to 5.13.0;
583 [ XXX probably lots more stuff to do, including perldelta,
588 Create a new maint branch with an empty Porting/mergelog file
589 [ XXX and lots of other stuff too, probably ]
595 Copy the perlNNNdelta.pod for this release into the other branches, and
596 remember to update these files on those branches too:
601 vms/descrip_mms.template
604 (see fc5be80860 for an example).
608 Make sure any recent F<pod/perlhist.pod> entries are copied to
609 F<perlhist.pod> on other branches; typically the RC* and final entries,
612 5.8.9-RC1 2008-Nov-10
613 5.8.9-RC2 2008-Dec-06
618 Remind the current maintainer of C<Module::CoreList> to push a new release
626 http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2009-05/msg00608.html,
627 plus a whole bunch of other sources, including private correspondence.