Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Porting/release_managers_guide.pod: document version placeholders #23140

Open
wants to merge 1 commit into
base: blead
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions Porting/release_managers_guide.pod
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,35 @@ POD.

$ perl Porting/make-rmg-checklist --html --version [5.X.Y-RC#] > /tmp/rmg.html

This file serves as a template for the checklist. In particular, the following
placeholders in the instructions below are recognized and expanded by
F<Porting/make-rmg-checklist>:

=over

=item C<5.X.Y>

The perl version whose release is being prepared (e.g. C<5.41.9>).

=item C<5.X>

The perl version whose release is being prepared, but without the final
component (e.g. C<5.41>).

=item C<5.LAST>

The "previous" perl version. Normally, this is just C<5.X.(Y-1)>, but if the
last component is 0, it subtracts 2 from the middle component:

5.X.Y 5.LAST
====== ======
5.41.9 -> 5.41.8
5.40.1 -> 5.40.0
5.40.0 -> 5.38.0
5.41.0 -> 5.39.0

=back

=head1 SYNOPSIS

This document describes the series of tasks required - some automatic, some
Expand Down
Loading