summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2020-02-21 15:25:01 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2020-02-21 15:25:01 +0000
commit4b9ba9feb3d51bf370480b00365cd57068336ed4 (patch)
treefeef95f5cc02ba2298c4b33e692faa916e33e842
parentefd06a1d57946562c22430118a43ff3043ed833e (diff)
downloadperl-4b9ba9feb3d51bf370480b00365cd57068336ed4.tar.gz
Shim update of Module::CoreList for v5.31.10
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList.pm19
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList/Utils.pm9
2 files changed, 26 insertions, 2 deletions
diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm
index 52ad6f6349..e26d0a762a 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.20200220';
+our $VERSION = '5.20200320';
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__) } }
@@ -360,6 +360,7 @@ sub changes_between {
5.031007 => '2019-12-20',
5.031008 => '2020-01-20',
5.031009 => '2020-02-20',
+ 5.031010 => '2020-03-20',
);
for my $version ( sort { $a <=> $b } keys %released ) {
@@ -17342,6 +17343,15 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
+ 5.031010 => {
+ delta_from => 5.031009,
+ changed => {
+ 'B::Op_private' => '5.031010',
+ 'Config' => '5.03101',
+ },
+ removed => {
+ }
+ },
);
sub is_core
@@ -18421,6 +18431,13 @@ sub is_core
removed => {
}
},
+ 5.031010 => {
+ delta_from => 5.031009,
+ 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 c3004f8619..39f7145605 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.20200220';
+our $VERSION = '5.20200320';
our %utilities;
sub utilities {
@@ -1580,6 +1580,13 @@ my %delta = (
removed => {
}
},
+ 5.031010 => {
+ delta_from => 5.031009,
+ changed => {
+ },
+ removed => {
+ }
+ },
);
%utilities = Module::CoreList::_undelta(\%delta);