Skip to content

Commit df4d5e8

Browse files
Max Maischeinjkeenan
Max Maischein
authored andcommitted
cpan/parent - Update to version 0.244
0.244 2024-12-13 . Update (commented) comparison with $] to use quotes (contributed by BOOK)
1 parent a9edd71 commit df4d5e8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Porting/Maintainers.pl

+2-2
Original file line numberDiff line numberDiff line change
@@ -885,8 +885,8 @@ package Maintainers;
885885
},
886886

887887
'parent' => {
888-
'DISTRIBUTION' => 'CORION/parent-0.243.tar.gz',
889-
'SYNCINFO' => 'tib on Wed Dec 4 17:52:22 2024',
888+
'DISTRIBUTION' => 'CORION/parent-0.244.tar.gz',
889+
'SYNCINFO' => 'jkeenan on Sat Dec 14 07:56:36 2024',
890890
'FILES' => q[cpan/parent],
891891
'EXCLUDED' => [
892892
qr{^xt}

cpan/parent/lib/parent.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package parent;
22
use strict;
33

4-
our $VERSION = '0.243';
4+
our $VERSION = '0.244';
55

66
sub import {
77
my $class = shift;

cpan/parent/t/parent-pmc.t

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ plan skip_all => ".pmc are only available with 5.6 and later" if $] < 5.006;
1717
# Skip this test if perl is compiled with PERL_DISABLE_PMC
1818
#
1919
my $pmc = 1;
20-
if (Config->can('non_bincompat_options')) { # $] ge '5.014'
20+
if (Config->can('non_bincompat_options')) { # "$]" ge '5.014'
2121
$pmc = 0
2222
if grep { $_ eq 'PERL_DISABLE_PMC' } Config::non_bincompat_options();
2323
} elsif (eval {

0 commit comments

Comments
 (0)