diff options
author | Karen Etheridge <ether@cpan.org> | 2019-06-20 13:47:22 -0700 |
---|---|---|
committer | Karen Etheridge <ether@cpan.org> | 2019-06-20 13:47:22 -0700 |
commit | 9649a8179cb2cf813532bc8050c4476c0e242a32 (patch) | |
tree | 26aca9e69a7f5a2398373c01adf51be86cf7b6e2 /Porting/release_managers_guide.pod | |
parent | 1d4861c46082263aae5f2852d6ea8743e254eaa2 (diff) | |
download | perl-9649a8179cb2cf813532bc8050c4476c0e242a32.tar.gz |
RMG improvements
Diffstat (limited to 'Porting/release_managers_guide.pod')
-rw-r--r-- | Porting/release_managers_guide.pod | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Porting/release_managers_guide.pod b/Porting/release_managers_guide.pod index 79f8b7c4dd..8dda7fe053 100644 --- a/Porting/release_managers_guide.pod +++ b/Porting/release_managers_guide.pod @@ -750,6 +750,10 @@ formatting, e.g. $ ./perl -Ilib ext/Pod-Html/bin/pod2html pod/perldelta.pod > \ ~/perldelta.html +You can add pod links for RT references thusly: + + $ perl -p -i -e'BEGIN{undef $/}; s{(\[perl\s+#)(\d+)\]}{L<$1$2\]|https://rt.perl.org/Ticket/Display.html?id=$2>}mg' pod/perldelta.pod + If you make changes, be sure to commit them. =for checklist skip BLEAD-POINT MAINT RC @@ -914,7 +918,7 @@ Then delete the temporary installation. Create the tag identifying this release (e.g.): - $ git tag v5.11.0 -m "First release of the v5.11 series!" + $ git tag v5.11.0 -m 'First release of the v5.11 series!' It is B<VERY> important that from this point forward, you not push your git changes to the Perl master repository. If anything goes |