Skip to content

Commit d1a7059

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

File tree

3 files changed

+33
-4
lines changed

3 files changed

+33
-4
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_38
2+
- Updated for v5.38.4
3+
14
5.20250321
25
- Updated for v5.41.10
36

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

Lines changed: 22 additions & 3 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_38';
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.038004 => '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.038004 => {
23055+
delta_from => 5.038003,
23056+
changed => {
23057+
'B::Op_private' => '5.038004',
23058+
'Config' => '5.038004',
23059+
'Module::CoreList' => '5.20250413_38',
23060+
'Module::CoreList::Utils'=> '5.20250413_38',
23061+
},
23062+
removed => {
23063+
}
23064+
},
2305323065
);
2305423066

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

2465924678
%deprecated = _undelta(\%deprecated);
@@ -25505,11 +25524,11 @@ sub is_core
2550525524
'bignum' => undef,
2550625525
'bigrat' => undef,
2550725526
'encoding' => undef,
25508-
'experimental' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental',
25527+
'experimental' => 'https://github.com/Dual-Life/experimental/issues',
2550925528
'ok' => 'https://github.com/Test-More/test-more/issues',
2551025529
'parent' => undef,
2551125530
'perlfaq' => 'https://github.com/perl-doc-cats/perlfaq/issues',
25512-
'stable' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental',
25531+
'stable' => 'https://github.com/Dual-Life/experimental/issues',
2551325532
'version' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
2551425533
'version::regex' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
2551525534
);

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_38';
88
our %utilities;
99

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

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

0 commit comments

Comments
 (0)