Skip to content

Commit

Permalink
Prepare Module::CoreList for 5.39.11
Browse files Browse the repository at this point in the history
  • Loading branch information
leonerd committed Apr 28, 2024
1 parent 0bb06e1 commit d330c0a
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
6 changes: 6 additions & 0 deletions dist/Module-CoreList/Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
5.20240520
- Updated for v5.39.11

5.20240420
- Updated for v5.39.10

5.20240320
- Updated for v5.39.9

Expand Down
21 changes: 20 additions & 1 deletion dist/Module-CoreList/lib/Module/CoreList.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta );

use version;
our $VERSION = '5.20240420';
our $VERSION = '5.20240520';

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

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

sub is_core
Expand Down Expand Up @@ -23122,6 +23134,13 @@ sub is_core
removed => {
}
},
5.039011 => {
delta_from => 5.03901,
changed => {
},
removed => {
}
},
);

%deprecated = _undelta(\%deprecated);
Expand Down
9 changes: 8 additions & 1 deletion dist/Module-CoreList/lib/Module/CoreList/Utils.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Module::CoreList;

our $VERSION = '5.20240420';
our $VERSION = '5.20240520';
our %utilities;

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

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

0 comments on commit d330c0a

Please sign in to comment.