summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2020-05-14 17:03:33 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2020-05-14 17:03:33 +0100
commit7c3d5a6c91729d97dd2ccff3e1c5a61433339562 (patch)
tree7ec4d01592f9f195eafa331497b9054cd5139608
parentf6beb2888a4c997d4378437fcd398d13243c5c51 (diff)
downloadperl-7c3d5a6c91729d97dd2ccff3e1c5a61433339562.tar.gz
Update Module::CoreList with data so far for the imminent 5.28.3
($VERSION bumps, Changes entry, Porting/corelist.pl and %released date)
-rw-r--r--dist/Module-CoreList/Changes3
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList.pm23
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList/Utils.pm9
3 files changed, 32 insertions, 3 deletions
diff --git a/dist/Module-CoreList/Changes b/dist/Module-CoreList/Changes
index 61c5dd0882..4ea47dddc8 100644
--- a/dist/Module-CoreList/Changes
+++ b/dist/Module-CoreList/Changes
@@ -1,3 +1,6 @@
+5.20200601_28
+ - Updated for v5.28.3
+
5.20200428
- Updated for v5.31.11
diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm
index 80d4cd0d53..f8ce7d582a 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.20190419';
+our $VERSION = '5.20200601_28';
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__) } }
@@ -363,6 +363,7 @@ sub changes_between {
5.030002 => '2020-03-14',
5.031010 => '2020-03-20',
5.031011 => '2020-04-28',
+ 5.028003 => '2020-06-01',
);
for my $version ( sort { $a <=> $b } keys %released ) {
@@ -17460,6 +17461,17 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
+ 5.028003 => {
+ delta_from => 5.028002,
+ changed => {
+ 'B::Op_private' => '5.028003',
+ 'Config' => '5.028003',
+ 'Module::CoreList' => '5.20200601_28',
+ 'Module::CoreList::Utils'=> '5.20200601_28',
+ },
+ removed => {
+ }
+ },
);
sub is_core
@@ -18560,6 +18572,13 @@ sub is_core
removed => {
}
},
+ 5.028003 => {
+ delta_from => 5.028002,
+ changed => {
+ },
+ removed => {
+ }
+ },
);
%deprecated = _undelta(\%deprecated);
@@ -19453,7 +19472,7 @@ sub is_core
'Unicode::Collate::CJK::Stroke'=> undef,
'Unicode::Collate::CJK::Zhuyin'=> undef,
'Unicode::Collate::Locale'=> undef,
- 'Win32' => undef,
+ 'Win32' => 'https://github.com/perl-libwin32/win32/issues',
'Win32API::File' => undef,
'Win32API::File::inc::ExtUtils::Myconst2perl'=> undef,
'autodie' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
diff --git a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm
index d648d8c98f..2f80d2ebfe 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.20190419';
+our $VERSION = '5.20200601_28';
our %utilities;
sub utilities {
@@ -1601,6 +1601,13 @@ my %delta = (
removed => {
}
},
+ 5.028003 => {
+ delta_from => 5.028002,
+ changed => {
+ },
+ removed => {
+ }
+ },
);
%utilities = Module::CoreList::_undelta(\%delta);