From 8179a6e7df97c98c3ecc3ac1bf33fe118be1833a Mon Sep 17 00:00:00 2001 From: Karen Etheridge Date: Sun, 19 Nov 2023 19:49:17 -0800 Subject: [PATCH] Update Module::CoreList for 5.39.6 --- dist/Module-CoreList/Changes | 3 +++ dist/Module-CoreList/lib/Module/CoreList.pm | 21 ++++++++++++++++++- .../lib/Module/CoreList/Utils.pm | 9 +++++++- 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/dist/Module-CoreList/Changes b/dist/Module-CoreList/Changes index 3b62632ea280..68b1d2188f36 100644 --- a/dist/Module-CoreList/Changes +++ b/dist/Module-CoreList/Changes @@ -1,3 +1,6 @@ +5.20231220 + - Updated for v5.39.6 + 5.20231120 - Updated for v5.39.5 diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index 40887a3cc501..4b1c4739fdb6 100644 --- a/dist/Module-CoreList/lib/Module/CoreList.pm +++ b/dist/Module-CoreList/lib/Module/CoreList.pm @@ -4,7 +4,7 @@ use strict; our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta ); use version; -our $VERSION = '5.20231120'; +our $VERSION = '5.20231220'; 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__) } } @@ -411,6 +411,7 @@ sub changes_between { 5.039003 => '2023-09-20', 5.039004 => '2023-10-25', 5.039005 => '2023-11-20', + 5.039006 => '2023-12-20', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -21061,6 +21062,17 @@ for my $version ( sort { $a <=> $b } keys %released ) { removed => { } }, + 5.039006 => { + delta_from => 5.039005, + changed => { + 'B::Op_private' => '5.039006', + 'Config' => '5.039006', + 'Module::CoreList' => '5.20231220', + 'Module::CoreList::Utils'=> '5.20231220', + }, + removed => { + } + }, ); sub is_core @@ -22497,6 +22509,13 @@ sub is_core removed => { } }, + 5.039006 => { + delta_from => 5.039005, + changed => { + }, + removed => { + } + }, ); %deprecated = _undelta(\%deprecated); diff --git a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm index 51759008091c..e5918e1b4f2c 100644 --- a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm +++ b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm @@ -4,7 +4,7 @@ use strict; use warnings; use Module::CoreList; -our $VERSION = '5.20231120'; +our $VERSION = '5.20231220'; our %utilities; sub utilities { @@ -1937,6 +1937,13 @@ my %delta = ( removed => { } }, + 5.039006 => { + delta_from => 5.039005, + changed => { + }, + removed => { + } + }, ); %utilities = Module::CoreList::_undelta(\%delta);