From 296a08c4087b4555a7fab42f30250baa1bdee0ca Mon Sep 17 00:00:00 2001 From: Tom Hukins Date: Fri, 20 Nov 2020 17:20:05 +0000 Subject: [PATCH] Prepare Module::CoreList for 5.33.5 --- dist/Module-CoreList/Changes | 3 +++ dist/Module-CoreList/lib/Module/CoreList.pm | 21 ++++++++++++++++++++- dist/Module-CoreList/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 bca8d50..768e99e7 100644 --- a/dist/Module-CoreList/Changes +++ b/dist/Module-CoreList/Changes @@ -1,3 +1,6 @@ +5.20201220 + - Updated for v5.33.5 + 5.20201120 - Updated for v5.33.4 diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index b20670d..4b1b758 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.20201120'; +our $VERSION = '5.20201220'; 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__) } } @@ -371,6 +371,7 @@ sub changes_between { 5.033002 => '2020-09-20', 5.033003 => '2020-10-20', 5.033004 => '2020-11-20', + 5.033005 => '2020-12-20', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -18086,6 +18087,17 @@ for my $version ( sort { $a <=> $b } keys %released ) { removed => { } }, + 5.033005 => { + delta_from => 5.033004, + changed => { + 'B::Op_private' => '5.033005', + 'Config' => '5.033005', + 'Module::CoreList' => '5.20201220', + 'Module::CoreList::Utils'=> '5.20201220', + }, + removed => { + } + }, ); sub is_core @@ -19242,6 +19254,13 @@ sub is_core removed => { } }, + 5.033005 => { + delta_from => 5.033004, + 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 1406f1b..036fe87 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.20201120'; +our $VERSION = '5.20201220'; our %utilities; sub utilities { @@ -1657,6 +1657,13 @@ my %delta = ( removed => { } }, + 5.033005 => { + delta_from => 5.033004, + changed => { + }, + removed => { + } + }, ); %utilities = Module::CoreList::_undelta(\%delta); -- 1.8.3.1