diff options
-rw-r--r-- | dist/Module-CoreList/Changes | 6 | ||||
-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, 36 insertions, 4 deletions
diff --git a/dist/Module-CoreList/Changes b/dist/Module-CoreList/Changes index 10108c5f9f..680d2affa0 100644 --- a/dist/Module-CoreList/Changes +++ b/dist/Module-CoreList/Changes @@ -1,3 +1,9 @@ +3.04 + - Prepared for v5.19.8 + +3.03 + - Reserved for v5.18.2 + 3.02 - Prepared for v5.19.7 - Added CGI et al deprecation status diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index 6309f18ec9..99f458c09a 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.02'; +$VERSION = '3.04'; my $dumpinc = 0; sub import { @@ -242,6 +242,7 @@ sub changes_between { 5.019005 => '2013-10-20', 5.019006 => '2013-11-20', 5.019007 => '2013-12-20', + 5.019008 => '????-??-??', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -9253,6 +9254,17 @@ for my $version ( sort { $a <=> $b } keys %released ) { removed => { } }, + 5.019008 => { + delta_from => 5.019007, + changed => { + 'Config' => '5.019008', + 'Module::CoreList' => '3.04', + 'Module::CoreList::TieHashDelta'=> '3.04', + 'Module::CoreList::Utils'=> '3.04', + }, + removed => { + } + }, ); sub is_core @@ -9612,6 +9624,13 @@ for my $version (sort { $a <=> $b } keys %delta) { removed => { } }, + 5.019008 => { + delta_from => 5.019007, + 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 bedc889299..a5c781b01e 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, 5.19.6 and 5.19.7 releases of perl. +5.19.0, 5.19.1, 5.19.2, 5.19.3, 5.19.4, 5.19.5, 5.19.6, 5.19.7 and 5.19.8 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 0c65921169..0e4533756f 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.02"; +$VERSION = "3.04"; 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 09d942faa3..08e8e59c77 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.02'; +$VERSION = '3.04'; sub utilities { my $perl = shift; @@ -875,6 +875,13 @@ my %delta = ( removed => { } }, + 5.019008 => { + delta_from => 5.019007, + changed => { + }, + removed => { + } + }, ); for my $version (sort { $a <=> $b } keys %delta) { |