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:41 +0000
commit030e62bcd27b26afe567970ee128585a88371153 (patch)
tree67ff4d6874120eeb14433c64ffc3b744839a7836
parent0f3c9b72ccd6f8acb6003edf7d81f3ce303b1d66 (diff)
downloadperl-030e62bcd27b26afe567970ee128585a88371153.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 d5728697cc..4a253cca6d 100644
--- a/dist/Module-CoreList/lib/Module/CoreList.pm
+++ b/dist/Module-CoreList/lib/Module/CoreList.pm
@@ -335,6 +335,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 ) {
@@ -15467,6 +15468,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 5266d9b1f0..0b0d2af938 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);