Skip to content

Commit

Permalink
Prepare Module::CoreList for 5.39.10
Browse files Browse the repository at this point in the history
  • Loading branch information
leonerd committed Mar 22, 2024
1 parent e37d024 commit 26094c4
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Porting/Maintainers.pl
Expand Up @@ -830,7 +830,7 @@ package Maintainers;
},

'Module::CoreList' => {
'DISTRIBUTION' => 'BINGOS/Module-CoreList-5.20240223.tar.gz',
'DISTRIBUTION' => 'BINGOS/Module-CoreList-5.20240320.tar.gz',
'FILES' => q[dist/Module-CoreList],
},

Expand Down
21 changes: 20 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.20240320';
our $VERSION = '5.20240420';

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 @@ -421,6 +421,7 @@ sub changes_between {
5.039007 => '2024-01-20',
5.039008 => '2024-02-23',
5.039009 => '2024-03-20',
5.039010 => '2024-04-20',
);

for my $version ( sort { $a <=> $b } keys %released ) {
Expand Down Expand Up @@ -21360,6 +21361,17 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
5.039010 => {
delta_from => 5.039009,
changed => {
'B::Op_private' => '5.039010',
'Config' => '5.03901',
'Module::CoreList' => '5.20240420',
'Module::CoreList::Utils'=> '5.20240420',
},
removed => {
}
},
);

sub is_core
Expand Down Expand Up @@ -22866,6 +22878,13 @@ sub is_core
removed => {
}
},
5.039010 => {
delta_from => 5.039009,
changed => {
},
removed => {
}
},
);

%deprecated = _undelta(\%deprecated);
Expand Down
9 changes: 8 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.20240320';
our $VERSION = '5.20240420';
our %utilities;

sub utilities {
Expand Down Expand Up @@ -2007,6 +2007,13 @@ my %delta = (
removed => {
}
},
5.039010 => {
delta_from => 5.039009,
changed => {
},
removed => {
}
},
);

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

0 comments on commit 26094c4

Please sign in to comment.