Skip to content

Commit 792650c

Browse files
committed
Update Module::CoreList with data so far for the imminent 5.40.2
($VERSION bumps, %released entry, Porting/corelist.pl and Changes entry for a (very) tentative release date of 13 Apr 2025)
1 parent f48297b commit 792650c

File tree

3 files changed

+33
-6
lines changed

3 files changed

+33
-6
lines changed

dist/Module-CoreList/Changes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
5.20250413_40
2+
- Updated for v5.40.2
3+
14
5.20250321
25
- Updated for v5.41.10
36

dist/Module-CoreList/lib/Module/CoreList.pm

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44
our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta );
55

66
use version;
7-
our $VERSION = '5.20250321';
7+
our $VERSION = '5.20250413_40';
88

99
sub PKG_PATTERN () { q#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z# }
1010
sub _looks_like_invocant ($) { local $@; !!eval { $_[0]->isa(__PACKAGE__) } }
@@ -436,6 +436,7 @@ sub changes_between {
436436
5.041008 => '2025-01-20',
437437
5.041009 => '2025-02-24',
438438
5.041010 => '2025-03-21',
439+
5.040002 => '2025-04-13',
439440
);
440441

441442
for my $version ( sort { $a <=> $b } keys %released ) {
@@ -23050,6 +23051,17 @@ for my $version ( sort { $a <=> $b } keys %released ) {
2305023051
removed => {
2305123052
}
2305223053
},
23054+
5.040002 => {
23055+
delta_from => 5.040001,
23056+
changed => {
23057+
'B::Op_private' => '5.040002',
23058+
'Config' => '5.040002',
23059+
'Module::CoreList' => '5.20250413_40',
23060+
'Module::CoreList::Utils'=> '5.20250413_40',
23061+
},
23062+
removed => {
23063+
}
23064+
},
2305323065
);
2305423066

2305523067
sub is_core
@@ -24654,6 +24666,13 @@ sub is_core
2465424666
removed => {
2465524667
}
2465624668
},
24669+
5.040002 => {
24670+
delta_from => 5.040001,
24671+
changed => {
24672+
},
24673+
removed => {
24674+
}
24675+
},
2465724676
);
2465824677

2465924678
%deprecated = _undelta(\%deprecated);
@@ -25148,7 +25167,6 @@ sub is_core
2514825167
'Test2::Util::HashBase' => 'cpan',
2514925168
'Test2::Util::Importer' => 'cpan',
2515025169
'Test2::Util::Ref' => 'cpan',
25151-
'Test2::Util::Sig' => 'cpan',
2515225170
'Test2::Util::Stash' => 'cpan',
2515325171
'Test2::Util::Sub' => 'cpan',
2515425172
'Test2::Util::Table' => 'cpan',
@@ -25709,7 +25727,6 @@ sub is_core
2570925727
'Test2::Util::HashBase' => 'https://github.com/Test-More/test-more/issues',
2571025728
'Test2::Util::Importer' => 'https://github.com/Test-More/test-more/issues',
2571125729
'Test2::Util::Ref' => 'https://github.com/Test-More/test-more/issues',
25712-
'Test2::Util::Sig' => 'https://github.com/Test-More/test-more/issues',
2571325730
'Test2::Util::Stash' => 'https://github.com/Test-More/test-more/issues',
2571425731
'Test2::Util::Sub' => 'https://github.com/Test-More/test-more/issues',
2571525732
'Test2::Util::Table' => 'https://github.com/Test-More/test-more/issues',
@@ -25773,11 +25790,11 @@ sub is_core
2577325790
'bignum' => undef,
2577425791
'bigrat' => undef,
2577525792
'encoding' => undef,
25776-
'experimental' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental',
25793+
'experimental' => 'https://github.com/Dual-Life/experimental/issues',
2577725794
'ok' => 'https://github.com/Test-More/test-more/issues',
2577825795
'parent' => undef,
2577925796
'perlfaq' => 'https://github.com/perl-doc-cats/perlfaq/issues',
25780-
'stable' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental',
25797+
'stable' => 'https://github.com/Dual-Life/experimental/issues',
2578125798
'version' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
2578225799
'version::regex' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
2578325800
);

dist/Module-CoreList/lib/Module/CoreList/Utils.pm

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44
use warnings;
55
use Module::CoreList;
66

7-
our $VERSION = '5.20250321';
7+
our $VERSION = '5.20250413_40';
88
our %utilities;
99

1010
sub utilities {
@@ -2112,6 +2112,13 @@ my %delta = (
21122112
removed => {
21132113
}
21142114
},
2115+
5.040002 => {
2116+
delta_from => 5.040001,
2117+
changed => {
2118+
},
2119+
removed => {
2120+
}
2121+
},
21152122
);
21162123

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

0 commit comments

Comments
 (0)