diff options
author | Aaron Crane <arc@cpan.org> | 2017-07-20 20:53:42 +0100 |
---|---|---|
committer | Aaron Crane <arc@cpan.org> | 2017-07-20 21:01:16 +0100 |
commit | 56c35cf6201e8e4c101fea1c8bc4878b17afd323 (patch) | |
tree | f7ae8795f70410f0800640ca7c78c0ae8cc56cd1 /dist | |
parent | 0e58c72cd502c10f2cca3ff696e2d585c3555314 (diff) | |
download | perl-56c35cf6201e8e4c101fea1c8bc4878b17afd323.tar.gz |
Bump Perl version from 5.27.2 to 5.27.3
Including the various pieces of Module::CoreList.
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Module-CoreList/Changes | 3 | ||||
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList.pm | 17 | ||||
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList/Utils.pm | 7 |
3 files changed, 27 insertions, 0 deletions
diff --git a/dist/Module-CoreList/Changes b/dist/Module-CoreList/Changes index d95b0b7aa3..d3e18e15a1 100644 --- a/dist/Module-CoreList/Changes +++ b/dist/Module-CoreList/Changes @@ -1,3 +1,6 @@ +5.20170820 + - Updated for v5.27.3 + 5.20170720 - Updated for v5.27.2 diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index 8de64854d4..39316a548f 100644 --- a/dist/Module-CoreList/lib/Module/CoreList.pm +++ b/dist/Module-CoreList/lib/Module/CoreList.pm @@ -319,6 +319,7 @@ sub changes_between { 5.022004 => '2017-07-15', 5.024002 => '2017-07-15', 5.027002 => '2017-07-20', + 5.027003 => '2017-08-20', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -14365,6 +14366,15 @@ for my $version ( sort { $a <=> $b } keys %released ) { removed => { } }, + 5.027003 => { + delta_from => 5.027002, + changed => { + 'B::Op_private' => '5.027003', + 'Config' => '5.027003', + }, + removed => { + } + }, ); sub is_core @@ -15157,6 +15167,13 @@ sub is_core removed => { } }, + 5.027003 => { + delta_from => 5.027002, + 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 70d26f85ad..58561e5a87 100644 --- a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm +++ b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm @@ -1298,6 +1298,13 @@ my %delta = ( removed => { } }, + 5.027003 => { + delta_from => 5.027002, + changed => { + }, + removed => { + } + }, ); %utilities = Module::CoreList::_undelta(\%delta); |