In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/1f766de98da2443bf3297eda85509d96ec3690db?hp=d619eca62d5f721577dabcf8c79ff37674df46db>
- Log ----------------------------------------------------------------- commit 1f766de98da2443bf3297eda85509d96ec3690db Author: Robin Barker <[email protected]> Date: Sun Sep 13 20:53:12 2009 +0100 deprecate Pod::Plainer - update to 1.00 ----------------------------------------------------------------------- Summary of changes: Porting/Maintainers.pl | 3 ++- ext/Pod-Plainer/Plainer.pm | 7 ++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index d0ac76e..92a379c 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1310,8 +1310,9 @@ use File::Glob qw(:case); { 'MAINTAINER' => 'rmbarker', 'FILES' => q[ext/Pod-Plainer], - 'CPAN' => 0, + 'CPAN' => 1, 'UPSTREAM' => 'blead', + # DEPRECATED => 5.11.0, }, 'Pod::Simple' => diff --git a/ext/Pod-Plainer/Plainer.pm b/ext/Pod-Plainer/Plainer.pm index 373e8d0..42ec25c 100644 --- a/ext/Pod-Plainer/Plainer.pm +++ b/ext/Pod-Plainer/Plainer.pm @@ -1,8 +1,9 @@ package Pod::Plainer; use strict; +use if $[ >= 5.011, 'deprecate'; use Pod::Parser; our @ISA = qw(Pod::Parser); -our $VERSION = '0.01'; +our $VERSION = '1.00'; our %E = qw( < lt > gt ); @@ -34,7 +35,7 @@ __END__ =head1 NAME -Pod::Plainer - Perl extension for converting Pod to old style Pod. +Pod::Plainer - Perl extension for converting Pod to old-style Pod. =head1 SYNOPSIS @@ -59,7 +60,7 @@ None by default. =head1 AUTHOR -Robin Barker, [email protected] +Robin Barker, [email protected] =head1 SEE ALSO -- Perl5 Master Repository
