Skip to content

Commit f5b9d27

Browse files
committed
Support 5.8.9-
1 parent 2fc506f commit f5b9d27

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/Devel/PatchPerl/Plugin/Darwin.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ my @patch = (
2727
subs => [ [ \&_patch_darwin_locale_test5150 ] ],
2828
},
2929
{
30-
perl => [ qr/^5\.15\.[89]$/, qr/^5\.16\.[0-3]$/ ],
30+
perl => [ qr/^5\.15\.[89]$/, qr/^5\.16\.[0-3]$/, qr/^5\.17\.\d+/, qr/^5\.18\.[0-4]$/, qr/^5\.19\.[0-8]/ ],
3131
subs => [ [ \&_patch_darwin_locale_test5158 ] ],
3232
},
3333
);

t/patch.t

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ use Devel::PatchPerl;
77
use Devel::PatchPerl::Hints qw[hint_file];
88

99
$ENV{PERL5_PATCHPERL_PLUGIN} = 'Darwin';
10-
my @versions = ('5.8.9', '5.10.1', '5.11.1', '5.12.5', '5.14.4', '5.16.3');
10+
my @versions = ('5.8.9', '5.10.1', '5.11.1', '5.12.5', '5.14.4', '5.16.3', '5.18.4',
11+
'5.20.3', '5.22.4', '5.24.4', '5.26.3', '5.28.3', '5.30.3', '5.32.1');
1112
my $os = $^O;
1213

1314
for my $v (@versions) {

0 commit comments

Comments
 (0)