From Changes:
0.223
20090901
. No functional changes, no need to upgrade
+ Fix Makefile.PL so that (re)installing parent under 5.10.1+
installs into perl/ instead of site/, patched by J.D.Hedden
fixes RT #49328
0.222
20090828
. No functional changes, no need to upgrade
+ Documentation fix suggested by Clinton Gormley
+ Test fix for Perl compiled without PMC support,
spotted and fixed by Nicholas Clark
+ Distribution changes to placate Module::Release
'parent' =>
{
'MAINTAINER' => 'corion',
- 'DISTRIBUTION' => 'CORION/parent-0.221.tar.gz',
+ 'DISTRIBUTION' => 'CORION/parent-0.223.tar.gz',
'FILES' => q[ext/parent],
'CPAN' => 1,
'UPSTREAM' => undef,
package parent;
use strict;
use vars qw($VERSION);
-$VERSION = '0.221';
+$VERSION = '0.223';
sub import {
my $class = shift;
sub exclaim { "I CAN HAS PERL" }
package DoesNotLoadFooBar;
- push @DoesNotLoadFooBar::ISA, 'Foo';
+ push @DoesNotLoadFooBar::ISA, 'Foo', 'Bar';
This is also helpful for the case where a package lives within
a differently named file:
use strict;
use Test::More;
+use Config;
use lib 't/lib';
plan skip_all => ".pmc are only available with 5.6 and later" if $] < 5.006;
+plan skip_all => ".pmc are disabled in this perl"
+ if $Config{ccflags} =~ /(?<!\w)-DPERL_DISABLE_PMC\b/;
plan tests => 3;
use vars qw($got_here);