diff options
author | Steve Hay <steve.m.hay@googlemail.com> | 2015-03-19 21:09:42 +0000 |
---|---|---|
committer | Steve Hay <steve.m.hay@googlemail.com> | 2015-03-19 21:51:59 +0000 |
commit | b367c45de1e716917350f403e8cac1658767f7a6 (patch) | |
tree | 561448b746a3d7fbceafa6c0fb33261b2ec06007 | |
parent | 18391b266d7c701eef1760fa9fddfc3e43ebcfcd (diff) | |
download | perl-b367c45de1e716917350f403e8cac1658767f7a6.tar.gz |
Upgrade parent from version 0.228 to 0.232
-rwxr-xr-x | Porting/Maintainers.pl | 2 | ||||
-rw-r--r-- | cpan/parent/lib/parent.pm | 2 | ||||
-rw-r--r-- | cpan/parent/t/parent-pmc.t | 12 | ||||
-rw-r--r-- | pod/perldelta.pod | 6 |
4 files changed, 19 insertions, 3 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index a21e8435bb..433987c122 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -842,7 +842,7 @@ use File::Glob qw(:case); }, 'parent' => { - 'DISTRIBUTION' => 'CORION/parent-0.228.tar.gz', + 'DISTRIBUTION' => 'CORION/parent-0.232.tar.gz', 'FILES' => q[cpan/parent], }, diff --git a/cpan/parent/lib/parent.pm b/cpan/parent/lib/parent.pm index b31603b90d..445ed125e9 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.228'; +$VERSION = '0.232'; sub import { my $class = shift; diff --git a/cpan/parent/t/parent-pmc.t b/cpan/parent/t/parent-pmc.t index 851a438fd3..a8708b42ba 100644 --- a/cpan/parent/t/parent-pmc.t +++ b/cpan/parent/t/parent-pmc.t @@ -13,8 +13,18 @@ use Config; use lib 't/lib'; plan skip_all => ".pmc are only available with 5.6 and later" if $] < 5.006; +my $no_pmc; + +if (Config->can('non_bincompat_options')) { + foreach(Config::non_bincompat_options()) { + if($_ eq "PERL_DISABLE_PMC"){ + $no_pmc = 1; + last; + } + } +}; plan skip_all => ".pmc are disabled in this perl" - if $Config{ccflags} =~ /(?<!\w)-DPERL_DISABLE_PMC\b/; + if $no_pmc; plan tests => 3; use vars qw($got_here); diff --git a/pod/perldelta.pod b/pod/perldelta.pod index f4492d4e0e..64fb24b0df 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -204,6 +204,12 @@ L<Module::CoreList> has been reverted from version 5.20150220 to 5.20150320. =item * +L<parent> has been upgraded from version 0.228 to 0.232. + +No changes to installed files other than the version bump. + +=item * + L<Pod::Functions> has been upgraded from version 1.08 to 1.09. =item * |