summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorreneeb <info@perl-services.de>2023-01-21 00:42:50 +0100
committerreneeb <info@perl-services.de>2023-01-21 00:42:50 +0100
commitf195468b0f1bf89b6b1dac4987efe3836cf3380f (patch)
treeaff45425cffe2d3b6d7ced7833b710dec531ba00 /dist
parent0036fddf861c3e1cc51fe78cf8c252b97b949e91 (diff)
downloadperl-f195468b0f1bf89b6b1dac4987efe3836cf3380f.tar.gz
Prepare Module::CoreList for 5.37.9
Diffstat (limited to 'dist')
-rw-r--r--dist/Module-CoreList/Changes3
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList.pm21
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList/Utils.pm9
3 files changed, 31 insertions, 2 deletions
diff --git a/dist/Module-CoreList/Changes b/dist/Module-CoreList/Changes
index bba1cf7250..b3654905f8 100644
--- a/dist/Module-CoreList/Changes
+++ b/dist/Module-CoreList/Changes
@@ -1,3 +1,6 @@
+5.20230220
+ - Updated for v5.37.9
+
5.20230120
- Updated for v5.37.8
diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm
index 94b61d264d..5718071295 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.20230120';
+our $VERSION = '5.20230220';
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__) } }
@@ -401,6 +401,7 @@ sub changes_between {
5.037006 => '2022-11-20',
5.037007 => '2022-12-20',
5.037008 => '2023-01-20',
+ 5.037009 => '2023-02-20',
);
for my $version ( sort { $a <=> $b } keys %released ) {
@@ -19964,6 +19965,17 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
+ 5.037009 => {
+ delta_from => 5.037008,
+ changed => {
+ 'B::Op_private' => '5.037009',
+ 'Config' => '5.037009',
+ 'Module::CoreList' => '5.20230220',
+ 'Module::CoreList::Utils'=> '5.20230220',
+ },
+ removed => {
+ }
+ },
);
sub is_core
@@ -21330,6 +21342,13 @@ sub is_core
removed => {
}
},
+ 5.037009 => {
+ delta_from => 5.037008,
+ 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 a89115c5b0..610bedd38d 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.20230120';
+our $VERSION = '5.20230220';
our %utilities;
sub utilities {
@@ -1867,6 +1867,13 @@ my %delta = (
removed => {
}
},
+ 5.037009 => {
+ delta_from => 5.037008,
+ changed => {
+ },
+ removed => {
+ }
+ },
);
%utilities = Module::CoreList::_undelta(\%delta);