summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2023-04-20 20:45:25 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2023-04-20 20:45:25 +0100
commitcf4572e56a4eb6fa6c1cc391275befc2a24ab419 (patch)
treeef13d048e206af846deb928a2656e889cc4ec488
parentf4cdcf043eee941b572ec97a9ca9b68d344191ff (diff)
downloadperl-cf4572e56a4eb6fa6c1cc391275befc2a24ab419.tar.gz
Prepare Module-CoreList for 5.37.12
-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 9dc309c23b..9941018da6 100644
--- a/dist/Module-CoreList/Changes
+++ b/dist/Module-CoreList/Changes
@@ -1,3 +1,6 @@
+5.20230520
+ - Updated for v5.37.12
+
5.20230420
- Updated for v5.37.11
diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm
index d9cb67e87d..6d3ab712ab 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.20230420';
+our $VERSION = '5.20230520';
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__) } }
@@ -404,6 +404,7 @@ sub changes_between {
5.037009 => '2023-02-20',
5.037010 => '2023-03-20',
5.037011 => '2023-04-20',
+ 5.037012 => '2023-05-20',
);
for my $version ( sort { $a <=> $b } keys %released ) {
@@ -20277,6 +20278,17 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
+ 5.037012 => {
+ delta_from => 5.037011,
+ changed => {
+ 'B::Op_private' => '5.037012',
+ 'Config' => '5.037012',
+ 'Module::CoreList' => '5.20230520',
+ 'Module::CoreList::Utils'=> '5.20230520',
+ },
+ removed => {
+ }
+ },
);
sub is_core
@@ -21664,6 +21676,13 @@ sub is_core
removed => {
}
},
+ 5.037012 => {
+ delta_from => 5.037011,
+ 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 ad53f0d7d0..6fd67373cc 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.20230420';
+our $VERSION = '5.20230520';
our %utilities;
sub utilities {
@@ -1888,6 +1888,13 @@ my %delta = (
removed => {
}
},
+ 5.037012 => {
+ delta_from => 5.037011,
+ changed => {
+ },
+ removed => {
+ }
+ },
);
%utilities = Module::CoreList::_undelta(\%delta);