summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSawyer X <xsawyerx@cpan.org>2019-05-22 14:14:04 +0300
committerSawyer X <xsawyerx@cpan.org>2019-05-22 14:14:04 +0300
commit96fe43538a7245dd382dbfcc20447d0a3708acee (patch)
tree63c4a8ceb6fc3a7b37626624c07b79e4d3222a1b
parentb85fe49188f38c4ce839983c5ff89c7d295de6e7 (diff)
downloadperl-96fe43538a7245dd382dbfcc20447d0a3708acee.tar.gz
Update Module::CoreList for 5.31.0
-rw-r--r--dist/Module-CoreList/Changes3
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList.pm22
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList/Utils.pm9
3 files changed, 32 insertions, 2 deletions
diff --git a/dist/Module-CoreList/Changes b/dist/Module-CoreList/Changes
index 675ce3ff80..2fa322d1b7 100644
--- a/dist/Module-CoreList/Changes
+++ b/dist/Module-CoreList/Changes
@@ -1,3 +1,6 @@
+5.20190523
+ - Updated for v5.31.0
+
5.20190522
- Updated for v5.30.0
diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm
index bcf12690d0..10d36a4b5e 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.20190522';
+our $VERSION = '5.20190523';
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__) } }
@@ -349,6 +349,7 @@ sub changes_between {
5.028002 => '2019-04-19',
5.029010 => '2019-04-20',
5.030000 => '2019-05-22',
+ 5.031000 => '2019-05-23',
);
for my $version ( sort { $a <=> $b } keys %released ) {
@@ -16288,6 +16289,18 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
+ 5.031000 => {
+ delta_from => 5.030000,
+ changed => {
+ 'B::Op_private' => '5.031000',
+ 'Config' => '5.031',
+ 'Module::CoreList' => '5.20190523',
+ 'Module::CoreList::Utils'=> '5.20190523',
+ 'feature' => '1.55',
+ },
+ removed => {
+ }
+ },
);
sub is_core
@@ -17290,6 +17303,13 @@ sub is_core
removed => {
}
},
+ 5.031000 => {
+ delta_from => 5.030000,
+ 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 c767d55e74..98f6b7295f 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.20190522';
+our $VERSION = '5.20190523';
our %utilities;
sub utilities {
@@ -1501,6 +1501,13 @@ my %delta = (
removed => {
}
},
+ 5.031000 => {
+ delta_from => 5.030000,
+ changed => {
+ },
+ removed => {
+ }
+ },
);
%utilities = Module::CoreList::_undelta(\%delta);