Skip to content

Commit

Permalink
Prepare Module::CoreList for 5.41.9
Browse files Browse the repository at this point in the history
  • Loading branch information
steve-m-hay committed Jan 20, 2025
1 parent 6050a3d commit 50d6669
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
3 changes: 3 additions & 0 deletions dist/Module-CoreList/Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
5.20250220
- Updated for v5.41.9

5.20250120
- Updated for v5.41.8

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.20250120';
our $VERSION = '5.20250220';

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 @@ -434,6 +434,7 @@ sub changes_between {
5.038003 => '2025-01-18',
5.040001 => '2025-01-18',
5.041008 => '2025-01-20',
5.041009 => '2025-02-20',
);

for my $version ( sort { $a <=> $b } keys %released ) {
Expand Down Expand Up @@ -22763,6 +22764,17 @@ for my $version ( sort { $a <=> $b } keys %released ) {
'Test::Builder::IO::Scalar'=> 1,
}
},
5.041009 => {
delta_from => 5.041008,
changed => {
'B::Op_private' => '5.041009',
'Config' => '5.041009',
'Module::CoreList' => '5.20250220',
'Module::CoreList::Utils'=> '5.20250220',
},
removed => {
}
},
);

sub is_core
Expand Down Expand Up @@ -24353,6 +24365,13 @@ sub is_core
removed => {
}
},
5.041009 => {
delta_from => 5.041008,
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.20250120';
our $VERSION = '5.20250220';
our %utilities;

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

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

0 comments on commit 50d6669

Please sign in to comment.