Skip to content

Commit

Permalink
Update Module::CoreList for upcoming releases of 5.34.2, 5.36.2, 5.38.1
Browse files Browse the repository at this point in the history
  • Loading branch information
leonerd committed Nov 26, 2023
1 parent 6da59fe commit 3015364
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 6 deletions.
4 changes: 2 additions & 2 deletions dist/Module-CoreList/Changes
@@ -1,5 +1,5 @@
5.20231220
- Updated for v5.39.6
5.20231125
- Updated for v5.34.2, v5.36.2, v5.38.1

5.20231120
- Updated for v5.39.5
Expand Down
57 changes: 54 additions & 3 deletions 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.20231220';
our $VERSION = '5.20231125';

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 @@ -412,6 +412,9 @@ sub changes_between {
5.039004 => '2023-10-25',
5.039005 => '2023-11-20',
5.039006 => '2023-12-20',
5.034002 => '2023-11-25',
5.036002 => '2023-11-25',
5.038001 => '2023-11-25',
);

for my $version ( sort { $a <=> $b } keys %released ) {
Expand Down Expand Up @@ -21067,8 +21070,35 @@ for my $version ( sort { $a <=> $b } keys %released ) {
changed => {
'B::Op_private' => '5.039006',
'Config' => '5.039006',
'Module::CoreList' => '5.20231220',
'Module::CoreList::Utils'=> '5.20231220',
'Module::CoreList' => '5.20231125',
'Module::CoreList::Utils'=> '5.20231125',
},
removed => {
}
},
5.034002 => {
delta_from => 5.034001,
changed => {
'B::Op_private' => '5.034002',
'Config' => '5.034002',
},
removed => {
}
},
5.036002 => {
delta_from => 5.036001,
changed => {
'B::Op_private' => '5.036002',
'Config' => '5.036002',
},
removed => {
}
},
5.038001 => {
delta_from => 5.038000,
changed => {
'B::Op_private' => '5.038001',
'Config' => '5.038001',
},
removed => {
}
Expand Down Expand Up @@ -22516,6 +22546,27 @@ sub is_core
removed => {
}
},
5.034002 => {
delta_from => 5.034001,
changed => {
},
removed => {
}
},
5.036002 => {
delta_from => 5.036001,
changed => {
},
removed => {
}
},
5.038001 => {
delta_from => 5.038,
changed => {
},
removed => {
}
},
);

%deprecated = _undelta(\%deprecated);
Expand Down
23 changes: 22 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.20231220';
our $VERSION = '5.20231125';
our %utilities;

sub utilities {
Expand Down Expand Up @@ -1944,6 +1944,27 @@ my %delta = (
removed => {
}
},
5.034002 => {
delta_from => 5.034001,
changed => {
},
removed => {
}
},
5.036002 => {
delta_from => 5.036001,
changed => {
},
removed => {
}
},
5.038001 => {
delta_from => 5.038000,
changed => {
},
removed => {
}
},
);

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

0 comments on commit 3015364

Please sign in to comment.