Skip to content

Commit

Permalink
cpan/parent - Update to version 0.244
Browse files Browse the repository at this point in the history
0.244 2024-12-13
    . Update (commented) comparison with $] to use quotes (contributed by BOOK)
  • Loading branch information
Max Maischein authored and jkeenan committed Dec 14, 2024
1 parent a9edd71 commit df4d5e8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Porting/Maintainers.pl
Original file line number Diff line number Diff line change
Expand Up @@ -885,8 +885,8 @@ package Maintainers;
},

'parent' => {
'DISTRIBUTION' => 'CORION/parent-0.243.tar.gz',
'SYNCINFO' => 'tib on Wed Dec 4 17:52:22 2024',
'DISTRIBUTION' => 'CORION/parent-0.244.tar.gz',
'SYNCINFO' => 'jkeenan on Sat Dec 14 07:56:36 2024',
'FILES' => q[cpan/parent],
'EXCLUDED' => [
qr{^xt}
Expand Down
2 changes: 1 addition & 1 deletion cpan/parent/lib/parent.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package parent;
use strict;

our $VERSION = '0.243';
our $VERSION = '0.244';

sub import {
my $class = shift;
Expand Down
2 changes: 1 addition & 1 deletion cpan/parent/t/parent-pmc.t
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plan skip_all => ".pmc are only available with 5.6 and later" if $] < 5.006;
# Skip this test if perl is compiled with PERL_DISABLE_PMC
#
my $pmc = 1;
if (Config->can('non_bincompat_options')) { # $] ge '5.014'
if (Config->can('non_bincompat_options')) { # "$]" ge '5.014'
$pmc = 0
if grep { $_ eq 'PERL_DISABLE_PMC' } Config::non_bincompat_options();
} elsif (eval {
Expand Down

0 comments on commit df4d5e8

Please sign in to comment.