diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2013-11-20 21:29:47 +0000 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2013-11-20 21:29:47 +0000 |
commit | b3f76264aedf5657226d5dca1c16b2b218e9264e (patch) | |
tree | a655dcab2b804fb1ec94346c0c0c15b61691a5f7 /dist | |
parent | 4054a5ec18e0da1ef4fb2cfb41311f83a86c7f78 (diff) | |
download | perl-b3f76264aedf5657226d5dca1c16b2b218e9264e.tar.gz |
Module-CoreList prepared for v5.19.7
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Module-CoreList/Changes | 3 | ||||
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList.pm | 21 | ||||
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList.pod | 2 | ||||
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm | 2 | ||||
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList/Utils.pm | 9 |
5 files changed, 33 insertions, 4 deletions
diff --git a/dist/Module-CoreList/Changes b/dist/Module-CoreList/Changes index e4d01717bf..2d25a48193 100644 --- a/dist/Module-CoreList/Changes +++ b/dist/Module-CoreList/Changes @@ -1,3 +1,6 @@ +3.02 + - Prepared for v5.19.7 + 3.01 Wed Nov 20 2013 - Finalised for v5.19.6 diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index a583178dac..ca9b168533 100644 --- a/dist/Module-CoreList/lib/Module/CoreList.pm +++ b/dist/Module-CoreList/lib/Module/CoreList.pm @@ -3,7 +3,7 @@ use strict; use vars qw/$VERSION %released %version %families %upstream %bug_tracker %deprecated %delta/; use Module::CoreList::TieHashDelta; -$VERSION = '3.01'; +$VERSION = '3.02'; my $dumpinc = 0; sub import { @@ -241,6 +241,7 @@ sub changes_between { 5.019004 => '2013-09-20', 5.019005 => '2013-10-20', 5.019006 => '2013-11-20', + 5.019007 => '????-??-??', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -9133,6 +9134,17 @@ for my $version ( sort { $a <=> $b } keys %released ) { removed => { } }, + 5.019007 => { + delta_from => 5.019006, + changed => { + 'Config' => '5.019007', + 'Module::CoreList' => '3.02', + 'Module::CoreList::TieHashDelta'=> '3.02', + 'Module::CoreList::Utils'=> '3.02', + }, + removed => { + } + }, ); sub is_core @@ -9476,6 +9488,13 @@ for my $version (sort { $a <=> $b } keys %delta) { removed => { } }, + 5.019007 => { + delta_from => 5.019006, + changed => { + }, + removed => { + } + }, ); for my $version (sort { $a <=> $b } keys %deprecated) { diff --git a/dist/Module-CoreList/lib/Module/CoreList.pod b/dist/Module-CoreList/lib/Module/CoreList.pod index 793f08a8ad..bedc889299 100644 --- a/dist/Module-CoreList/lib/Module/CoreList.pod +++ b/dist/Module-CoreList/lib/Module/CoreList.pod @@ -228,7 +228,7 @@ Module::CoreList currently covers the 5.000, 5.001, 5.002, 5.003_07, 5.15.0, 5.15.1, 5.15.2, 5.15.3, 5.15.4, 5.15.5, 5.15.6, 5.15.7, 5.15.8, 5.15.9, 5.16.0, 5.16.1, 5.16.2, 5.16.3, 5.17.0, 5.17.1, 5.17.2, 5.17.3, 5.17.4, 5.17.5, 5.17.6, 5.17.7, 5.17.8, 5.17.9, 5.17.10, 5.17.11, 5.18.0, -5.19.0, 5.19.1, 5.19.2, 5.19.3, 5.19.4, 5.19.5 and 5.19.6 releases of perl. +5.19.0, 5.19.1, 5.19.2, 5.19.3, 5.19.4, 5.19.5, 5.19.6 and 5.19.7 releases of perl. =head1 HISTORY diff --git a/dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm b/dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm index b43fa1d6b3..0c65921169 100644 --- a/dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm +++ b/dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm @@ -3,7 +3,7 @@ package Module::CoreList::TieHashDelta; use strict; use vars qw($VERSION); -$VERSION = "3.01"; +$VERSION = "3.02"; sub TIEHASH { my ($class, $changed, $removed, $parent) = @_; diff --git a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm index eae18fd8e1..09d942faa3 100644 --- a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm +++ b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm @@ -6,7 +6,7 @@ use vars qw[$VERSION %utilities]; use Module::CoreList; use Module::CoreList::TieHashDelta; -$VERSION = '3.01'; +$VERSION = '3.02'; sub utilities { my $perl = shift; @@ -868,6 +868,13 @@ my %delta = ( removed => { } }, + 5.019007 => { + delta_from => 5.019006, + changed => { + }, + removed => { + } + }, ); for my $version (sort { $a <=> $b } keys %delta) { |