diff options
author | Richard Leach <richardleach@users.noreply.github.com> | 2021-01-21 03:43:50 +0000 |
---|---|---|
committer | Richard Leach <richardleach@users.noreply.github.com> | 2021-01-21 03:43:50 +0000 |
commit | 0d0e553791595795fcd221b1d3e396f792bd0966 (patch) | |
tree | 7bec9aded3d850079e0536605b07ff26ebe6e6a2 /dist | |
parent | 0594e0ad3bfa129d3a242899f8fe2a0adf5e71dd (diff) | |
download | perl-0d0e553791595795fcd221b1d3e396f792bd0966.tar.gz |
Prepare Module::Corelist for 5.33.7
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Module-CoreList/Changes | 3 | ||||
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList.pm | 21 | ||||
-rw-r--r-- | 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 27f989929f..e9ac54e366 100644 --- a/dist/Module-CoreList/Changes +++ b/dist/Module-CoreList/Changes @@ -1,3 +1,6 @@ +5.20210220 + - Updated for v5.33.7 + 5.20210120 - Updated for v5.33.6 diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index b0e58ed90a..7d7f9266db 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.20210120'; +our $VERSION = '5.20210220'; 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__) } } @@ -373,6 +373,7 @@ sub changes_between { 5.033004 => '2020-11-20', 5.033005 => '2020-12-20', 5.033006 => '2021-01-20', + 5.033007 => '2021-02-20', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -18300,6 +18301,17 @@ for my $version ( sort { $a <=> $b } keys %released ) { removed => { } }, + 5.033007 => { + delta_from => 5.033006, + changed => { + 'B::Op_private' => '5.033007', + 'Config' => '5.033007', + 'Module::CoreList' => '5.20210220', + 'Module::CoreList::Utils'=> '5.20210220', + }, + removed => { + } + }, ); sub is_core @@ -19470,6 +19482,13 @@ sub is_core removed => { } }, + 5.033007 => { + delta_from => 5.033006, + 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 8c8752b1f4..41c1fe68f5 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.20210120'; +our $VERSION = '5.20210220'; our %utilities; sub utilities { @@ -1671,6 +1671,13 @@ my %delta = ( removed => { } }, + 5.033007 => { + delta_from => 5.033006, + changed => { + }, + removed => { + } + }, ); %utilities = Module::CoreList::_undelta(\%delta); |