summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSawyer X <xsawyerx@cpan.org>2018-06-27 01:04:21 +0300
committerSteve Hay <steve.m.hay@googlemail.com>2018-11-02 22:04:33 +0000
commit9ff9f025895962a8f6e80631938477cf97613319 (patch)
treea7d49c87fcd2ec163dcbb0417118072b22aeee05
parentaa5c1e3d5e77faf982ce3a17ac14e5e0f8dca51c (diff)
downloadperl-9ff9f025895962a8f6e80631938477cf97613319.tar.gz
Fix Module::CoreList tests for 5.29.1
(cherry picked from commit c176529fad91d300795d3623356b95597806200f)
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList.pm4
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList/Utils.pm7
2 files changed, 11 insertions, 0 deletions
diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm
index 29c1022257..2ac3a46f24 100644
--- a/dist/Module-CoreList/lib/Module/CoreList.pm
+++ b/dist/Module-CoreList/lib/Module/CoreList.pm
@@ -341,6 +341,7 @@ sub changes_between {
5.027011 => '2018-04-20',
5.028000 => '2018-06-22',
5.029000 => '2018-06-26',
+ 5.029001 => '2018-07-20',
);
for my $version ( sort { $a <=> $b } keys %released ) {
@@ -15473,6 +15474,9 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
+ 5.029001 => {
+ delta_from => 5.029000,
+ },
);
sub is_core
diff --git a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm
index b0799b3220..688131dd29 100644
--- a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm
+++ b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm
@@ -1403,6 +1403,13 @@ my %delta = (
removed => {
}
},
+ 5.029001 => {
+ delta_from => 5.029000,
+ changed => {
+ },
+ removed => {
+ }
+ },
);
%utilities = Module::CoreList::_undelta(\%delta);