In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/6b3df22776523c7e117a080b445b166b31464123?hp=9fa86798943f58593c0291be5acd91b348948336>
- Log ----------------------------------------------------------------- commit 6b3df22776523c7e117a080b445b166b31464123 Author: Chris 'BinGOs' Williams <[email protected]> Date: Tue Mar 8 21:27:37 2011 +0000 Update parent to CPAN version 0.225 [DELTA] 0.225 20110308 . Applied a docpatch by Robin Barker to fix the documentation about the warning of inheriting from yourself. Fixes RT #66459 ----------------------------------------------------------------------- Summary of changes: Porting/Maintainers.pl | 2 +- cpan/parent/lib/parent.pm | 4 ++-- pod/perldelta.pod | 4 ++++ 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index fd86979..859e9be 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1143,7 +1143,7 @@ use File::Glob qw(:case); 'parent' => { 'MAINTAINER' => 'corion', - 'DISTRIBUTION' => 'CORION/parent-0.224.tar.gz', + 'DISTRIBUTION' => 'CORION/parent-0.225.tar.gz', 'FILES' => q[cpan/parent], 'UPSTREAM' => undef, }, diff --git a/cpan/parent/lib/parent.pm b/cpan/parent/lib/parent.pm index bd67b0f..8f72db8 100644 --- a/cpan/parent/lib/parent.pm +++ b/cpan/parent/lib/parent.pm @@ -1,7 +1,7 @@ package parent; use strict; use vars qw($VERSION); -$VERSION = '0.224'; +$VERSION = '0.225'; sub import { my $class = shift; @@ -102,7 +102,7 @@ either C<.pm> or C<.pmc>), use the following code: Attempting to inherit from yourself generates a warning. - use Foo; + package Foo; use parent 'Foo'; =back diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 1236c1f..292316e 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -142,6 +142,10 @@ C<Module::Build> has been upgraded from version 0.37_05 to 0.3800 =item * +C<parent> has been upgraded from version 0.224 to 0.225 + +=item * + C<Test::Harness> has been upgraded from version 3.22 to 3.23 =item * -- Perl5 Master Repository
