Skip to content

Commit

Permalink
Add Perl releases 5.34.3, 5.36.3, 5.38.2 to Module::CoreList + Utils
Browse files Browse the repository at this point in the history
  • Loading branch information
leonerd committed Nov 28, 2023
1 parent feed303 commit 5f29976
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 2 deletions.
59 changes: 58 additions & 1 deletion dist/Module-CoreList/lib/Module/CoreList.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta );

use version;
our $VERSION = '5.20231125';
our $VERSION = '5.20231129';

sub PKG_PATTERN () { q#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z# }
sub _looks_like_invocant ($) { local $@; !!eval { $_[0]->isa(__PACKAGE__) } }
Expand Down Expand Up @@ -414,6 +414,9 @@ sub changes_between {
5.034002 => '2023-11-25',
5.036002 => '2023-11-25',
5.038001 => '2023-11-25',
5.034003 => '2023-11-29',
5.036003 => '2023-11-29',
5.038002 => '2023-11-29',
);

for my $version ( sort { $a <=> $b } keys %released ) {
Expand Down Expand Up @@ -21097,6 +21100,39 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
5.034003 => {
delta_from => 5.034002,
changed => {
'B::Op_private' => '5.034003',
'Config' => '5.034003',
'Module::CoreList' => '5.20231129',
'Module::CoreList::Utils'=> '5.20231129',
},
removed => {
}
},
5.036003 => {
delta_from => 5.036002,
changed => {
'B::Op_private' => '5.036003',
'Config' => '5.036003',
'Module::CoreList' => '5.20231129',
'Module::CoreList::Utils'=> '5.20231129',
},
removed => {
}
},
5.038002 => {
delta_from => 5.038001,
changed => {
'B::Op_private' => '5.038002',
'Config' => '5.038002',
'Module::CoreList' => '5.20231129',
'Module::CoreList::Utils'=> '5.20231129',
},
removed => {
}
},
);

sub is_core
Expand Down Expand Up @@ -22554,6 +22590,27 @@ sub is_core
removed => {
}
},
5.034003 => {
delta_from => 5.034002,
changed => {
},
removed => {
}
},
5.036003 => {
delta_from => 5.036002,
changed => {
},
removed => {
}
},
5.038002 => {
delta_from => 5.038001,
changed => {
},
removed => {
}
},
);

%deprecated = _undelta(\%deprecated);
Expand Down
23 changes: 22 additions & 1 deletion dist/Module-CoreList/lib/Module/CoreList/Utils.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Module::CoreList;

our $VERSION = '5.20231125';
our $VERSION = '5.20231129';
our %utilities;

sub utilities {
Expand Down Expand Up @@ -1958,6 +1958,27 @@ my %delta = (
removed => {
}
},
5.034003 => {
delta_from => 5.034002,
changed => {
},
removed => {
}
},
5.036003 => {
delta_from => 5.036002,
changed => {
},
removed => {
}
},
5.038002 => {
delta_from => 5.038001,
changed => {
},
removed => {
}
},
);

%utilities = Module::CoreList::_undelta(\%delta);
Expand Down

0 comments on commit 5f29976

Please sign in to comment.