From 952309013672f722efcbaaf785f6126ec04067db Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Wed, 25 Oct 2023 23:51:13 +0200 Subject: [PATCH] Prepare Module::Corelist for 5.39.5 --- dist/Module-CoreList/Changes | 3 +++ dist/Module-CoreList/lib/Module/CoreList.pm | 18 +++++++++++++++++- .../lib/Module/CoreList/Utils.pm | 9 ++++++++- 3 files changed, 28 insertions(+), 2 deletions(-) diff --git a/dist/Module-CoreList/Changes b/dist/Module-CoreList/Changes index 871892ea2f29..3b62632ea280 100644 --- a/dist/Module-CoreList/Changes +++ b/dist/Module-CoreList/Changes @@ -1,3 +1,6 @@ +5.20231120 + - Updated for v5.39.5 + 5.20231025 - Updated for v5.39.4 diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index 5b7516443049..69a4306e0396 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.20231025'; +our $VERSION = '5.20231120'; 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__) } } @@ -410,6 +410,7 @@ sub changes_between { 5.039002 => '2023-08-20', 5.039003 => '2023-09-20', 5.039004 => '2023-10-25', + 5.039005 => '2023-11-20', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -20899,6 +20900,14 @@ for my $version ( sort { $a <=> $b } keys %released ) { removed => { } }, + 5.039005 => { + delta_from => 5.039004, + changed => { + 'Config' => '5.039005', + }, + removed => { + } + }, ); sub is_core @@ -22328,6 +22337,13 @@ sub is_core removed => { } }, + 5.039005 => { + delta_from => 5.039004, + 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 e948b120962a..51759008091c 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.20231025'; +our $VERSION = '5.20231120'; our %utilities; sub utilities { @@ -1930,6 +1930,13 @@ my %delta = ( removed => { } }, + 5.039005 => { + delta_from => 5.039004, + changed => { + }, + removed => { + } + }, ); %utilities = Module::CoreList::_undelta(\%delta);