$#array should be accepted as a lvalue sub return value.
[p5sagit/p5-mst-13.2.git] / Porting / release_managers_guide.pod
1 =head1 NAME
2
3 release_managers_guide - Releasing a new version of perl 5.x
4
5 As of August 2009, this file is mostly complete, although it is missing
6 some detail on doing a major release (e.g. 5.10.0 -> 5.12.0). Note that
7 things change at each release, so there may be new things not covered
8 here, or tools may need updating.
9
10 =head1 SYNOPSIS
11
12 This document describes the series of tasks required - some automatic, some
13 manual - to produce a perl release of some description, be that a snaphot,
14 release candidate, or final, numbered release of maint or blead.
15
16 The release process has traditionally been executed by the current
17 pumpking. Blead releases from 5.11.0 forward are made each month on the
18 20th by a non-pumpking release engineer.  The release engineer roster
19 and schedule can be found in Porting/release_schedule.pod.
20
21 This document both helps as a check-list for the release engineer 
22 and is a base for ideas on how the various tasks could be automated 
23 or distributed.
24
25 The outline of a typical release cycle is as follows:
26
27     (5.10.1 is released, and post-release actions have been done)
28
29     ...time passes...
30
31     an occasional snapshot is released, that still identifies itself as
32         5.10.1
33
34     ...time passes...
35
36     a few weeks before the release, a number of steps are performed,
37         including bumping the version to 5.10.2
38
39     ...a few weeks passes...
40
41     perl-5.10.2-RC1 is released
42
43     perl-5.10.2 is released
44
45     post-release actions are performed, including creating new
46         perl5103delta.pod
47
48     ... the cycle continues ...
49
50 =head1 DETAILS
51
52 Some of the tasks described below apply to all four types of 
53 release of Perl. (snapshot, RC, final release of maint, final 
54 release of blead). Some of these tasks apply only to a subset
55 of these release types.  If a step does not apply to a given 
56 type of release, you will see a notation to that effect at
57 the beginning of the step.
58
59 =head2 Release types
60
61 =over 4
62
63 =item Snapshot
64
65 A snapshot is intended to encourage in-depth testing from time-to-time,
66 for example after a key point in the stabilisation of a branch. It
67 requires fewer steps than a full release, and the version number of perl in
68 the tarball will usually be the same as that of the previous release.
69
70 =item Release Candidate (RC)
71
72 A release candidate is an attempt to produce a tarball that is a close as
73 possible to the final release. Indeed, unless critical faults are found
74 during the RC testing, the final release will be identical to the RC
75 barring a few minor fixups (updating the release date in F<perlhist.pod>,
76 removing the RC status from F<patchlevel.h>, etc). If faults are found,
77 then the fixes should be put into a new release candidate, never directly
78 into a final release.
79
80 =item Stable/Maint release
81
82 At this point you should have a working release candidate with few or no
83 changes since.
84
85 It's essentially the same procedure as for making a release candidate, but
86 with a whole bunch of extra post-release steps.
87
88 =item Blead release
89
90 It's essentially the same procedure as for making a release candidate, but
91 with a whole bunch of extra post-release steps.
92
93 =back
94
95 =head2 Prerequisites
96
97 Before you can make an official release of perl, there are a few
98 hoops you need to jump through:
99
100 =over 4
101
102 =item PAUSE account
103
104 I<SKIP this step for SNAPSHOT>
105
106 Make sure you have a PAUSE account suitable for uploading a perl release.
107 If you don't have a PAUSE account, then request one:
108
109     https://pause.perl.org/pause/query?ACTION=request_id
110
111 Check that your account is allowed to upload perl distros: goto
112 https://pause.perl.org/, login, then select 'upload file to CPAN'; there
113 should be a "For pumpkings only: Send a CC" tickbox.  If not, ask Andreas
114 König to add your ID to the list of people allowed to upload something
115 called perl.  You can find Andreas' email address at:
116
117     https://pause.perl.org/pause/query?ACTION=pause_04imprint
118
119 =item CPAN mirror
120
121 Some release engineering steps require a full mirror of the CPAN.
122 Work to fall back to using a remote mirror via HTTP is incomplete
123 but ongoing. (No, a minicpan mirror is not sufficient)
124
125 =item git checkout and commit bit
126
127 You will need a working C<git> installation, checkout of the perl
128 git repository and perl commit bit.  For information about working
129 with perl and git, see F<pod/perlrepository.pod>.
130
131 If you are not yet a perl committer, you won't be able to make a
132 release.  Have a chat with whichever evil perl porter tried to talk
133 you into the idea in the first place to figure out the best way to
134 resolve the issue.
135
136
137 =item Quotation for release announcement epigraph
138
139 I<SKIP this step for SNAPSHOT and RC>
140
141 For a numbered blead or maint release of perl, you will need a quotation 
142 to use as an epigraph to your release announcement.  (There's no harm
143 in having one for a snapshot, but it's not required).
144
145
146 =back
147
148
149 =head2 Building a release - advance actions
150
151 The work of building a release candidate for a numbered release of
152 perl generally starts several weeks before the first release candidate.
153 Some of the following steps should be done regularly, but all I<must> be
154 done in the run up to a release.
155
156 =over 4
157
158 =item *
159
160 I<You MAY SKIP this step for SNAPSHOT>
161
162 Ensure that dual-life CPAN modules are synchronised with CPAN.  Basically,
163 run the following:
164
165     $ ./perl -Ilib Porting/core-cpan-diff -a -o /tmp/corediffs
166
167 to see any inconsistencies between the core and CPAN versions of distros,
168 then fix the core, or cajole CPAN authors as appropriate. See also the
169 C<-d> and C<-v> options for more detail.  You'll probably want to use the
170 C<-c cachedir> option to avoid repeated CPAN downloads.
171
172 To see which core distro versions differ from the current CPAN versions:
173
174     $ ./perl -Ilib Porting/core-cpan-diff -x -a
175
176 If you are making a maint release, run C<core-cpan-diff> on both blead and
177 maint, then diff the two outputs. Compare this with what you expect, and if
178 necessary, fix things up. For example, you might think that both blead
179 and maint are synchronised with a particular CPAN module, but one might
180 have some extra changes. 
181
182 =item *
183
184 I<You MAY SKIP this step for SNAPSHOT>
185
186 Ensure dual-life CPAN modules are stable, which comes down to:
187
188     for each module that fails its regression tests on $current
189         did it fail identically on $previous?
190         if yes, "SEP" (Somebody Else's Problem)
191         else work out why it failed (a bisect is useful for this)
192
193     attempt to group failure causes
194
195     for each failure cause
196         is that a regression?
197         if yes, figure out how to fix it
198             (more code? revert the code that broke it)
199         else
200             (presumably) it's relying on something un-or-under-documented
201             should the existing behaviour stay?
202                 yes - goto "regression"
203                 no - note it in perldelta as a significant bugfix
204                 (also, try to inform the module's author)
205
206 =item *
207
208 I<You MAY SKIP this step for SNAPSHOT>
209
210 Similarly, monitor the smoking of core tests, and try to fix.
211
212 =item *
213
214 I<You MAY SKIP this step for SNAPSHOT>
215
216 Similarly, monitor the smoking of perl for compiler warnings, and try to
217 fix.
218
219 =item *
220
221 I<You MAY SKIP this step for SNAPSHOT>
222
223 Run F<Porting/cmpVERSION.pl> to compare the current source tree with the
224 previous version to check for for modules that have identical version
225 numbers but different contents, e.g.:
226
227      $ cd ~/some-perl-root
228      $ ./perl -Ilib Porting/cmpVERSION.pl -xd ~/my_perl-tarballs/perl-5.10.0 .
229
230 then bump the version numbers of any non-dual-life modules that have
231 changed since the previous release, but which still have the old version
232 number. If there is more than one maintenance branch (e.g. 5.8.x, 5.10.x),
233 then compare against both.
234
235 Note that some of the files listed may be generated (e.g. copied from ext/
236 to lib/, or a script like lib/lib_pm.PL is run to produce lib/lib.pm);
237 make sure you edit the correct file!
238
239 Once all version numbers have been bumped, re-run the checks.
240
241 Then run again without the -x option, to check that dual-life modules are
242 also sensible.
243
244      $ ./perl -Ilib Porting/cmpVERSION.pl -d ~/my_perl-tarballs/perl-5.10.0 .
245
246 =item *
247
248 I<You MAY SKIP this step for SNAPSHOT>
249
250 Get perldelta in a mostly finished state.
251
252 Peruse  F<Porting/how_to_write_a_perldelta.pod>, and try to make sure that
253 every section it lists is, if necessary, populated and complete. Copy
254 edit the whole document.
255
256 =item *
257
258 I<You MUST SKIP this step for SNAPSHOT>
259
260 A week or two before the first release candidate, bump the perl version
261 number (e.g. from 5.10.0 to 5.10.1), to allow sufficient time for testing
262 and smoking with the target version built into the perl executable. For
263 subsequent release candidates and the final release, it it not necessary
264 to bump the version further.
265
266 There is a tool to semi-automate this process. It works in two stages.
267 First, it generates a list of suggested changes, which you review and
268 edit; then you feed this list back and it applies the edits. So, first
269 scan the source directory looking for likely candidates. The command line
270 arguments are the old and new version numbers, and -s means scan:
271
272     $ Porting/bump-perl-version -s 5.10.0 5.10.1 > /tmp/scan
273
274 This produces a file containing a list of suggested edits, e.g.:
275
276     NetWare/Makefile
277
278        89: -MODULE_DESC     = "Perl 5.10.0 for NetWare"
279            +MODULE_DESC     = "Perl 5.10.1 for NetWare"
280
281 i.e. in the file F<NetWare/Makefile>, line 89 would be changed as shown.
282 Review the file carefully, and delete any -/+ line pairs that you don't
283 want changing. You can also edit just the C<+> line to change the
284 suggested replacement text. Remember that this tool is largely just
285 grepping for '5.10.0' or whatever, so it will generate false positives. Be
286 careful not change text like "this was fixed in 5.10.0"! Then run:
287
288     $ Porting/bump-perl-version -u < /tmp/scan
289
290 which will update all the files shown.
291
292 Be particularly careful with F<INSTALL>, which contains a mixture of
293 C<5.10.0>-type strings, some of which need bumping on every release, and
294 some of which need to be left unchanged. Also note that this tool
295 currently only detects a single substitution per line: so in particular,
296 this line in README.vms needs special handling:
297
298     rename perl-5^.10^.1.dir perl-5_10_1.dir
299
300 Have a look a couple lines up from that. You'll see roman numerals.
301 Update those too. Find someone with VMS clue if you have to update 
302 the Roman numerals for a .0 release.
303
304 Commit your changes:
305
306     $ git st
307         $ git diff
308           B<review the delta carefully>
309
310     $ git commit -a -m 'Bump the perl version in various places for 5.x.y'
311
312 =item *
313
314 I<You MUST SKIP this step for SNAPSHOT>
315
316 Review and update INSTALL to account for the change in version number;
317 in particular, the "Coexistence with earlier versions of perl 5" section.
318
319 =item *
320
321 I<You MUST SKIP this step for SNAPSHOT>
322
323 Update the F<Changes> file to contain the git log command which would show
324 all the changes in this release. You will need assume the existence of a
325 not-yet created tag for the forthcoming release; e.g.
326
327     git log ... perl-5.10.0..perl-5.12.0
328
329 Due to warts in the perforce-to-git migration, some branches require extra
330 exclusions to avoid other branches being pulled in. Make sure you have the
331 correct incantation: replace the not-yet-created tag with C<HEAD> and see
332 if C<git log> produces roughly the right number of commits across roughly the
333 right time period (you may find C<git log --pretty=oneline | wc> useful).
334
335 =item *
336
337 Check some more build configurations. The check that setuid builds and
338 installs is for < 5.11.0 only.
339
340     $ sh Configure -Dprefix=/tmp/perl-5.x.y  -Uinstallusrbinperl \
341         -Duseshrplib -Dd_dosuid
342     $ make
343     $ LD_LIBRARY_PATH=`pwd` make test     # or similar for useshrplib
344
345     $ make suidperl
346     $ su -c 'make install'
347     $ ls -l .../bin/sperl
348     -rws--x--x 1 root root 69974 2009-08-22 21:55 .../bin/sperl
349
350 (Then delete the installation directory.)
351
352 XXX think of other configurations that need testing.
353
354 =item *
355
356 I<You MAY SKIP this step for SNAPSHOT>
357
358 Update F<AUTHORS>, using the C<Porting/checkAUTHORS.pl> script, and if
359 necessary, update the script to include new alias mappings for porters
360 already in F<AUTHORS>
361
362         $ git log | perl Porting/checkAUTHORS.pl --acknowledged AUTHORS -
363
364 =back
365
366 =head2 Building a release - on the day
367
368 This section describes the actions required to make a release (or snapshot
369 etc) that are performed on the actual day.
370
371 =over 4
372
373 =item *
374
375 Review all the items in the previous section,
376 L<"Building a release - advance actions"> to ensure they are all done and
377 up-to-date.
378
379 =item *
380
381 I<You MAY SKIP this step for SNAPSHOT>
382
383 Re-read the perldelta to try to find any embarrassing typos and thinkos;
384 remove any C<TODO> or C<XXX> flags; update the "Known Problems" section
385 with any serious issues for which fixes are not going to happen now; and
386 run through pod and spell checkers, e.g.
387
388     $ podchecker -warnings -warnings pod/perl5101delta.pod
389     $ spell pod/perl5101delta.pod
390
391 Also, you may want to generate and view an HTML version of it to check
392 formatting, e.g.
393
394     $ perl pod/pod2html pod/perl5101delta.pod > /tmp/perl5101delta.html
395
396 =item *
397
398 Make sure you have a gitwise-clean perl directory (no modified files,
399 unpushed commits etc):
400
401     $ git status
402
403 =item *
404
405 If not already built, Configure and build perl so that you have a Makefile
406 and porting tools:
407
408     $ ./Configure -Dusedevel -des && make
409
410 =item *
411
412 Check that files managed by F<regen.pl> and friends are up to date. From
413 within your working directory:
414
415     $ git status
416     $ make regen
417     $ make regen_perly
418     $ git status
419
420 If any of the files managed by F<regen.pl> have changed, then you should
421 re-make perl to check that it's okay, then commit the updated versions:
422
423     $ git commit -a -m 'make regen; make regen_perly'
424
425 =item *
426
427 Rebuild META.yml:
428
429     $ rm META.yml
430     $ make META.yml
431     $ git diff
432
433 XXX it would be nice to make Porting/makemeta use regen_lib.pl
434 to get the same 'update the file if its changed' functionality
435 we get with 'make regen' etc.
436
437 Commit META.yml if it has changed:
438
439     $ git commit -m 'Update META.yml' META.yml
440
441 =item *
442
443 I<You MUST SKIP this step for SNAPSHOT>
444
445 Update C<Module::Corelist> with module version data for the new release.
446
447 Note that if this is a maint release, you should run the following actions
448 from the maint directory, but commit the C<Corelist.pm> changes in
449 I<blead> and subsequently cherry-pick it.
450
451 F<corelist.pl> uses ftp.funet.fi to verify information about dual-lived
452 modules on CPAN. It can use a full, local CPAN mirror or fall back
453 to C<wget> or C<curl> to fetch only package metadata remotely.
454
455 (If you'd prefer to have a full CPAN mirror, see 
456 http://www.cpan.org/misc/cpan-faq.html#How_mirror_CPAN)
457
458 Then change to your perl checkout, and if necessary,
459
460     $ make perl
461
462 If this not the first update for this version, first edit
463 F<dist/Module-CoreList/lib/Module/CoreList.pm> to delete the existing
464 entries for this version from the C<%released> and C<%version> hashes:
465 they will have a key like C<5.010001> for 5.10.1.
466
467 XXX the edit-in-place functionality of Porting/corelist.pl should
468 be fixed to handle this automatically.
469
470 Then, If you have a local CPAN mirror, run:
471
472     $ ./perl -Ilib Porting/corelist.pl ~/my-cpan-mirror
473
474 Otherwise, run:
475
476     $ ./perl -Ilib Porting/corelist.pl cpan
477
478 This will chug for a while, possibly reporting various warnings about
479 badly-indexed CPABN modules unreltaed to the modules actually in core.
480 Assuming all goes well, it will update
481 F<dist/Module-CoreList/lib/Module/CoreList.pm>.
482
483 Check that file over carefully:
484
485     $ git diff dist/Module-CoreList/lib/Module/CoreList.pm
486
487 If necessary, bump C<$VERSION> (there's no need to do this for
488 every RC; in RC1, bump the version to a new clean number that will
489 appear in the final release, and leave as-is for the later RCs and final).
490
491 Edit the version number in the new C<< 'Module::CoreList' => 'X.YZ' >>
492 entry, as that is likely to reflect the previous version number.
493
494 In addition, if this is a final release (rather than a release candidate):
495
496 =over 4 
497
498 =item *
499
500 Update this version's entry in the C<%released> hash with today's date.
501
502 =item *
503
504 Make sure that the script has correctly updated the C<CAVEATS> section
505
506 =back
507
508 Finally, commit the new version of Module::CoreList:
509 (unless this is for maint; in which case commit it blead first, then
510 cherry-pick it back).
511
512     $ git commit -m 'Update Module::CoreList for 5.x.y' dist/Module-CoreList/lib/Module/CoreList.pm
513
514 =item *
515
516 Check that the manifest is sorted and correct:
517
518     $ make manisort
519     $ make distclean
520     $ git clean -xdf # This shouldn't be necessary if distclean is correct
521     $ perl Porting/manicheck
522     $ git status
523
524         XXX manifest _sorting_ is now checked with make test_porting
525
526 Commit MANIFEST if it has changed:
527
528     $ git commit -m 'Update MANIFEST' MANIFEST
529
530 =item *
531
532 I<You MUST SKIP this step for SNAPSHOT>
533
534 Add an entry to F<pod/perlhist.pod> with the current date, e.g.:
535
536     David    5.10.1-RC1    2009-Aug-06
537
538 Make sure that the correct pumpking is listed in the left-hand column, and
539 if this is the first release under the stewardship of a new pumpking, make
540 sure that his or her name is listed in the section entitled
541 C<THE KEEPERS OF THE PUMPKIN>.
542
543 Be sure to commit your changes:
544
545     $ git commit -m 'add new release to perlhist' pod/perlhist.pod
546
547 =item *
548
549 I<You MUST SKIP this step for SNAPSHOT>
550
551 Update F<patchlevel.h> to add a C<-RC1>-or-whatever string; or, if this is
552 a final release, remove it. For example:
553
554      static const char * const local_patches[] = {
555              NULL
556     +        ,"RC1"
557              PERL_GIT_UNPUSHED_COMMITS /* do not remove this line */
558
559 Be sure to commit your change:
560
561     $ git commit -m 'bump version to RCnnn' patchlevel.h
562
563 =item *
564
565 Build perl, then make sure it passes its own test suite, and installs:
566
567     $ git clean -xdf
568     $ ./Configure -des -Dprefix=/tmp/perl-5.x.y-pretest
569
570     # or if it's an odd-numbered version:
571     $ ./Configure -des -Dusedevel -Dprefix=/tmp/perl-5.x.y-pretest
572
573     $ make test install
574
575 =item *
576
577 Check that the output of C</tmp/perl-5.x.y-pretest/bin/perl -v> and
578 C</tmp/perl-5.x.y-pretest/bin/perl -V> are as expected,
579 especially as regards version numbers, patch and/or RC levels, and @INC
580 paths. Note that as they have been been built from a git working
581 directory, they will still identify themselves using git tags and
582 commits.
583
584 Then delete the temporary installation.
585
586 =item *
587
588 If this is maint release, make sure F<Porting/mergelog> is saved and
589 committed.
590
591 =item *
592
593 Push all your recent commits:
594
595     $ git push origin ....
596
597
598 =item *
599
600 I<You MUST SKIP this step for SNAPSHOT>
601
602 Tag the release:
603
604     $ git tag v5.11.0 -m'First release of the v5.11 series!'
605
606 It is VERY important that from this point forward, you not push
607 your git changes to the Perl master repository.  If anything goes
608 wrong before you publish your newly-created tag, you can delete
609 and recreate it.  Once you push your tag, we're stuck with it
610 and you'll need to use a new version number for your release.
611
612 =item *
613
614 Create a tarball. Use the C<-s> option to specify a suitable suffix for
615 the tarball and directory name:
616
617     $ cd root/of/perl/tree
618     $ make distclean
619     $ git clean -xdf            # make sure perl and git agree on files
620     $ git status                # and there's nothing lying around
621
622     $ perl Porting/makerel -b -s `git describe` # for a snapshot
623     $ perl Porting/makerel -b -s RC1            # for a release candidate
624     $ perl Porting/makerel -b                   # for a final release
625
626 This creates the  directory F<../perl-x.y.z-RC1> or similar, copies all
627 the MANIFEST files into it, sets the correct permissions on them,
628 adds DOS line endings to some, then tars it up as
629 F<../perl-x.y.z-RC1.tar.gz>. With C<-b>, it also creates a C<tar.bz2> file.
630
631
632 XXX if we go for extra tags and branches stuff, then add the extra details
633 here
634
635 =item *
636
637 Clean up the temporary directory, e.g.
638
639     $ rm -rf ../perl-x.y.z-RC1
640
641 =item *
642
643 Copy the tarballs (.gz and possibly .bz2) to a web server somewhere you
644 have access to.
645
646 =item *
647
648 Download the tarball to some other machine. For a release candidate, 
649 you really want to test your tarball on two or more different platforms
650 and architectures. The #p5p IRC channel on irc.perl.org is a good place
651 to find willing victims.
652
653 =item *
654
655 Check that basic configuration and tests work on each test machine:
656
657     $ ./Configure -des && make all test
658
659 =item *
660
661 Check that the test harness and install work on each test machine:
662
663     $ make distclean
664     $ ./Configure -des -Dprefix=/install/path && make all test_harness install
665     $ cd /install/path
666
667 =item *
668
669 Check that the output of C<perl -v> and C<perl -V> are as expected,
670 especially as regards version numbers, patch and/or RC levels, and @INC
671 paths. 
672
673 Note that the results may be different without a F<.git/> directory,
674 which is why you should test from the tarball.
675
676 =item *
677
678 Run the Installation Verification Procedure utility:
679
680     $ bin/perlivp
681     ...
682     All tests successful.
683     $
684
685 =item *
686
687 Compare the pathnames of all installed files with those of the previous
688 release (i.e. against the last installed tarball on this branch which you
689 have previously verified using this same procedure). In particular, look
690 for files in the wrong place, or files no longer included which should be.
691 For example, suppose the about-to-be-released version is 5.10.1 and the
692 previous is 5.10.0:
693
694     cd installdir-5.10.0/
695     find . -type f | perl -pe's/5\.10\.0/5.10.1/g' | sort > /tmp/f1
696     cd installdir-5.10.1/
697     find . -type f | sort > /tmp/f2
698     diff -u /tmp/f[12]
699
700 =item *
701
702 Bootstrap the CPAN client on the clean install:
703
704     $ bin/perl -MCPAN -e'shell' 
705
706 =item *
707
708 Try installing a popular CPAN module that's reasonably complex and that
709 has dependencies; for example:
710
711     CPAN> install Inline
712     CPAN> quit
713
714 Check that your perl can run this:
715
716     $ bin/perl -lwe 'use Inline C => "int f() { return 42;} "; print f'
717     42
718     $
719
720 =item *
721
722 Bootstrap the CPANPLUS client on the clean install:
723
724     $ bin/cpanp
725
726 =item *
727
728 Install an XS module, for example:
729
730     CPAN Terminal> i DBI
731     CPAN Terminal> quit
732     $ bin/perl -MDBI -e 1
733     $
734
735 =item *
736
737 I<If you're building a SNAPSHOT, you should STOP HERE>
738
739 =item *
740
741 Check that the C<perlbug> utility works. Try the following:
742
743     $ bin/perlbug
744     ...
745     Subject: test bug report
746     Local perl administrator [yourself]: 
747     Editor [vi]: 
748     Module: 
749     Category [core]: 
750     Severity [low]: 
751     (edit report)
752     Action (Send/Display/Edit/Subject/Save to File): f
753     Name of file to save message in [perlbug.rep]: 
754     Action (Send/Display/Edit/Subject/Save to File): q
755
756 and carefully examine the output (in F<perlbug.rep]>), especially
757 the "Locally applied patches" section. If everything appears okay, then
758 delete the file, and try it again, this time actually submitting the bug
759 report. Check that it shows up, then remember to close it!
760
761 =item *
762
763 Wait for the smoke tests to catch up with the commit which this release is
764 based on (or at least the last commit of any consequence).
765
766 Then check that the smoke tests pass (particularly on Win32). If not, go
767 back and fix things.
768
769
770 =item *
771
772 Once smoking is okay, upload it to PAUSE. This is the point of no return.
773 If anything goes wrong after this point, you will need to re-prepare
774 a new release with a new minor version or RC number.
775
776     https://pause.perl.org/
777
778 (Login, then select 'Upload a file to CPAN')
779
780 Upload both the .gz and .bz2 versions of the tarball.
781
782 =item *
783
784 Now that you've shipped the new perl release to PAUSE, it's
785 time to publish the tag you created earlier to the public git repo:
786
787     $ git push origin tag v5.11.0
788
789 =item *
790
791 Disarm the F<patchlevel.h> change; for example,
792
793      static const char * const local_patches[] = {
794              NULL
795     -        ,"RC1"
796              PERL_GIT_UNPUSHED_COMMITS /* do not remove this line */
797
798 Be sure to commit your change:
799
800     $ git commit -m 'disarm RCnnn bump' patchlevel.h
801     $ git push origin ....
802
803
804 =item *
805
806 Mail p5p to announce your new release, with a quote you prepared earlier.
807
808 =item *
809
810 Wait 24 hours or so, then post the announcement to use.perl.org.
811 (if you don't have access rights to post news, ask someone like Rafael to
812 do it for you.)
813
814 =item *
815
816 Ask Jarkko to add the tarball to http://www.cpan.org/src/
817
818 =item *
819
820 I<You MUST SKIP this step for RC, BLEAD>
821
822 Ask Jarkko to update the descriptions of which tarballs are current in
823 http://www.cpan.org/src/README.html, and Rafael to update
824 http://dev.perl.org/perl5/
825
826 =item *
827
828 I<You MUST SKIP this step for RC>
829
830 Remind the current maintainer of C<Module::CoreList> to push a new release
831 to CPAN.
832
833 =item *
834
835 I<You MUST SKIP this step for RC>
836
837 Bump the perlXYZ version number.
838
839 First, create a new empty perlNNNdelta.pod file for the current release + 1;
840 see F<Porting/how_to_write_a_perldelta.pod>.
841
842 You should be able to do this by just copying in a skeleton template and
843 then doing a quick fix up of the version numbers, e.g.
844
845     $ cp -i Porting/perldelta_template pod/perl5102delta.pod
846     $ (edit it)
847     $ git add pod/perl5102delta.pod
848
849 Edit F<pod.lst>: add the new entry, flagged as 'D', and unflag the previous
850 entry from being 'D'; for example:
851
852     -D perl5101delta                Perl changes in version 5.10.1
853     +D perl5102delta                Perl changes in version 5.10.2
854     +  perl5101delta                Perl changes in version 5.10.1
855
856 Run C<perl pod/buildtoc --build-all> to update the F<perldelta> version in
857 the following files:
858
859     MANIFEST
860     Makefile.SH
861     pod.lst
862     pod/perl.pod
863     vms/descrip_mms.template
864     win32/Makefile
865     win32/makefile.mk
866     win32/pod.mak
867
868 Then manually edit (F<vms/descrip_mms.template> to bump the version
869 in the following entry:
870
871     [.pod]perldelta.pod : [.pod]perl5101delta.pod
872
873 XXX this previous step needs to fixed to automate it in pod/buildtoc.
874
875 Manually update references to the perlNNNdelta version in these files:
876
877     INSTALL
878     README
879
880 Edit the previous delta file to change the C<NAME> from C<perldelta>
881 to C<perlNNNdelta>.
882
883 These two lists of files probably aren't exhaustive; do a recursive grep
884 on the previous filename to look for suitable candidates that may have
885 been missed.
886
887 Finally, commit:
888
889     $ git commit -a -m 'create perlXXXdelta'
890
891 At this point you may want  to compare the commit with a previous bump to
892 see if they look similar. See commit ca8de22071 for an example of a
893 previous version bump.
894
895 =item *
896
897 I<You MUST SKIP this step for RC, BLEAD>
898
899 If this was a maint release, then edit F<Porting/mergelog> to change
900 all the C<d> (deferred) flags to C<.> (needs review).
901
902 =item *
903
904 I<You MUST SKIP this step for RC, BLEAD>
905
906 If this was a major release (5.x.0), then create a new maint branch 
907 based on the commit tagged as the current release and bump the version 
908 in the blead branch in git, e.g. 5.12.0 to 5.13.0.
909
910 [ XXX probably lots more stuff to do, including perldelta,
911 C<lib/feature.pm> ]
912
913 XXX need a git recipe
914
915 =item *
916
917 I<You MUST SKIP this step for RC, BLEAD>
918
919 Copy the perlNNNdelta.pod for this release into the other branches; for
920 example:
921
922     $ cp -i ../5.10.x/pod/perl5101delta.pod pod/    # for example
923     $ git add pod/perl5101delta.pod
924
925 Edit F<pod.lst> to add an entry for the file, e.g.:
926
927     perl5101delta               Perl changes in version 5.10.1
928
929 Then rebuild various files:
930
931     $ perl pod/buildtoc --build-all
932
933 Finally, commit:
934
935     $ git commit -a -m 'add perlXXXdelta'
936
937 =item *
938
939 Make sure any recent F<pod/perlhist.pod> entries are copied to
940 F<perlhist.pod> on other branches; typically the RC* and final entries,
941 e.g.
942
943           5.8.9-RC1     2008-Nov-10
944           5.8.9-RC2     2008-Dec-06
945           5.8.9         2008-Dec-14
946
947 =item *
948
949 I<You MUST RETIRE to your preferred PUB, CAFE or SEASIDE VILLA for some
950 much-needed rest and relaxation>.
951
952 Thanks for releasing perl!
953
954 =back
955
956 =head1 SOURCE
957
958 Based on
959 http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2009-05/msg00608.html,
960 plus a whole bunch of other sources, including private correspondence.
961
962 =cut
963