This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
5.22.1 today - update Module::CoreList
[perl5.git] / dist / Module-CoreList / lib / Module / CoreList.pm
1 package Module::CoreList;
2 use strict;
3 use vars qw/$VERSION %released %version %families %upstream
4             %bug_tracker %deprecated %delta/;
5 use Module::CoreList::TieHashDelta;
6 use version;
7 $VERSION = '5.20151220';
8
9 sub _released_order {   # Sort helper, to make '?' sort after everything else
10     (substr($released{$a}, 0, 1) eq "?")
11     ? ((substr($released{$b}, 0, 1) eq "?")
12         ? 0
13         : 1)
14     : ((substr($released{$b}, 0, 1) eq "?")
15         ? -1
16         : $released{$a} cmp $released{$b} )
17 }
18
19 my $dumpinc = 0;
20 sub import {
21     my $self = shift;
22     my $what = shift || '';
23     if ($what eq 'dumpinc') {
24         $dumpinc = 1;
25     }
26 }
27
28 END {
29     print "---INC---\n", join "\n" => keys %INC
30       if $dumpinc;
31 }
32
33
34 sub first_release_raw {
35     my $module = shift;
36     $module = shift if eval { $module->isa(__PACKAGE__) }
37       and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
38     my $version = shift;
39
40     my @perls = $version
41         ? grep { defined $version{$_}{ $module } &&
42                         $version{$_}{ $module } ge $version } keys %version
43         : grep { exists $version{$_}{ $module }             } keys %version;
44
45     return @perls;
46 }
47
48 sub first_release_by_date {
49     my @perls = &first_release_raw;
50     return unless @perls;
51     return (sort _released_order @perls)[0];
52 }
53
54 sub first_release {
55     my @perls = &first_release_raw;
56     return unless @perls;
57     return (sort { $a cmp $b } @perls)[0];
58 }
59
60 sub find_modules {
61     my $regex = shift;
62     $regex = shift if eval { $regex->isa(__PACKAGE__) };
63     my @perls = @_;
64     @perls = keys %version unless @perls;
65
66     my %mods;
67     foreach (@perls) {
68         while (my ($k, $v) = each %{$version{$_}}) {
69             $mods{$k}++ if $k =~ $regex;
70         }
71     }
72     return sort keys %mods
73 }
74
75 sub find_version {
76     my $v = shift;
77     if ($v->isa(__PACKAGE__)) {
78         $v = shift;
79         return if not defined $v;
80     }
81     return $version{$v} if defined $version{$v};
82     return;
83 }
84
85 sub is_deprecated {
86     my $module = shift;
87     $module = shift if eval { $module->isa(__PACKAGE__) }
88       and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
89     my $perl_version = shift;
90     $perl_version ||= $];
91     return unless $module && exists $deprecated{$perl_version}{$module};
92     return $deprecated{$perl_version}{$module};
93 }
94
95 sub deprecated_in {
96     my $module = shift;
97     $module = shift if eval { $module->isa(__PACKAGE__) }
98       and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
99     return unless $module;
100     my @perls = grep { exists $deprecated{$_}{$module} } keys %deprecated;
101     return unless @perls;
102     require List::Util;
103     return List::Util::minstr(@perls);
104 }
105
106 sub removed_from {
107   my @perls = &removed_raw;
108   return shift @perls;
109 }
110
111 sub removed_from_by_date {
112   my @perls = sort _released_order &removed_raw;
113   return shift @perls;
114 }
115
116 sub removed_raw {
117   my $mod = shift;
118   $mod = shift if eval { $mod->isa(__PACKAGE__) }
119       and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
120   return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
121   my $last = pop @perls;
122   my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
123   return @removed;
124 }
125
126 sub changes_between {
127   my $left_ver = shift;
128   $left_ver = shift if eval { $left_ver->isa(__PACKAGE__) };
129   my $right_ver = shift;
130
131   my $left  = $version{ $left_ver };
132   my $right = $version{ $right_ver };
133
134   my %uniq = (%$left, %$right);
135
136   my %changes;
137   for my $lib (keys %uniq) {
138       my $lhs = exists $left->{ $lib }
139               ? (defined $left->{ $lib } ? $left->{ $lib } : '(undef)')
140               : '(absent)';
141       my $rhs = exists $right->{ $lib }
142               ? (defined $right->{ $lib } ? $right->{ $lib } : '(undef)')
143               : '(absent)';
144
145       next if $lhs eq $rhs;
146
147       my $change = {
148         (exists $left->{$lib}  ? (left  => $left->{$lib})  : ()),
149         (exists $right->{$lib} ? (right => $right->{$lib}) : ()),
150       };
151
152       $changes{$lib} = $change;
153   }
154
155   return %changes;
156 }
157
158 # When things escaped.
159 # NB. If you put version numbers with trailing zeroes here, you
160 # should also add an alias for the numerical ($]) version; see
161 # just before the __END__ of this module.
162 %released = (
163     5.000    => '1994-10-17',
164     5.001    => '1995-03-14',
165     5.002    => '1996-02-29',
166     5.00307  => '1996-10-10',
167     5.004    => '1997-05-15',
168     5.005    => '1998-07-22',
169     5.00503  => '1999-03-28',
170     5.00405  => '1999-04-29',
171     5.006    => '2000-03-22',
172     5.006001 => '2001-04-08',
173     5.007003 => '2002-03-05',
174     5.008    => '2002-07-19',
175     5.008001 => '2003-09-25',
176     5.009    => '2003-10-27',
177     5.008002 => '2003-11-05',
178     5.006002 => '2003-11-15',
179     5.008003 => '2004-01-14',
180     5.00504  => '2004-02-23',
181     5.009001 => '2004-03-16',
182     5.008004 => '2004-04-21',
183     5.008005 => '2004-07-19',
184     5.008006 => '2004-11-27',
185     5.009002 => '2005-04-01',
186     5.008007 => '2005-05-30',
187     5.009003 => '2006-01-28',
188     5.008008 => '2006-01-31',
189     5.009004 => '2006-08-15',
190     5.009005 => '2007-07-07',
191     5.010000 => '2007-12-18',
192     5.008009 => '2008-12-14',
193     5.010001 => '2009-08-22',
194     5.011000 => '2009-10-02',
195     5.011001 => '2009-10-20',
196     5.011002 => '2009-11-20',
197     5.011003 => '2009-12-20',
198     5.011004 => '2010-01-20',
199     5.011005 => '2010-02-20',
200     5.012000 => '2010-04-12',
201     5.013000 => '2010-04-20',
202     5.012001 => '2010-05-16',
203     5.013001 => '2010-05-20',
204     5.013002 => '2010-06-22',
205     5.013003 => '2010-07-20',
206     5.013004 => '2010-08-20',
207     5.012002 => '2010-09-06',
208     5.013005 => '2010-09-19',
209     5.013006 => '2010-10-20',
210     5.013007 => '2010-11-20',
211     5.013008 => '2010-12-20',
212     5.012003 => '2011-01-21',
213     5.013009 => '2011-01-20',
214     5.013010 => '2011-02-20',
215     5.013011 => '2011-03-20',
216     5.014000 => '2011-05-14',
217     5.012004 => '2011-06-20',
218     5.012005 => '2012-11-10',
219     5.014001 => '2011-06-16',
220     5.015000 => '2011-06-20',
221     5.015001 => '2011-07-20',
222     5.015002 => '2011-08-20',
223     5.014002 => '2011-09-26',
224     5.015003 => '2011-09-20',
225     5.015004 => '2011-10-20',
226     5.015005 => '2011-11-20',
227     5.015006 => '2011-12-20',
228     5.015007 => '2012-01-20',
229     5.015008 => '2012-02-20',
230     5.015009 => '2012-03-20',
231     5.016000 => '2012-05-20',
232     5.016001 => '2012-08-08',
233     5.016002 => '2012-11-01',
234     5.017000 => '2012-05-26',
235     5.017001 => '2012-06-20',
236     5.017002 => '2012-07-20',
237     5.017003 => '2012-08-20',
238     5.017004 => '2012-09-20',
239     5.014003 => '2012-10-12',
240     5.017005 => '2012-10-20',
241     5.017006 => '2012-11-20',
242     5.017007 => '2012-12-18',
243     5.017008 => '2013-01-20',
244     5.017009 => '2013-02-20',
245     5.014004 => '2013-03-10',
246     5.016003 => '2013-03-11',
247     5.017010 => '2013-03-21',
248     5.017011 => '2013-04-20',
249     5.018000 => '2013-05-18',
250     5.019000 => '2013-05-20',
251     5.019001 => '2013-06-21',
252     5.019002 => '2013-07-22',
253     5.018001 => '2013-08-12',
254     5.019003 => '2013-08-20',
255     5.019004 => '2013-09-20',
256     5.019005 => '2013-10-20',
257     5.019006 => '2013-11-20',
258     5.019007 => '2013-12-20',
259     5.018002 => '2014-01-06',
260     5.018003 => '2014-10-01',
261     5.018004 => '2014-10-01',
262     5.019008 => '2014-01-20',
263     5.019009 => '2014-02-20',
264     5.01901  => '2014-03-20',
265     5.019011 => '2014-04-20',
266     5.020000 => '2014-05-27',
267     5.021000 => '2014-05-27',
268     5.021001 => '2014-06-20',
269     5.021002 => '2014-07-20',
270     5.021003 => '2014-08-20',
271     5.020001 => '2014-09-14',
272     5.021004 => '2014-09-20',
273     5.021005 => '2014-10-20',
274     5.021006 => '2014-11-20',
275     5.021007 => '2014-12-20',
276     5.021008 => '2015-01-20',
277     5.020002 => '2015-02-14',
278     5.021009 => '2015-02-21',
279     5.021010 => '2015-03-20',
280     5.021011 => '2015-04-20',
281     5.022000 => '2015-06-01',
282     5.023000 => '2015-06-20',
283     5.023001 => '2015-07-20',
284     5.023002 => '2015-08-20',
285     5.020003 => '2015-09-12',
286     5.023003 => '2015-09-20',
287     5.023004 => '2015-10-20',
288     5.023005 => '2015-11-20',
289     5.022001 => '2015-12-13',
290     5.023006 => '????-??-??',
291   );
292
293 for my $version ( sort { $a <=> $b } keys %released ) {
294     my $family = int ($version * 1000) / 1000;
295     push @{ $families{ $family }} , $version;
296 }
297
298 %delta = (
299     5 => {
300         changed => {
301             'AnyDBM_File'           => undef,
302             'AutoLoader'            => undef,
303             'AutoSplit'             => undef,
304             'Benchmark'             => undef,
305             'Carp'                  => undef,
306             'Cwd'                   => undef,
307             'DB_File'               => undef,
308             'DynaLoader'            => undef,
309             'English'               => undef,
310             'Env'                   => undef,
311             'Exporter'              => undef,
312             'ExtUtils::MakeMaker'   => undef,
313             'Fcntl'                 => undef,
314             'File::Basename'        => undef,
315             'File::CheckTree'       => undef,
316             'File::Find'            => undef,
317             'FileHandle'            => undef,
318             'GDBM_File'             => undef,
319             'Getopt::Long'          => undef,
320             'Getopt::Std'           => undef,
321             'I18N::Collate'         => undef,
322             'IPC::Open2'            => undef,
323             'IPC::Open3'            => undef,
324             'Math::BigFloat'        => undef,
325             'Math::BigInt'          => undef,
326             'Math::Complex'         => undef,
327             'NDBM_File'             => undef,
328             'Net::Ping'             => undef,
329             'ODBM_File'             => undef,
330             'POSIX'                 => undef,
331             'SDBM_File'             => undef,
332             'Search::Dict'          => undef,
333             'Shell'                 => undef,
334             'Socket'                => undef,
335             'Sys::Hostname'         => undef,
336             'Sys::Syslog'           => undef,
337             'Term::Cap'             => undef,
338             'Term::Complete'        => undef,
339             'Test::Harness'         => undef,
340             'Text::Abbrev'          => undef,
341             'Text::ParseWords'      => undef,
342             'Text::Soundex'         => undef,
343             'Text::Tabs'            => undef,
344             'TieHash'               => undef,
345             'Time::Local'           => undef,
346             'integer'               => undef,
347             'less'                  => undef,
348             'sigtrap'               => undef,
349             'strict'                => undef,
350             'subs'                  => undef,
351         },
352         removed => {
353         }
354     },
355     5.001 => {
356         delta_from => 5,
357         changed => {
358             'ExtUtils::Liblist'     => undef,
359             'ExtUtils::Manifest'    => undef,
360             'ExtUtils::Mkbootstrap' => undef,
361             'File::Path'            => undef,
362             'SubstrHash'            => undef,
363             'lib'                   => undef,
364         },
365         removed => {
366         }
367     },
368     5.002 => {
369         delta_from => 5.001,
370         changed => {
371             'DB_File'               => '1.01',
372             'Devel::SelfStubber'    => '1.01',
373             'DirHandle'             => undef,
374             'DynaLoader'            => '1.00',
375             'ExtUtils::Install'     => undef,
376             'ExtUtils::MM_OS2'      => undef,
377             'ExtUtils::MM_Unix'     => undef,
378             'ExtUtils::MM_VMS'      => undef,
379             'ExtUtils::MakeMaker'   => '5.21',
380             'ExtUtils::Manifest'    => '1.22',
381             'ExtUtils::Mksymlists'  => '1.00',
382             'Fcntl'                 => '1.00',
383             'File::Copy'            => '1.5',
384             'File::Path'            => '1.01',
385             'FileCache'             => undef,
386             'FileHandle'            => '1.00',
387             'GDBM_File'             => '1.00',
388             'Getopt::Long'          => '2.01',
389             'NDBM_File'             => '1.00',
390             'Net::Ping'             => '1',
391             'ODBM_File'             => '1.00',
392             'POSIX'                 => '1.00',
393             'Pod::Functions'        => undef,
394             'Pod::Text'             => undef,
395             'SDBM_File'             => '1.00',
396             'Safe'                  => '1.00',
397             'SelectSaver'           => undef,
398             'SelfLoader'            => '1.06',
399             'Socket'                => '1.5',
400             'Symbol'                => undef,
401             'Term::ReadLine'        => undef,
402             'Test::Harness'         => '1.07',
403             'Text::Wrap'            => undef,
404             'Tie::Hash'             => undef,
405             'Tie::Scalar'           => undef,
406             'Tie::SubstrHash'       => undef,
407             'diagnostics'           => undef,
408             'overload'              => undef,
409             'vars'                  => undef,
410         },
411         removed => {
412             'SubstrHash'            => 1,
413             'TieHash'               => 1,
414         }
415     },
416     5.00307 => {
417         delta_from => 5.002,
418         changed => {
419             'Config'                => undef,
420             'DB_File'               => '1.03',
421             'ExtUtils::Embed'       => '1.18',
422             'ExtUtils::Install'     => '1.15',
423             'ExtUtils::Liblist'     => '1.20',
424             'ExtUtils::MM_Unix'     => '1.107',
425             'ExtUtils::MakeMaker'   => '5.38',
426             'ExtUtils::Manifest'    => '1.27',
427             'ExtUtils::Mkbootstrap' => '1.13',
428             'ExtUtils::Mksymlists'  => '1.12',
429             'ExtUtils::testlib'     => '1.11',
430             'Fatal'                 => undef,
431             'File::Basename'        => '2.4',
432             'FindBin'               => '1.04',
433             'Getopt::Long'          => '2.04',
434             'IO'                    => undef,
435             'IO::File'              => '1.05',
436             'IO::Handle'            => '1.12',
437             'IO::Pipe'              => '1.07',
438             'IO::Seekable'          => '1.05',
439             'IO::Select'            => '1.09',
440             'IO::Socket'            => '1.13',
441             'Net::Ping'             => '1.01',
442             'OS2::ExtAttr'          => '0.01',
443             'OS2::PrfDB'            => '0.02',
444             'OS2::Process'          => undef,
445             'OS2::REXX'             => undef,
446             'Opcode'                => '1.01',
447             'Safe'                  => '2.06',
448             'Test::Harness'         => '1.13',
449             'Text::Tabs'            => '96.051501',
450             'Text::Wrap'            => '96.041801',
451             'UNIVERSAL'             => undef,
452             'VMS::Filespec'         => undef,
453             'VMS::Stdio'            => '2.0',
454             'ops'                   => undef,
455             'sigtrap'               => '1.01',
456         },
457         removed => {
458         }
459     },
460     5.004 => {
461         delta_from => 5.00307,
462         changed => {
463             'Bundle::CPAN'          => '0.02',
464             'CGI'                   => '2.36',
465             'CGI::Apache'           => '1.01',
466             'CGI::Carp'             => '1.06',
467             'CGI::Fast'             => '1.00a',
468             'CGI::Push'             => '1.00',
469             'CGI::Switch'           => '0.05',
470             'CPAN'                  => '1.2401',
471             'CPAN::FirstTime'       => '1.18',
472             'CPAN::Nox'             => undef,
473             'Class::Struct'         => undef,
474             'Cwd'                   => '2.00',
475             'DB_File'               => '1.14',
476             'DynaLoader'            => '1.02',
477             'ExtUtils::Command'     => '1.00',
478             'ExtUtils::Embed'       => '1.2501',
479             'ExtUtils::Install'     => '1.16',
480             'ExtUtils::Liblist'     => '1.2201',
481             'ExtUtils::MM_Unix'     => '1.114',
482             'ExtUtils::MM_Win32'    => undef,
483             'ExtUtils::MakeMaker'   => '5.4002',
484             'ExtUtils::Manifest'    => '1.33',
485             'ExtUtils::Mksymlists'  => '1.13',
486             'ExtUtils::XSSymSet'    => '1.0',
487             'Fcntl'                 => '1.03',
488             'File::Basename'        => '2.5',
489             'File::Compare'         => '1.1001',
490             'File::Copy'            => '2.02',
491             'File::Path'            => '1.04',
492             'File::stat'            => undef,
493             'FileHandle'            => '2.00',
494             'Getopt::Long'          => '2.10',
495             'IO::File'              => '1.0602',
496             'IO::Handle'            => '1.1504',
497             'IO::Pipe'              => '1.0901',
498             'IO::Seekable'          => '1.06',
499             'IO::Select'            => '1.10',
500             'IO::Socket'            => '1.1602',
501             'IPC::Open2'            => '1.01',
502             'IPC::Open3'            => '1.0101',
503             'Math::Complex'         => '1.01',
504             'Math::Trig'            => '1',
505             'Net::Ping'             => '2.02',
506             'Net::hostent'          => undef,
507             'Net::netent'           => undef,
508             'Net::protoent'         => undef,
509             'Net::servent'          => undef,
510             'Opcode'                => '1.04',
511             'POSIX'                 => '1.02',
512             'Pod::Html'             => undef,
513             'Pod::Text'             => '1.0203',
514             'SelfLoader'            => '1.07',
515             'Socket'                => '1.6',
516             'Symbol'                => '1.02',
517             'Test::Harness'         => '1.1502',
518             'Text::Tabs'            => '96.121201',
519             'Text::Wrap'            => '97.011701',
520             'Tie::RefHash'          => undef,
521             'Time::gmtime'          => '1.01',
522             'Time::localtime'       => '1.01',
523             'Time::tm'              => undef,
524             'User::grent'           => undef,
525             'User::pwent'           => undef,
526             'VMS::DCLsym'           => '1.01',
527             'VMS::Stdio'            => '2.02',
528             'autouse'               => '1.01',
529             'blib'                  => undef,
530             'constant'              => '1.00',
531             'locale'                => undef,
532             'sigtrap'               => '1.02',
533             'vmsish'                => undef,
534         },
535         removed => {
536             'Fatal'                 => 1,
537         }
538     },
539     5.00405 => {
540         delta_from => 5.004,
541         changed => {
542             'AutoLoader'            => '5.56',
543             'AutoSplit'             => '1.0303',
544             'Bundle::CPAN'          => '0.03',
545             'CGI'                   => '2.42',
546             'CGI::Apache'           => '1.1',
547             'CGI::Carp'             => '1.10',
548             'CGI::Cookie'           => '1.06',
549             'CGI::Push'             => '1.01',
550             'CGI::Switch'           => '0.06',
551             'CPAN'                  => '1.40',
552             'CPAN::FirstTime'       => '1.30',
553             'Cwd'                   => '2.01',
554             'DB_File'               => '1.15',
555             'DynaLoader'            => '1.03',
556             'ExtUtils::Command'     => '1.01',
557             'ExtUtils::Embed'       => '1.2505',
558             'ExtUtils::Install'     => '1.28',
559             'ExtUtils::Liblist'     => '1.25',
560             'ExtUtils::MM_Unix'     => '1.118',
561             'ExtUtils::MakeMaker'   => '5.42',
562             'ExtUtils::Mkbootstrap' => '1.14',
563             'ExtUtils::Mksymlists'  => '1.16',
564             'File::Basename'        => '2.6',
565             'File::DosGlob'         => undef,
566             'File::Path'            => '1.0402',
567             'File::Spec'            => '0.6',
568             'File::Spec::Mac'       => '1.0',
569             'File::Spec::OS2'       => undef,
570             'File::Spec::Unix'      => undef,
571             'File::Spec::VMS'       => undef,
572             'File::Spec::Win32'     => undef,
573             'FindBin'               => '1.41',
574             'Getopt::Long'          => '2.19',
575             'IO::File'              => '1.06021',
576             'IO::Socket'            => '1.1603',
577             'IPC::Open3'            => '1.0103',
578             'Math::Complex'         => '1.25',
579             'NDBM_File'             => '1.01',
580             'Pod::Html'             => '1.0101',
581             'Pod::Text'             => '1.0204',
582             'SelfLoader'            => '1.08',
583             'Socket'                => '1.7',
584             'Test'                  => '1.04',
585             'Test::Harness'         => '1.1602',
586             'Text::ParseWords'      => '3.1001',
587             'Text::Wrap'            => '98.112902',
588             'Tie::Handle'           => undef,
589             'attrs'                 => '0.1',
590             'base'                  => undef,
591             'blib'                  => '1.00',
592             're'                    => undef,
593             'strict'                => '1.01',
594         },
595         removed => {
596         }
597     },
598     5.005 => {
599         delta_from => 5.00405,
600         changed => {
601             'AutoLoader'            => undef,
602             'AutoSplit'             => '1.0302',
603             'B'                     => undef,
604             'B::Asmdata'            => undef,
605             'B::Assembler'          => undef,
606             'B::Bblock'             => undef,
607             'B::Bytecode'           => undef,
608             'B::C'                  => undef,
609             'B::CC'                 => undef,
610             'B::Debug'              => undef,
611             'B::Deparse'            => '0.56',
612             'B::Disassembler'       => undef,
613             'B::Lint'               => undef,
614             'B::Showlex'            => undef,
615             'B::Stackobj'           => undef,
616             'B::Terse'              => undef,
617             'B::Xref'               => undef,
618             'CGI::Carp'             => '1.101',
619             'CPAN'                  => '1.3901',
620             'CPAN::FirstTime'       => '1.29',
621             'DB_File'               => '1.60',
622             'Data::Dumper'          => '2.09',
623             'Errno'                 => '1.09',
624             'ExtUtils::Installed'   => '0.02',
625             'ExtUtils::MM_Unix'     => '1.12601',
626             'ExtUtils::MakeMaker'   => '5.4301',
627             'ExtUtils::Mkbootstrap' => '1.13',
628             'ExtUtils::Mksymlists'  => '1.17',
629             'ExtUtils::Packlist'    => '0.03',
630             'Fatal'                 => '1.02',
631             'File::Path'            => '1.0401',
632             'Getopt::Long'          => '2.17',
633             'IO::Handle'            => '1.1505',
634             'IPC::Msg'              => '1.00',
635             'IPC::Open3'            => '1.0102',
636             'IPC::Semaphore'        => '1.00',
637             'IPC::SysV'             => '1.03',
638             'O'                     => undef,
639             'OS2::Process'          => '0.2',
640             'Pod::Html'             => '1.01',
641             'Pod::Text'             => '1.0203',
642             'Text::ParseWords'      => '3.1',
643             'Text::Wrap'            => '97.02',
644             'Thread'                => '1.0',
645             'Thread::Queue'         => undef,
646             'Thread::Semaphore'     => undef,
647             'Thread::Signal'        => undef,
648             'Thread::Specific'      => undef,
649             'Tie::Array'            => '1.00',
650             'VMS::Stdio'            => '2.1',
651             'attrs'                 => '1.0',
652             'fields'                => '0.02',
653             're'                    => '0.02',
654         },
655         removed => {
656             'Bundle::CPAN'          => 1,
657         }
658     },
659     5.00503 => {
660         delta_from => 5.005,
661         changed => {
662             'AutoSplit'             => '1.0303',
663             'CGI'                   => '2.46',
664             'CGI::Carp'             => '1.13',
665             'CGI::Fast'             => '1.01',
666             'CPAN'                  => '1.48',
667             'CPAN::FirstTime'       => '1.36',
668             'CPAN::Nox'             => '1.00',
669             'DB_File'               => '1.65',
670             'Data::Dumper'          => '2.101',
671             'Dumpvalue'             => undef,
672             'Errno'                 => '1.111',
673             'ExtUtils::Install'     => '1.28',
674             'ExtUtils::Liblist'     => '1.25',
675             'ExtUtils::MM_Unix'     => '1.12602',
676             'ExtUtils::MakeMaker'   => '5.4302',
677             'ExtUtils::Manifest'    => '1.33',
678             'ExtUtils::Mkbootstrap' => '1.14',
679             'ExtUtils::Mksymlists'  => '1.17',
680             'ExtUtils::testlib'     => '1.11',
681             'FindBin'               => '1.42',
682             'Getopt::Long'          => '2.19',
683             'Getopt::Std'           => '1.01',
684             'IO::Pipe'              => '1.0902',
685             'IPC::Open3'            => '1.0103',
686             'Math::Complex'         => '1.26',
687             'Test'                  => '1.122',
688             'Text::Wrap'            => '98.112902',
689         },
690         removed => {
691         }
692     },
693     5.00504 => {
694         delta_from => 5.00503,
695         changed => {
696             'CPAN::FirstTime'       => '1.36',
697             'DB_File'               => '1.807',
698             'ExtUtils::Install'     => '1.28',
699             'ExtUtils::Liblist'     => '1.25',
700             'ExtUtils::MM_Unix'     => '1.12602',
701             'ExtUtils::Manifest'    => '1.33',
702             'ExtUtils::Miniperl'    => undef,
703             'ExtUtils::Mkbootstrap' => '1.14',
704             'ExtUtils::Mksymlists'  => '1.17',
705             'ExtUtils::testlib'     => '1.11',
706             'File::Compare'         => '1.1002',
707             'File::Spec'            => '0.8',
708             'File::Spec::Functions' => undef,
709             'File::Spec::Mac'       => undef,
710             'Getopt::Long'          => '2.20',
711             'Pod::Html'             => '1.02',
712         },
713         removed => {
714         }
715     },
716     5.006 => {
717         delta_from => 5.00504,
718         changed => {
719             'AutoLoader'            => '5.57',
720             'AutoSplit'             => '1.0305',
721             'B::Deparse'            => '0.59',
722             'B::Stash'              => undef,
723             'Benchmark'             => '1',
724             'ByteLoader'            => '0.03',
725             'CGI'                   => '2.56',
726             'CGI::Apache'           => undef,
727             'CGI::Carp'             => '1.14',
728             'CGI::Cookie'           => '1.12',
729             'CGI::Fast'             => '1.02',
730             'CGI::Pretty'           => '1.03',
731             'CGI::Switch'           => undef,
732             'CPAN'                  => '1.52',
733             'CPAN::FirstTime'       => '1.38',
734             'Carp::Heavy'           => undef,
735             'Class::Struct'         => '0.58',
736             'Cwd'                   => '2.02',
737             'DB'                    => '1.0',
738             'DB_File'               => '1.72',
739             'Devel::DProf'          => '20000000.00_00',
740             'Devel::Peek'           => '1.00_01',
741             'DynaLoader'            => '1.04',
742             'Exporter'              => '5.562',
743             'Exporter::Heavy'       => undef,
744             'ExtUtils::MM_Cygwin'   => undef,
745             'ExtUtils::MM_Unix'     => '1.12603',
746             'ExtUtils::MakeMaker'   => '5.45',
747             'File::Copy'            => '2.03',
748             'File::Glob'            => '0.991',
749             'File::Path'            => '1.0403',
750             'GDBM_File'             => '1.03',
751             'Getopt::Long'          => '2.23',
752             'Getopt::Std'           => '1.02',
753             'IO'                    => '1.20',
754             'IO::Dir'               => '1.03',
755             'IO::File'              => '1.08',
756             'IO::Handle'            => '1.21',
757             'IO::Pipe'              => '1.121',
758             'IO::Poll'              => '0.01',
759             'IO::Seekable'          => '1.08',
760             'IO::Select'            => '1.14',
761             'IO::Socket'            => '1.26',
762             'IO::Socket::INET'      => '1.25',
763             'IO::Socket::UNIX'      => '1.20',
764             'JNI'                   => '0.01',
765             'JPL::AutoLoader'       => undef,
766             'JPL::Class'            => undef,
767             'JPL::Compile'          => undef,
768             'NDBM_File'             => '1.03',
769             'ODBM_File'             => '1.02',
770             'OS2::DLL'              => undef,
771             'POSIX'                 => '1.03',
772             'Pod::Checker'          => '1.098',
773             'Pod::Find'             => '0.12',
774             'Pod::Html'             => '1.03',
775             'Pod::InputObjects'     => '1.12',
776             'Pod::Man'              => '1.02',
777             'Pod::ParseUtils'       => '0.2',
778             'Pod::Parser'           => '1.12',
779             'Pod::Plainer'          => '0.01',
780             'Pod::Select'           => '1.12',
781             'Pod::Text'             => '2.03',
782             'Pod::Text::Color'      => '0.05',
783             'Pod::Text::Termcap'    => '0.04',
784             'Pod::Usage'            => '1.12',
785             'SDBM_File'             => '1.02',
786             'SelfLoader'            => '1.0901',
787             'Shell'                 => '0.2',
788             'Socket'                => '1.72',
789             'Sys::Hostname'         => '1.1',
790             'Sys::Syslog'           => '0.01',
791             'Term::ANSIColor'       => '1.01',
792             'Test'                  => '1.13',
793             'Test::Harness'         => '1.1604',
794             'Text::ParseWords'      => '3.2',
795             'Text::Soundex'         => '1.0',
796             'Text::Tabs'            => '98.112801',
797             'Tie::Array'            => '1.01',
798             'Tie::Handle'           => '1.0',
799             'VMS::Stdio'            => '2.2',
800             'XSLoader'              => '0.01',
801             'attributes'            => '0.03',
802             'autouse'               => '1.02',
803             'base'                  => '1.01',
804             'bytes'                 => undef,
805             'charnames'             => undef,
806             'constant'              => '1.02',
807             'diagnostics'           => '1.0',
808             'fields'                => '1.01',
809             'filetest'              => undef,
810             'lib'                   => '0.5564',
811             'open'                  => undef,
812             'utf8'                  => undef,
813             'warnings'              => undef,
814             'warnings::register'    => undef,
815         },
816         removed => {
817         }
818     },
819     5.006001 => {
820         delta_from => 5.006,
821         changed => {
822             'AutoLoader'            => '5.58',
823             'B::Assembler'          => '0.02',
824             'B::Concise'            => '0.51',
825             'B::Deparse'            => '0.6',
826             'ByteLoader'            => '0.04',
827             'CGI'                   => '2.752',
828             'CGI::Carp'             => '1.20',
829             'CGI::Cookie'           => '1.18',
830             'CGI::Pretty'           => '1.05',
831             'CGI::Push'             => '1.04',
832             'CGI::Util'             => '1.1',
833             'CPAN'                  => '1.59_54',
834             'CPAN::FirstTime'       => '1.53',
835             'Class::Struct'         => '0.59',
836             'Cwd'                   => '2.04',
837             'DB_File'               => '1.75',
838             'Data::Dumper'          => '2.102',
839             'ExtUtils::Install'     => '1.28',
840             'ExtUtils::Liblist'     => '1.26',
841             'ExtUtils::MM_Unix'     => '1.12603',
842             'ExtUtils::Manifest'    => '1.33',
843             'ExtUtils::Mkbootstrap' => '1.14',
844             'ExtUtils::Mksymlists'  => '1.17',
845             'ExtUtils::testlib'     => '1.11',
846             'File::Path'            => '1.0404',
847             'File::Spec'            => '0.82',
848             'File::Spec::Epoc'      => undef,
849             'File::Spec::Functions' => '1.1',
850             'File::Spec::Mac'       => '1.2',
851             'File::Spec::OS2'       => '1.1',
852             'File::Spec::Unix'      => '1.2',
853             'File::Spec::VMS'       => '1.1',
854             'File::Spec::Win32'     => '1.2',
855             'File::Temp'            => '0.12',
856             'GDBM_File'             => '1.05',
857             'Getopt::Long'          => '2.25',
858             'IO::Poll'              => '0.05',
859             'JNI'                   => '0.1',
860             'Math::BigFloat'        => '0.02',
861             'Math::BigInt'          => '0.01',
862             'Math::Complex'         => '1.31',
863             'NDBM_File'             => '1.04',
864             'ODBM_File'             => '1.03',
865             'OS2::REXX'             => '1.00',
866             'Pod::Checker'          => '1.2',
867             'Pod::Find'             => '0.21',
868             'Pod::InputObjects'     => '1.13',
869             'Pod::LaTeX'            => '0.53',
870             'Pod::Man'              => '1.15',
871             'Pod::ParseUtils'       => '0.22',
872             'Pod::Parser'           => '1.13',
873             'Pod::Select'           => '1.13',
874             'Pod::Text'             => '2.08',
875             'Pod::Text::Color'      => '0.06',
876             'Pod::Text::Overstrike' => '1.01',
877             'Pod::Text::Termcap'    => '1',
878             'Pod::Usage'            => '1.14',
879             'SDBM_File'             => '1.03',
880             'SelfLoader'            => '1.0902',
881             'Shell'                 => '0.3',
882             'Term::ANSIColor'       => '1.03',
883             'Test'                  => '1.15',
884             'Text::Wrap'            => '2001.0131',
885             'Tie::Handle'           => '4.0',
886             'Tie::RefHash'          => '1.3',
887         },
888         removed => {
889         }
890     },
891     5.006002 => {
892         delta_from => 5.006001,
893         changed => {
894             'CPAN::FirstTime'       => '1.53',
895             'DB_File'               => '1.806',
896             'Data::Dumper'          => '2.121',
897             'ExtUtils::Command'     => '1.05',
898             'ExtUtils::Command::MM' => '0.03',
899             'ExtUtils::Install'     => '1.32',
900             'ExtUtils::Installed'   => '0.08',
901             'ExtUtils::Liblist'     => '1.01',
902             'ExtUtils::Liblist::Kid'=> '1.3',
903             'ExtUtils::MM'          => '0.04',
904             'ExtUtils::MM_Any'      => '0.07',
905             'ExtUtils::MM_BeOS'     => '1.04',
906             'ExtUtils::MM_Cygwin'   => '1.06',
907             'ExtUtils::MM_DOS'      => '0.02',
908             'ExtUtils::MM_MacOS'    => '1.07',
909             'ExtUtils::MM_NW5'      => '2.06',
910             'ExtUtils::MM_OS2'      => '1.04',
911             'ExtUtils::MM_UWIN'     => '0.02',
912             'ExtUtils::MM_Unix'     => '1.42',
913             'ExtUtils::MM_VMS'      => '5.70',
914             'ExtUtils::MM_Win32'    => '1.09',
915             'ExtUtils::MM_Win95'    => '0.03',
916             'ExtUtils::MY'          => '0.01',
917             'ExtUtils::MakeMaker'   => '6.17',
918             'ExtUtils::MakeMaker::bytes'=> '0.01',
919             'ExtUtils::MakeMaker::vmsish'=> '0.01',
920             'ExtUtils::Manifest'    => '1.42',
921             'ExtUtils::Mkbootstrap' => '1.15',
922             'ExtUtils::Mksymlists'  => '1.19',
923             'ExtUtils::Packlist'    => '0.04',
924             'ExtUtils::testlib'     => '1.15',
925             'File::Spec'            => '0.86',
926             'File::Spec::Cygwin'    => '1.1',
927             'File::Spec::Epoc'      => '1.1',
928             'File::Spec::Functions' => '1.3',
929             'File::Spec::Mac'       => '1.4',
930             'File::Spec::OS2'       => '1.2',
931             'File::Spec::Unix'      => '1.5',
932             'File::Spec::VMS'       => '1.4',
933             'File::Spec::Win32'     => '1.4',
934             'File::Temp'            => '0.14',
935             'Safe'                  => '2.10',
936             'Test'                  => '1.24',
937             'Test::Builder'         => '0.17',
938             'Test::Harness'         => '2.30',
939             'Test::Harness::Assert' => '0.01',
940             'Test::Harness::Iterator'=> '0.01',
941             'Test::Harness::Straps' => '0.15',
942             'Test::More'            => '0.47',
943             'Test::Simple'          => '0.47',
944             'Unicode'               => '3.0.1',
945             'if'                    => '0.03',
946             'ops'                   => '1.00',
947         },
948         removed => {
949         }
950     },
951     5.007003 => {
952         delta_from => 5.006001,
953         changed => {
954             'AnyDBM_File'           => '1.00',
955             'Attribute::Handlers'   => '0.76',
956             'AutoLoader'            => '5.59',
957             'AutoSplit'             => '1.0307',
958             'B'                     => '1.00',
959             'B::Asmdata'            => '1.00',
960             'B::Assembler'          => '0.04',
961             'B::Bblock'             => '1.00',
962             'B::Bytecode'           => '1.00',
963             'B::C'                  => '1.01',
964             'B::CC'                 => '1.00',
965             'B::Concise'            => '0.52',
966             'B::Debug'              => '1.00',
967             'B::Deparse'            => '0.63',
968             'B::Disassembler'       => '1.01',
969             'B::Lint'               => '1.00',
970             'B::Showlex'            => '1.00',
971             'B::Stackobj'           => '1.00',
972             'B::Stash'              => '1.00',
973             'B::Terse'              => '1.00',
974             'B::Xref'               => '1.00',
975             'Benchmark'             => '1.04',
976             'CGI'                   => '2.80',
977             'CGI::Apache'           => '1.00',
978             'CGI::Carp'             => '1.22',
979             'CGI::Cookie'           => '1.20',
980             'CGI::Fast'             => '1.04',
981             'CGI::Pretty'           => '1.05_00',
982             'CGI::Switch'           => '1.00',
983             'CGI::Util'             => '1.3',
984             'CPAN'                  => '1.59_56',
985             'CPAN::FirstTime'       => '1.54',
986             'CPAN::Nox'             => '1.00_01',
987             'Carp'                  => '1.01',
988             'Carp::Heavy'           => '1.01',
989             'Class::ISA'            => '0.32',
990             'Class::Struct'         => '0.61',
991             'Cwd'                   => '2.06',
992             'DB_File'               => '1.804',
993             'Data::Dumper'          => '2.12',
994             'Devel::DProf'          => '20000000.00_01',
995             'Devel::PPPort'         => '2.0002',
996             'Devel::Peek'           => '1.00_03',
997             'Devel::SelfStubber'    => '1.03',
998             'Digest'                => '1.00',
999             'Digest::MD5'           => '2.16',
1000             'DirHandle'             => '1.00',
1001             'Dumpvalue'             => '1.10',
1002             'Encode'                => '0.40',
1003             'Encode::CN'            => '0.02',
1004             'Encode::CN::HZ'        => undef,
1005             'Encode::Encoding'      => '0.02',
1006             'Encode::Internal'      => '0.30',
1007             'Encode::JP'            => '0.02',
1008             'Encode::JP::Constants' => '1.02',
1009             'Encode::JP::H2Z'       => '0.77',
1010             'Encode::JP::ISO_2022_JP'=> undef,
1011             'Encode::JP::JIS'       => undef,
1012             'Encode::JP::Tr'        => '0.77',
1013             'Encode::KR'            => '0.02',
1014             'Encode::TW'            => '0.02',
1015             'Encode::Tcl'           => '1.01',
1016             'Encode::Tcl::Escape'   => '1.01',
1017             'Encode::Tcl::Extended' => '1.01',
1018             'Encode::Tcl::HanZi'    => '1.01',
1019             'Encode::Tcl::Table'    => '1.01',
1020             'Encode::Unicode'       => '0.30',
1021             'Encode::XS'            => '0.40',
1022             'Encode::iso10646_1'    => '0.30',
1023             'Encode::usc2_le'       => '0.30',
1024             'Encode::utf8'          => '0.30',
1025             'English'               => '1.00',
1026             'Env'                   => '1.00',
1027             'Exporter'              => '5.566',
1028             'Exporter::Heavy'       => '5.562',
1029             'ExtUtils::Command'     => '1.02',
1030             'ExtUtils::Constant'    => '0.11',
1031             'ExtUtils::Embed'       => '1.250601',
1032             'ExtUtils::Install'     => '1.29',
1033             'ExtUtils::Installed'   => '0.04',
1034             'ExtUtils::Liblist'     => '1.2701',
1035             'ExtUtils::MM_BeOS'     => '1.00',
1036             'ExtUtils::MM_Cygwin'   => '1.00',
1037             'ExtUtils::MM_OS2'      => '1.00',
1038             'ExtUtils::MM_Unix'     => '1.12607',
1039             'ExtUtils::MM_VMS'      => '5.56',
1040             'ExtUtils::MM_Win32'    => '1.00_02',
1041             'ExtUtils::MakeMaker'   => '5.48_03',
1042             'ExtUtils::Manifest'    => '1.35',
1043             'ExtUtils::Mkbootstrap' => '1.1401',
1044             'ExtUtils::Mksymlists'  => '1.18',
1045             'ExtUtils::Packlist'    => '0.04',
1046             'ExtUtils::testlib'     => '1.1201',
1047             'Fatal'                 => '1.03',
1048             'Fcntl'                 => '1.04',
1049             'File::Basename'        => '2.71',
1050             'File::CheckTree'       => '4.1',
1051             'File::Compare'         => '1.1003',
1052             'File::Copy'            => '2.05',
1053             'File::DosGlob'         => '1.00',
1054             'File::Find'            => '1.04',
1055             'File::Glob'            => '1.01',
1056             'File::Path'            => '1.05',
1057             'File::Spec'            => '0.83',
1058             'File::Spec::Cygwin'    => '1.0',
1059             'File::Spec::Epoc'      => '1.00',
1060             'File::Spec::Functions' => '1.2',
1061             'File::Spec::Mac'       => '1.3',
1062             'File::Spec::Unix'      => '1.4',
1063             'File::Spec::VMS'       => '1.2',
1064             'File::Spec::Win32'     => '1.3',
1065             'File::Temp'            => '0.13',
1066             'File::stat'            => '1.00',
1067             'FileCache'             => '1.00',
1068             'FileHandle'            => '2.01',
1069             'Filter::Simple'        => '0.77',
1070             'Filter::Util::Call'    => '1.06',
1071             'FindBin'               => '1.43',
1072             'GDBM_File'             => '1.06',
1073             'Getopt::Long'          => '2.28',
1074             'Getopt::Std'           => '1.03',
1075             'I18N::Collate'         => '1.00',
1076             'I18N::LangTags'        => '0.27',
1077             'I18N::LangTags::List'  => '0.25',
1078             'I18N::Langinfo'        => '0.01',
1079             'IO::Dir'               => '1.03_00',
1080             'IO::File'              => '1.09',
1081             'IO::Handle'            => '1.21_00',
1082             'IO::Pipe'              => '1.122',
1083             'IO::Poll'              => '0.06',
1084             'IO::Seekable'          => '1.08_00',
1085             'IO::Select'            => '1.15',
1086             'IO::Socket'            => '1.27',
1087             'IO::Socket::INET'      => '1.26',
1088             'IO::Socket::UNIX'      => '1.20_00',
1089             'IPC::Msg'              => '1.00_00',
1090             'IPC::Open3'            => '1.0104',
1091             'IPC::Semaphore'        => '1.00_00',
1092             'IPC::SysV'             => '1.03_00',
1093             'List::Util'            => '1.06_00',
1094             'Locale::Constants'     => '2.01',
1095             'Locale::Country'       => '2.01',
1096             'Locale::Currency'      => '2.01',
1097             'Locale::Language'      => '2.01',
1098             'Locale::Maketext'      => '1.03',
1099             'Locale::Script'        => '2.01',
1100             'MIME::Base64'          => '2.12',
1101             'MIME::QuotedPrint'     => '2.03',
1102             'Math::BigFloat'        => '1.30',
1103             'Math::BigInt'          => '1.54',
1104             'Math::BigInt::Calc'    => '0.25',
1105             'Math::Complex'         => '1.34',
1106             'Math::Trig'            => '1.01',
1107             'Memoize'               => '0.66',
1108             'Memoize::AnyDBM_File'  => '0.65',
1109             'Memoize::Expire'       => '0.66',
1110             'Memoize::ExpireFile'   => '0.65',
1111             'Memoize::ExpireTest'   => '0.65',
1112             'Memoize::NDBM_File'    => '0.65',
1113             'Memoize::SDBM_File'    => '0.65',
1114             'Memoize::Storable'     => '0.65',
1115             'NEXT'                  => '0.50',
1116             'Net::Cmd'              => '2.21',
1117             'Net::Config'           => '1.10',
1118             'Net::Domain'           => '2.17',
1119             'Net::FTP'              => '2.64',
1120             'Net::FTP::A'           => '1.15',
1121             'Net::FTP::E'           => '0.01',
1122             'Net::FTP::I'           => '1.12',
1123             'Net::FTP::L'           => '0.01',
1124             'Net::FTP::dataconn'    => '0.10',
1125             'Net::NNTP'             => '2.21',
1126             'Net::Netrc'            => '2.12',
1127             'Net::POP3'             => '2.23',
1128             'Net::Ping'             => '2.12',
1129             'Net::SMTP'             => '2.21',
1130             'Net::Time'             => '2.09',
1131             'Net::hostent'          => '1.00',
1132             'Net::netent'           => '1.00',
1133             'Net::protoent'         => '1.00',
1134             'Net::servent'          => '1.00',
1135             'O'                     => '1.00',
1136             'OS2::DLL'              => '1.00',
1137             'OS2::Process'          => '1.0',
1138             'OS2::REXX'             => '1.01',
1139             'Opcode'                => '1.05',
1140             'POSIX'                 => '1.05',
1141             'PerlIO'                => '1.00',
1142             'PerlIO::Scalar'        => '0.01',
1143             'PerlIO::Via'           => '0.01',
1144             'Pod::Checker'          => '1.3',
1145             'Pod::Find'             => '0.22',
1146             'Pod::Functions'        => '1.01',
1147             'Pod::Html'             => '1.04',
1148             'Pod::LaTeX'            => '0.54',
1149             'Pod::Man'              => '1.32',
1150             'Pod::ParseLink'        => '1.05',
1151             'Pod::Text'             => '2.18',
1152             'Pod::Text::Color'      => '1.03',
1153             'Pod::Text::Overstrike' => '1.08',
1154             'Pod::Text::Termcap'    => '1.09',
1155             'Safe'                  => '2.07',
1156             'Scalar::Util'          => '1.06_00',
1157             'Search::Dict'          => '1.02',
1158             'SelectSaver'           => '1.00',
1159             'SelfLoader'            => '1.0903',
1160             'Shell'                 => '0.4',
1161             'Socket'                => '1.75',
1162             'Storable'              => '1.015',
1163             'Switch'                => '2.06',
1164             'Symbol'                => '1.04',
1165             'Sys::Syslog'           => '0.02',
1166             'Term::ANSIColor'       => '1.04',
1167             'Term::Cap'             => '1.07',
1168             'Term::Complete'        => '1.4',
1169             'Term::ReadLine'        => '1.00',
1170             'Test'                  => '1.18',
1171             'Test::Builder'         => '0.11',
1172             'Test::Harness'         => '2.01',
1173             'Test::Harness::Assert' => '0.01',
1174             'Test::Harness::Iterator'=> '0.01',
1175             'Test::Harness::Straps' => '0.08',
1176             'Test::More'            => '0.41',
1177             'Test::Simple'          => '0.41',
1178             'Text::Abbrev'          => '1.00',
1179             'Text::Balanced'        => '1.89',
1180             'Text::ParseWords'      => '3.21',
1181             'Text::Soundex'         => '1.01',
1182             'Text::Wrap'            => '2001.0929',
1183             'Thread'                => '2.00',
1184             'Thread::Queue'         => '1.00',
1185             'Thread::Semaphore'     => '1.00',
1186             'Thread::Signal'        => '1.00',
1187             'Thread::Specific'      => '1.00',
1188             'Tie::Array'            => '1.02',
1189             'Tie::File'             => '0.17',
1190             'Tie::Handle'           => '4.1',
1191             'Tie::Hash'             => '1.00',
1192             'Tie::Memoize'          => '1.0',
1193             'Tie::RefHash'          => '1.3_00',
1194             'Tie::Scalar'           => '1.00',
1195             'Tie::SubstrHash'       => '1.00',
1196             'Time::HiRes'           => '1.20_00',
1197             'Time::Local'           => '1.04',
1198             'Time::gmtime'          => '1.02',
1199             'Time::localtime'       => '1.02',
1200             'Time::tm'              => '1.00',
1201             'UNIVERSAL'             => '1.00',
1202             'Unicode::Collate'      => '0.10',
1203             'Unicode::Normalize'    => '0.14',
1204             'Unicode::UCD'          => '0.2',
1205             'User::grent'           => '1.00',
1206             'User::pwent'           => '1.00',
1207             'VMS::DCLsym'           => '1.02',
1208             'VMS::Filespec'         => '1.1',
1209             'VMS::Stdio'            => '2.3',
1210             'XS::Typemap'           => '0.01',
1211             'attributes'            => '0.04_01',
1212             'attrs'                 => '1.01',
1213             'autouse'               => '1.03',
1214             'base'                  => '1.02',
1215             'blib'                  => '1.01',
1216             'bytes'                 => '1.00',
1217             'charnames'             => '1.01',
1218             'constant'              => '1.04',
1219             'diagnostics'           => '1.1',
1220             'encoding'              => '1.00',
1221             'fields'                => '1.02',
1222             'filetest'              => '1.00',
1223             'if'                    => '0.01',
1224             'integer'               => '1.00',
1225             'less'                  => '0.01',
1226             'locale'                => '1.00',
1227             'open'                  => '1.01',
1228             'ops'                   => '1.00',
1229             'overload'              => '1.00',
1230             're'                    => '0.03',
1231             'sort'                  => '1.00',
1232             'strict'                => '1.02',
1233             'subs'                  => '1.00',
1234             'threads'               => '0.05',
1235             'threads::shared'       => '0.90',
1236             'utf8'                  => '1.00',
1237             'vars'                  => '1.01',
1238             'vmsish'                => '1.00',
1239             'warnings'              => '1.00',
1240             'warnings::register'    => '1.00',
1241         },
1242         removed => {
1243         }
1244     },
1245     5.008 => {
1246         delta_from => 5.007003,
1247         changed => {
1248             'Attribute::Handlers'   => '0.77',
1249             'B'                     => '1.01',
1250             'B::Lint'               => '1.01',
1251             'B::Xref'               => '1.01',
1252             'CGI'                   => '2.81',
1253             'CGI::Carp'             => '1.23',
1254             'CPAN'                  => '1.61',
1255             'CPAN::FirstTime'       => '1.56',
1256             'CPAN::Nox'             => '1.02',
1257             'Digest::MD5'           => '2.20',
1258             'Dumpvalue'             => '1.11',
1259             'Encode'                => '1.75',
1260             'Encode::Alias'         => '1.32',
1261             'Encode::Byte'          => '1.22',
1262             'Encode::CJKConstants'  => '1.00',
1263             'Encode::CN'            => '1.24',
1264             'Encode::CN::HZ'        => '1.04',
1265             'Encode::Config'        => '1.06',
1266             'Encode::EBCDIC'        => '1.21',
1267             'Encode::Encoder'       => '0.05',
1268             'Encode::Encoding'      => '1.30',
1269             'Encode::Guess'         => '1.06',
1270             'Encode::JP'            => '1.25',
1271             'Encode::JP::H2Z'       => '1.02',
1272             'Encode::JP::JIS7'      => '1.08',
1273             'Encode::KR'            => '1.22',
1274             'Encode::KR::2022_KR'   => '1.05',
1275             'Encode::MIME::Header'  => '1.05',
1276             'Encode::Symbol'        => '1.22',
1277             'Encode::TW'            => '1.26',
1278             'Encode::Unicode'       => '1.37',
1279             'Exporter::Heavy'       => '5.566',
1280             'ExtUtils::Command'     => '1.04',
1281             'ExtUtils::Command::MM' => '0.01',
1282             'ExtUtils::Constant'    => '0.12',
1283             'ExtUtils::Installed'   => '0.06',
1284             'ExtUtils::Liblist'     => '1.00',
1285             'ExtUtils::Liblist::Kid'=> '1.29',
1286             'ExtUtils::MM'          => '0.04',
1287             'ExtUtils::MM_Any'      => '0.04',
1288             'ExtUtils::MM_BeOS'     => '1.03',
1289             'ExtUtils::MM_Cygwin'   => '1.04',
1290             'ExtUtils::MM_DOS'      => '0.01',
1291             'ExtUtils::MM_MacOS'    => '1.03',
1292             'ExtUtils::MM_NW5'      => '2.05',
1293             'ExtUtils::MM_OS2'      => '1.03',
1294             'ExtUtils::MM_UWIN'     => '0.01',
1295             'ExtUtils::MM_Unix'     => '1.33',
1296             'ExtUtils::MM_VMS'      => '5.65',
1297             'ExtUtils::MM_Win32'    => '1.05',
1298             'ExtUtils::MM_Win95'    => '0.02',
1299             'ExtUtils::MY'          => '0.01',
1300             'ExtUtils::MakeMaker'   => '6.03',
1301             'ExtUtils::Manifest'    => '1.38',
1302             'ExtUtils::Mkbootstrap' => '1.15',
1303             'ExtUtils::Mksymlists'  => '1.19',
1304             'ExtUtils::testlib'     => '1.15',
1305             'File::CheckTree'       => '4.2',
1306             'FileCache'             => '1.021',
1307             'Filter::Simple'        => '0.78',
1308             'Getopt::Long'          => '2.32',
1309             'Hash::Util'            => '0.04',
1310             'List::Util'            => '1.07_00',
1311             'Locale::Country'       => '2.04',
1312             'Math::BigFloat'        => '1.35',
1313             'Math::BigFloat::Trace' => '0.01',
1314             'Math::BigInt'          => '1.60',
1315             'Math::BigInt::Calc'    => '0.30',
1316             'Math::BigInt::Trace'   => '0.01',
1317             'Math::BigRat'          => '0.07',
1318             'Memoize'               => '1.01',
1319             'Memoize::Expire'       => '1.00',
1320             'Memoize::ExpireFile'   => '1.01',
1321             'Net::FTP'              => '2.65',
1322             'Net::FTP::dataconn'    => '0.11',
1323             'Net::Ping'             => '2.19',
1324             'Net::SMTP'             => '2.24',
1325             'PerlIO'                => '1.01',
1326             'PerlIO::encoding'      => '0.06',
1327             'PerlIO::scalar'        => '0.01',
1328             'PerlIO::via'           => '0.01',
1329             'PerlIO::via::QuotedPrint'=> '0.04',
1330             'Pod::Man'              => '1.33',
1331             'Pod::Text'             => '2.19',
1332             'Scalar::Util'          => '1.07_00',
1333             'Storable'              => '2.04',
1334             'Switch'                => '2.09',
1335             'Sys::Syslog'           => '0.03',
1336             'Test'                  => '1.20',
1337             'Test::Builder'         => '0.15',
1338             'Test::Harness'         => '2.26',
1339             'Test::Harness::Straps' => '0.14',
1340             'Test::More'            => '0.45',
1341             'Test::Simple'          => '0.45',
1342             'Thread::Queue'         => '2.00',
1343             'Thread::Semaphore'     => '2.00',
1344             'Tie::File'             => '0.93',
1345             'Tie::RefHash'          => '1.30',
1346             'Unicode'               => '3.2.0',
1347             'Unicode::Collate'      => '0.12',
1348             'Unicode::Normalize'    => '0.17',
1349             'XS::APItest'           => '0.01',
1350             'attributes'            => '0.05',
1351             'base'                  => '1.03',
1352             'bigint'                => '0.02',
1353             'bignum'                => '0.11',
1354             'bigrat'                => '0.04',
1355             'blib'                  => '1.02',
1356             'encoding'              => '1.35',
1357             'sort'                  => '1.01',
1358             'threads'               => '0.99',
1359         },
1360         removed => {
1361             'Encode::Internal'      => 1,
1362             'Encode::JP::Constants' => 1,
1363             'Encode::JP::ISO_2022_JP'=> 1,
1364             'Encode::JP::JIS'       => 1,
1365             'Encode::JP::Tr'        => 1,
1366             'Encode::Tcl'           => 1,
1367             'Encode::Tcl::Escape'   => 1,
1368             'Encode::Tcl::Extended' => 1,
1369             'Encode::Tcl::HanZi'    => 1,
1370             'Encode::Tcl::Table'    => 1,
1371             'Encode::XS'            => 1,
1372             'Encode::iso10646_1'    => 1,
1373             'Encode::usc2_le'       => 1,
1374             'Encode::utf8'          => 1,
1375             'PerlIO::Scalar'        => 1,
1376             'PerlIO::Via'           => 1,
1377         }
1378     },
1379     5.008001 => {
1380         delta_from => 5.008,
1381         changed => {
1382             'Attribute::Handlers'   => '0.78',
1383             'AutoLoader'            => '5.60',
1384             'AutoSplit'             => '1.04',
1385             'B'                     => '1.02',
1386             'B::Asmdata'            => '1.01',
1387             'B::Assembler'          => '0.06',
1388             'B::Bblock'             => '1.02',
1389             'B::Bytecode'           => '1.01',
1390             'B::C'                  => '1.02',
1391             'B::Concise'            => '0.56',
1392             'B::Debug'              => '1.01',
1393             'B::Deparse'            => '0.64',
1394             'B::Disassembler'       => '1.03',
1395             'B::Lint'               => '1.02',
1396             'B::Terse'              => '1.02',
1397             'Benchmark'             => '1.051',
1398             'ByteLoader'            => '0.05',
1399             'CGI'                   => '3.00',
1400             'CGI::Carp'             => '1.26',
1401             'CGI::Cookie'           => '1.24',
1402             'CGI::Fast'             => '1.041',
1403             'CGI::Pretty'           => '1.07_00',
1404             'CGI::Util'             => '1.31',
1405             'CPAN'                  => '1.76_01',
1406             'CPAN::FirstTime'       => '1.60',
1407             'CPAN::Nox'             => '1.03',
1408             'Class::Struct'         => '0.63',
1409             'Cwd'                   => '2.08',
1410             'DB_File'               => '1.806',
1411             'Data::Dumper'          => '2.121',
1412             'Devel::DProf'          => '20030813.00',
1413             'Devel::PPPort'         => '2.007',
1414             'Devel::Peek'           => '1.01',
1415             'Digest'                => '1.02',
1416             'Digest::MD5'           => '2.27',
1417             'Encode'                => '1.9801',
1418             'Encode::Alias'         => '1.38',
1419             'Encode::Byte'          => '1.23',
1420             'Encode::CJKConstants'  => '1.02',
1421             'Encode::CN::HZ'        => '1.05',
1422             'Encode::Config'        => '1.07',
1423             'Encode::Encoder'       => '0.07',
1424             'Encode::Encoding'      => '1.33',
1425             'Encode::Guess'         => '1.09',
1426             'Encode::JP::JIS7'      => '1.12',
1427             'Encode::KR'            => '1.23',
1428             'Encode::KR::2022_KR'   => '1.06',
1429             'Encode::MIME::Header'  => '1.09',
1430             'Encode::Unicode'       => '1.40',
1431             'Encode::Unicode::UTF7' => '0.02',
1432             'English'               => '1.01',
1433             'Errno'                 => '1.09_00',
1434             'Exporter'              => '5.567',
1435             'Exporter::Heavy'       => '5.567',
1436             'ExtUtils::Command'     => '1.05',
1437             'ExtUtils::Command::MM' => '0.03',
1438             'ExtUtils::Constant'    => '0.14',
1439             'ExtUtils::Install'     => '1.32',
1440             'ExtUtils::Installed'   => '0.08',
1441             'ExtUtils::Liblist'     => '1.01',
1442             'ExtUtils::Liblist::Kid'=> '1.3',
1443             'ExtUtils::MM_Any'      => '0.07',
1444             'ExtUtils::MM_BeOS'     => '1.04',
1445             'ExtUtils::MM_Cygwin'   => '1.06',
1446             'ExtUtils::MM_DOS'      => '0.02',
1447             'ExtUtils::MM_MacOS'    => '1.07',
1448             'ExtUtils::MM_NW5'      => '2.06',
1449             'ExtUtils::MM_OS2'      => '1.04',
1450             'ExtUtils::MM_UWIN'     => '0.02',
1451             'ExtUtils::MM_Unix'     => '1.42',
1452             'ExtUtils::MM_VMS'      => '5.70',
1453             'ExtUtils::MM_Win32'    => '1.09',
1454             'ExtUtils::MM_Win95'    => '0.03',
1455             'ExtUtils::MakeMaker'   => '6.17',
1456             'ExtUtils::MakeMaker::bytes'=> '0.01',
1457             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1458             'ExtUtils::Manifest'    => '1.42',
1459             'Fcntl'                 => '1.05',
1460             'File::Basename'        => '2.72',
1461             'File::Copy'            => '2.06',
1462             'File::Find'            => '1.05',
1463             'File::Glob'            => '1.02',
1464             'File::Path'            => '1.06',
1465             'File::Spec'            => '0.86',
1466             'File::Spec::Cygwin'    => '1.1',
1467             'File::Spec::Epoc'      => '1.1',
1468             'File::Spec::Functions' => '1.3',
1469             'File::Spec::Mac'       => '1.4',
1470             'File::Spec::OS2'       => '1.2',
1471             'File::Spec::Unix'      => '1.5',
1472             'File::Spec::VMS'       => '1.4',
1473             'File::Spec::Win32'     => '1.4',
1474             'File::Temp'            => '0.14',
1475             'FileCache'             => '1.03',
1476             'Filter::Util::Call'    => '1.0601',
1477             'GDBM_File'             => '1.07',
1478             'Getopt::Long'          => '2.34',
1479             'Getopt::Std'           => '1.04',
1480             'Hash::Util'            => '0.05',
1481             'I18N::LangTags'        => '0.28',
1482             'I18N::LangTags::List'  => '0.26',
1483             'I18N::Langinfo'        => '0.02',
1484             'IO'                    => '1.21',
1485             'IO::Dir'               => '1.04',
1486             'IO::File'              => '1.10',
1487             'IO::Handle'            => '1.23',
1488             'IO::Seekable'          => '1.09',
1489             'IO::Select'            => '1.16',
1490             'IO::Socket'            => '1.28',
1491             'IO::Socket::INET'      => '1.27',
1492             'IO::Socket::UNIX'      => '1.21',
1493             'IPC::Msg'              => '1.02',
1494             'IPC::Open3'            => '1.0105',
1495             'IPC::Semaphore'        => '1.02',
1496             'IPC::SysV'             => '1.04',
1497             'JNI'                   => '0.2',
1498             'List::Util'            => '1.13',
1499             'Locale::Country'       => '2.61',
1500             'Locale::Currency'      => '2.21',
1501             'Locale::Language'      => '2.21',
1502             'Locale::Maketext'      => '1.06',
1503             'Locale::Maketext::Guts'=> undef,
1504             'Locale::Maketext::GutsLoader'=> undef,
1505             'Locale::Script'        => '2.21',
1506             'MIME::Base64'          => '2.20',
1507             'MIME::QuotedPrint'     => '2.20',
1508             'Math::BigFloat'        => '1.40',
1509             'Math::BigInt'          => '1.66',
1510             'Math::BigInt::Calc'    => '0.36',
1511             'Math::BigInt::Scalar'  => '0.11',
1512             'Math::BigRat'          => '0.10',
1513             'Math::Trig'            => '1.02',
1514             'NDBM_File'             => '1.05',
1515             'NEXT'                  => '0.60',
1516             'Net::Cmd'              => '2.24',
1517             'Net::Domain'           => '2.18',
1518             'Net::FTP'              => '2.71',
1519             'Net::FTP::A'           => '1.16',
1520             'Net::NNTP'             => '2.22',
1521             'Net::POP3'             => '2.24',
1522             'Net::Ping'             => '2.31',
1523             'Net::SMTP'             => '2.26',
1524             'Net::hostent'          => '1.01',
1525             'Net::servent'          => '1.01',
1526             'ODBM_File'             => '1.04',
1527             'OS2::DLL'              => '1.01',
1528             'OS2::ExtAttr'          => '0.02',
1529             'OS2::PrfDB'            => '0.03',
1530             'OS2::Process'          => '1.01',
1531             'OS2::REXX'             => '1.02',
1532             'POSIX'                 => '1.06',
1533             'PerlIO'                => '1.02',
1534             'PerlIO::encoding'      => '0.07',
1535             'PerlIO::scalar'        => '0.02',
1536             'PerlIO::via'           => '0.02',
1537             'PerlIO::via::QuotedPrint'=> '0.05',
1538             'Pod::Checker'          => '1.41',
1539             'Pod::Find'             => '0.24',
1540             'Pod::Functions'        => '1.02',
1541             'Pod::Html'             => '1.0501',
1542             'Pod::InputObjects'     => '1.14',
1543             'Pod::LaTeX'            => '0.55',
1544             'Pod::Man'              => '1.37',
1545             'Pod::ParseLink'        => '1.06',
1546             'Pod::ParseUtils'       => '0.3',
1547             'Pod::Perldoc'          => '3.10',
1548             'Pod::Perldoc::BaseTo'  => undef,
1549             'Pod::Perldoc::GetOptsOO'=> undef,
1550             'Pod::Perldoc::ToChecker'=> undef,
1551             'Pod::Perldoc::ToMan'   => undef,
1552             'Pod::Perldoc::ToNroff' => undef,
1553             'Pod::Perldoc::ToPod'   => undef,
1554             'Pod::Perldoc::ToRtf'   => undef,
1555             'Pod::Perldoc::ToText'  => undef,
1556             'Pod::Perldoc::ToTk'    => undef,
1557             'Pod::Perldoc::ToXml'   => undef,
1558             'Pod::PlainText'        => '2.01',
1559             'Pod::Text'             => '2.21',
1560             'Pod::Text::Color'      => '1.04',
1561             'Pod::Text::Overstrike' => '1.1',
1562             'Pod::Text::Termcap'    => '1.11',
1563             'Pod::Usage'            => '1.16',
1564             'SDBM_File'             => '1.04',
1565             'Safe'                  => '2.10',
1566             'Scalar::Util'          => '1.13',
1567             'SelfLoader'            => '1.0904',
1568             'Shell'                 => '0.5',
1569             'Socket'                => '1.76',
1570             'Storable'              => '2.08',
1571             'Switch'                => '2.10',
1572             'Symbol'                => '1.05',
1573             'Sys::Hostname'         => '1.11',
1574             'Sys::Syslog'           => '0.04',
1575             'Term::ANSIColor'       => '1.07',
1576             'Term::Cap'             => '1.08',
1577             'Term::Complete'        => '1.401',
1578             'Term::ReadLine'        => '1.01',
1579             'Test'                  => '1.24',
1580             'Test::Builder'         => '0.17',
1581             'Test::Harness'         => '2.30',
1582             'Test::Harness::Straps' => '0.15',
1583             'Test::More'            => '0.47',
1584             'Test::Simple'          => '0.47',
1585             'Text::Abbrev'          => '1.01',
1586             'Text::Balanced'        => '1.95',
1587             'Text::Wrap'            => '2001.09291',
1588             'Thread::Semaphore'     => '2.01',
1589             'Tie::Array'            => '1.03',
1590             'Tie::File'             => '0.97',
1591             'Tie::RefHash'          => '1.31',
1592             'Time::HiRes'           => '1.51',
1593             'Time::Local'           => '1.07',
1594             'UNIVERSAL'             => '1.01',
1595             'Unicode'               => '4.0.0',
1596             'Unicode::Collate'      => '0.28',
1597             'Unicode::Normalize'    => '0.23',
1598             'Unicode::UCD'          => '0.21',
1599             'VMS::Filespec'         => '1.11',
1600             'XS::APItest'           => '0.02',
1601             'XSLoader'              => '0.02',
1602             'attributes'            => '0.06',
1603             'base'                  => '2.03',
1604             'bigint'                => '0.04',
1605             'bignum'                => '0.14',
1606             'bigrat'                => '0.06',
1607             'bytes'                 => '1.01',
1608             'charnames'             => '1.02',
1609             'diagnostics'           => '1.11',
1610             'encoding'              => '1.47',
1611             'fields'                => '2.03',
1612             'filetest'              => '1.01',
1613             'if'                    => '0.03',
1614             'lib'                   => '0.5565',
1615             'open'                  => '1.02',
1616             'overload'              => '1.01',
1617             're'                    => '0.04',
1618             'sort'                  => '1.02',
1619             'strict'                => '1.03',
1620             'threads'               => '1.00',
1621             'threads::shared'       => '0.91',
1622             'utf8'                  => '1.02',
1623             'vmsish'                => '1.01',
1624             'warnings'              => '1.03',
1625         },
1626         removed => {
1627         }
1628     },
1629     5.008002 => {
1630         delta_from => 5.008001,
1631         changed => {
1632             'DB_File'               => '1.807',
1633             'Devel::PPPort'         => '2.009',
1634             'Digest::MD5'           => '2.30',
1635             'I18N::LangTags'        => '0.29',
1636             'I18N::LangTags::List'  => '0.29',
1637             'MIME::Base64'          => '2.21',
1638             'MIME::QuotedPrint'     => '2.21',
1639             'Net::Domain'           => '2.19',
1640             'Net::FTP'              => '2.72',
1641             'Pod::Perldoc'          => '3.11',
1642             'Time::HiRes'           => '1.52',
1643             'Unicode::Collate'      => '0.30',
1644             'Unicode::Normalize'    => '0.25',
1645         },
1646         removed => {
1647         }
1648     },
1649     5.008003 => {
1650         delta_from => 5.008002,
1651         changed => {
1652             'Benchmark'             => '1.052',
1653             'CGI'                   => '3.01',
1654             'CGI::Carp'             => '1.27',
1655             'CGI::Fast'             => '1.05',
1656             'CGI::Pretty'           => '1.08',
1657             'CGI::Util'             => '1.4',
1658             'Cwd'                   => '2.12',
1659             'DB_File'               => '1.808',
1660             'Devel::PPPort'         => '2.011',
1661             'Digest'                => '1.05',
1662             'Digest::MD5'           => '2.33',
1663             'Digest::base'          => '1.00',
1664             'Encode'                => '1.99',
1665             'Exporter'              => '5.57',
1666             'File::CheckTree'       => '4.3',
1667             'File::Copy'            => '2.07',
1668             'File::Find'            => '1.06',
1669             'File::Spec'            => '0.87',
1670             'FindBin'               => '1.44',
1671             'Getopt::Std'           => '1.05',
1672             'Math::BigFloat'        => '1.42',
1673             'Math::BigInt'          => '1.68',
1674             'Math::BigInt::Calc'    => '0.38',
1675             'Math::BigInt::CalcEmu' => '0.02',
1676             'OS2::DLL'              => '1.02',
1677             'POSIX'                 => '1.07',
1678             'PerlIO'                => '1.03',
1679             'PerlIO::via::QuotedPrint'=> '0.06',
1680             'Pod::Html'             => '1.0502',
1681             'Pod::Parser'           => '1.14',
1682             'Pod::Perldoc'          => '3.12',
1683             'Pod::PlainText'        => '2.02',
1684             'Storable'              => '2.09',
1685             'Test::Harness'         => '2.40',
1686             'Test::Harness::Assert' => '0.02',
1687             'Test::Harness::Iterator'=> '0.02',
1688             'Test::Harness::Straps' => '0.19',
1689             'Tie::Hash'             => '1.01',
1690             'Unicode::Collate'      => '0.33',
1691             'Unicode::Normalize'    => '0.28',
1692             'XS::APItest'           => '0.03',
1693             'base'                  => '2.04',
1694             'diagnostics'           => '1.12',
1695             'encoding'              => '1.48',
1696             'threads'               => '1.01',
1697             'threads::shared'       => '0.92',
1698         },
1699         removed => {
1700             'Math::BigInt::Scalar'  => 1,
1701         }
1702     },
1703     5.008004 => {
1704         delta_from => 5.008003,
1705         changed => {
1706             'Attribute::Handlers'   => '0.78_01',
1707             'B::Assembler'          => '0.07',
1708             'B::Concise'            => '0.60',
1709             'B::Deparse'            => '0.66',
1710             'Benchmark'             => '1.06',
1711             'CGI'                   => '3.04',
1712             'Carp'                  => '1.02',
1713             'Cwd'                   => '2.17',
1714             'DBM_Filter'            => '0.01',
1715             'DBM_Filter::compress'  => '0.01',
1716             'DBM_Filter::encode'    => '0.01',
1717             'DBM_Filter::int32'     => '0.01',
1718             'DBM_Filter::null'      => '0.01',
1719             'DBM_Filter::utf8'      => '0.01',
1720             'Digest'                => '1.06',
1721             'DynaLoader'            => '1.05',
1722             'Encode'                => '1.99_01',
1723             'Encode::CN::HZ'        => '1.0501',
1724             'Exporter'              => '5.58',
1725             'Exporter::Heavy'       => '5.57',
1726             'ExtUtils::Liblist::Kid'=> '1.3001',
1727             'ExtUtils::MM_NW5'      => '2.07_02',
1728             'ExtUtils::MM_Win95'    => '0.0301',
1729             'File::Find'            => '1.07',
1730             'IO::Handle'            => '1.24',
1731             'IO::Pipe'              => '1.123',
1732             'IPC::Open3'            => '1.0106',
1733             'Locale::Maketext'      => '1.08',
1734             'MIME::Base64'          => '3.01',
1735             'MIME::QuotedPrint'     => '3.01',
1736             'Math::BigFloat'        => '1.44',
1737             'Math::BigInt'          => '1.70',
1738             'Math::BigInt::Calc'    => '0.40',
1739             'Math::BigInt::CalcEmu' => '0.04',
1740             'Math::BigRat'          => '0.12',
1741             'ODBM_File'             => '1.05',
1742             'POSIX'                 => '1.08',
1743             'Shell'                 => '0.5.2',
1744             'Socket'                => '1.77',
1745             'Storable'              => '2.12',
1746             'Sys::Syslog'           => '0.05',
1747             'Term::ANSIColor'       => '1.08',
1748             'Time::HiRes'           => '1.59',
1749             'Unicode'               => '4.0.1',
1750             'Unicode::UCD'          => '0.22',
1751             'Win32'                 => '0.23',
1752             'base'                  => '2.05',
1753             'bigint'                => '0.05',
1754             'bignum'                => '0.15',
1755             'charnames'             => '1.03',
1756             'open'                  => '1.03',
1757             'threads'               => '1.03',
1758             'utf8'                  => '1.03',
1759         },
1760         removed => {
1761         }
1762     },
1763     5.008005 => {
1764         delta_from => 5.008004,
1765         changed => {
1766             'B::Concise'            => '0.61',
1767             'B::Deparse'            => '0.67',
1768             'CGI'                   => '3.05',
1769             'CGI::Carp'             => '1.28',
1770             'CGI::Util'             => '1.5',
1771             'Carp'                  => '1.03',
1772             'Carp::Heavy'           => '1.03',
1773             'Cwd'                   => '2.19',
1774             'DB_File'               => '1.809',
1775             'Digest'                => '1.08',
1776             'Encode'                => '2.01',
1777             'Encode::Alias'         => '2.00',
1778             'Encode::Byte'          => '2.00',
1779             'Encode::CJKConstants'  => '2.00',
1780             'Encode::CN'            => '2.00',
1781             'Encode::CN::HZ'        => '2.01',
1782             'Encode::Config'        => '2.00',
1783             'Encode::EBCDIC'        => '2.00',
1784             'Encode::Encoder'       => '2.00',
1785             'Encode::Encoding'      => '2.00',
1786             'Encode::Guess'         => '2.00',
1787             'Encode::JP'            => '2.00',
1788             'Encode::JP::H2Z'       => '2.00',
1789             'Encode::JP::JIS7'      => '2.00',
1790             'Encode::KR'            => '2.00',
1791             'Encode::KR::2022_KR'   => '2.00',
1792             'Encode::MIME::Header'  => '2.00',
1793             'Encode::Symbol'        => '2.00',
1794             'Encode::TW'            => '2.00',
1795             'Encode::Unicode'       => '2.00',
1796             'Encode::Unicode::UTF7' => '2.01',
1797             'File::Basename'        => '2.73',
1798             'File::Copy'            => '2.08',
1799             'File::Glob'            => '1.03',
1800             'FileCache'             => '1.04_01',
1801             'I18N::LangTags'        => '0.33',
1802             'I18N::LangTags::Detect'=> '1.03',
1803             'List::Util'            => '1.14',
1804             'Locale::Constants'     => '2.07',
1805             'Locale::Country'       => '2.07',
1806             'Locale::Currency'      => '2.07',
1807             'Locale::Language'      => '2.07',
1808             'Locale::Maketext'      => '1.09',
1809             'Locale::Script'        => '2.07',
1810             'Net::Cmd'              => '2.26',
1811             'Net::FTP'              => '2.75',
1812             'Net::NNTP'             => '2.23',
1813             'Net::POP3'             => '2.28',
1814             'Net::SMTP'             => '2.29',
1815             'Net::Time'             => '2.10',
1816             'Pod::Checker'          => '1.42',
1817             'Pod::Find'             => '0.2401',
1818             'Pod::LaTeX'            => '0.56',
1819             'Pod::ParseUtils'       => '1.2',
1820             'Pod::Perldoc'          => '3.13',
1821             'Safe'                  => '2.11',
1822             'Scalar::Util'          => '1.14',
1823             'Shell'                 => '0.6',
1824             'Storable'              => '2.13',
1825             'Term::Cap'             => '1.09',
1826             'Test'                  => '1.25',
1827             'Test::Harness'         => '2.42',
1828             'Text::ParseWords'      => '3.22',
1829             'Text::Wrap'            => '2001.09292',
1830             'Time::Local'           => '1.10',
1831             'Unicode::Collate'      => '0.40',
1832             'Unicode::Normalize'    => '0.30',
1833             'XS::APItest'           => '0.04',
1834             'autouse'               => '1.04',
1835             'base'                  => '2.06',
1836             'charnames'             => '1.04',
1837             'diagnostics'           => '1.13',
1838             'encoding'              => '2.00',
1839             'threads'               => '1.05',
1840             'utf8'                  => '1.04',
1841         },
1842         removed => {
1843         }
1844     },
1845     5.008006 => {
1846         delta_from => 5.008005,
1847         changed => {
1848             'B'                     => '1.07',
1849             'B::C'                  => '1.04',
1850             'B::Concise'            => '0.64',
1851             'B::Debug'              => '1.02',
1852             'B::Deparse'            => '0.69',
1853             'B::Lint'               => '1.03',
1854             'B::Showlex'            => '1.02',
1855             'Cwd'                   => '3.01',
1856             'DB_File'               => '1.810',
1857             'Data::Dumper'          => '2.121_02',
1858             'Devel::PPPort'         => '3.03',
1859             'Devel::Peek'           => '1.02',
1860             'Encode'                => '2.08',
1861             'Encode::Alias'         => '2.02',
1862             'Encode::Encoding'      => '2.02',
1863             'Encode::JP'            => '2.01',
1864             'Encode::Unicode'       => '2.02',
1865             'Exporter::Heavy'       => '5.58',
1866             'ExtUtils::Constant'    => '0.1401',
1867             'File::Spec'            => '3.01',
1868             'File::Spec::Win32'     => '1.5',
1869             'I18N::LangTags'        => '0.35',
1870             'I18N::LangTags::List'  => '0.35',
1871             'MIME::Base64'          => '3.05',
1872             'MIME::QuotedPrint'     => '3.03',
1873             'Math::BigFloat'        => '1.47',
1874             'Math::BigInt'          => '1.73',
1875             'Math::BigInt::Calc'    => '0.43',
1876             'Math::BigRat'          => '0.13',
1877             'Text::ParseWords'      => '3.23',
1878             'Time::HiRes'           => '1.65',
1879             'XS::APItest'           => '0.05',
1880             'diagnostics'           => '1.14',
1881             'encoding'              => '2.01',
1882             'open'                  => '1.04',
1883             'overload'              => '1.02',
1884         },
1885         removed => {
1886         }
1887     },
1888     5.008007 => {
1889         delta_from => 5.008006,
1890         changed => {
1891             'B'                     => '1.09',
1892             'B::Concise'            => '0.65',
1893             'B::Deparse'            => '0.7',
1894             'B::Disassembler'       => '1.04',
1895             'B::Terse'              => '1.03',
1896             'Benchmark'             => '1.07',
1897             'CGI'                   => '3.10',
1898             'CGI::Carp'             => '1.29',
1899             'CGI::Cookie'           => '1.25',
1900             'Carp'                  => '1.04',
1901             'Carp::Heavy'           => '1.04',
1902             'Class::ISA'            => '0.33',
1903             'Cwd'                   => '3.05',
1904             'DB_File'               => '1.811',
1905             'Data::Dumper'          => '2.121_04',
1906             'Devel::DProf'          => '20050310.00',
1907             'Devel::PPPort'         => '3.06',
1908             'Digest'                => '1.10',
1909             'Digest::file'          => '0.01',
1910             'Encode'                => '2.10',
1911             'Encode::Alias'         => '2.03',
1912             'Errno'                 => '1.09_01',
1913             'ExtUtils::Constant'    => '0.16',
1914             'ExtUtils::Constant::Base'=> '0.01',
1915             'ExtUtils::Constant::Utils'=> '0.01',
1916             'ExtUtils::Constant::XS'=> '0.01',
1917             'File::Find'            => '1.09',
1918             'File::Glob'            => '1.04',
1919             'File::Path'            => '1.07',
1920             'File::Spec'            => '3.05',
1921             'File::Temp'            => '0.16',
1922             'FileCache'             => '1.05',
1923             'IO::File'              => '1.11',
1924             'IO::Socket::INET'      => '1.28',
1925             'Math::BigFloat'        => '1.51',
1926             'Math::BigInt'          => '1.77',
1927             'Math::BigInt::Calc'    => '0.47',
1928             'Math::BigInt::CalcEmu' => '0.05',
1929             'Math::BigRat'          => '0.15',
1930             'Pod::Find'             => '1.3',
1931             'Pod::Html'             => '1.0503',
1932             'Pod::InputObjects'     => '1.3',
1933             'Pod::LaTeX'            => '0.58',
1934             'Pod::ParseUtils'       => '1.3',
1935             'Pod::Parser'           => '1.3',
1936             'Pod::Perldoc'          => '3.14',
1937             'Pod::Select'           => '1.3',
1938             'Pod::Usage'            => '1.3',
1939             'SelectSaver'           => '1.01',
1940             'Symbol'                => '1.06',
1941             'Sys::Syslog'           => '0.06',
1942             'Term::ANSIColor'       => '1.09',
1943             'Term::Complete'        => '1.402',
1944             'Test::Builder'         => '0.22',
1945             'Test::Harness'         => '2.48',
1946             'Test::Harness::Point'  => '0.01',
1947             'Test::Harness::Straps' => '0.23',
1948             'Test::More'            => '0.54',
1949             'Test::Simple'          => '0.54',
1950             'Text::ParseWords'      => '3.24',
1951             'Text::Wrap'            => '2001.09293',
1952             'Tie::RefHash'          => '1.32',
1953             'Time::HiRes'           => '1.66',
1954             'Time::Local'           => '1.11',
1955             'Unicode'               => '4.1.0',
1956             'Unicode::Normalize'    => '0.32',
1957             'Unicode::UCD'          => '0.23',
1958             'Win32'                 => '0.24',
1959             'XS::APItest'           => '0.06',
1960             'base'                  => '2.07',
1961             'bigint'                => '0.07',
1962             'bignum'                => '0.17',
1963             'bigrat'                => '0.08',
1964             'bytes'                 => '1.02',
1965             'constant'              => '1.05',
1966             'overload'              => '1.03',
1967             'threads::shared'       => '0.93',
1968             'utf8'                  => '1.05',
1969         },
1970         removed => {
1971             'JNI'                   => 1,
1972             'JPL::AutoLoader'       => 1,
1973             'JPL::Class'            => 1,
1974             'JPL::Compile'          => 1,
1975         }
1976     },
1977     5.008008 => {
1978         delta_from => 5.008007,
1979         changed => {
1980             'Attribute::Handlers'   => '0.78_02',
1981             'B'                     => '1.09_01',
1982             'B::Bblock'             => '1.02_01',
1983             'B::Bytecode'           => '1.01_01',
1984             'B::C'                  => '1.04_01',
1985             'B::CC'                 => '1.00_01',
1986             'B::Concise'            => '0.66',
1987             'B::Debug'              => '1.02_01',
1988             'B::Deparse'            => '0.71',
1989             'B::Disassembler'       => '1.05',
1990             'B::Terse'              => '1.03_01',
1991             'ByteLoader'            => '0.06',
1992             'CGI'                   => '3.15',
1993             'CGI::Cookie'           => '1.26',
1994             'CPAN'                  => '1.76_02',
1995             'Cwd'                   => '3.12',
1996             'DB'                    => '1.01',
1997             'DB_File'               => '1.814',
1998             'Data::Dumper'          => '2.121_08',
1999             'Devel::DProf'          => '20050603.00',
2000             'Devel::PPPort'         => '3.06_01',
2001             'Devel::Peek'           => '1.03',
2002             'Digest'                => '1.14',
2003             'Digest::MD5'           => '2.36',
2004             'Digest::file'          => '1.00',
2005             'Dumpvalue'             => '1.12',
2006             'Encode'                => '2.12',
2007             'Encode::Alias'         => '2.04',
2008             'Encode::Config'        => '2.01',
2009             'Encode::MIME::Header'  => '2.01',
2010             'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
2011             'English'               => '1.02',
2012             'ExtUtils::Command'     => '1.09',
2013             'ExtUtils::Command::MM' => '0.05',
2014             'ExtUtils::Constant'    => '0.17',
2015             'ExtUtils::Embed'       => '1.26',
2016             'ExtUtils::Install'     => '1.33',
2017             'ExtUtils::Liblist::Kid'=> '1.3',
2018             'ExtUtils::MM'          => '0.05',
2019             'ExtUtils::MM_AIX'      => '0.03',
2020             'ExtUtils::MM_Any'      => '0.13',
2021             'ExtUtils::MM_BeOS'     => '1.05',
2022             'ExtUtils::MM_Cygwin'   => '1.08',
2023             'ExtUtils::MM_MacOS'    => '1.08',
2024             'ExtUtils::MM_NW5'      => '2.08',
2025             'ExtUtils::MM_OS2'      => '1.05',
2026             'ExtUtils::MM_QNX'      => '0.02',
2027             'ExtUtils::MM_Unix'     => '1.50',
2028             'ExtUtils::MM_VMS'      => '5.73',
2029             'ExtUtils::MM_VOS'      => '0.02',
2030             'ExtUtils::MM_Win32'    => '1.12',
2031             'ExtUtils::MM_Win95'    => '0.04',
2032             'ExtUtils::MakeMaker'   => '6.30',
2033             'ExtUtils::MakeMaker::Config'=> '0.02',
2034             'ExtUtils::Manifest'    => '1.46',
2035             'File::Basename'        => '2.74',
2036             'File::Copy'            => '2.09',
2037             'File::Find'            => '1.10',
2038             'File::Glob'            => '1.05',
2039             'File::Path'            => '1.08',
2040             'File::Spec'            => '3.12',
2041             'File::Spec::Win32'     => '1.6',
2042             'FileCache'             => '1.06',
2043             'Filter::Simple'        => '0.82',
2044             'FindBin'               => '1.47',
2045             'GDBM_File'             => '1.08',
2046             'Getopt::Long'          => '2.35',
2047             'IO'                    => '1.22',
2048             'IO::Dir'               => '1.05',
2049             'IO::File'              => '1.13',
2050             'IO::Handle'            => '1.25',
2051             'IO::Pipe'              => '1.13',
2052             'IO::Poll'              => '0.07',
2053             'IO::Seekable'          => '1.10',
2054             'IO::Select'            => '1.17',
2055             'IO::Socket'            => '1.29',
2056             'IO::Socket::INET'      => '1.29',
2057             'IO::Socket::UNIX'      => '1.22',
2058             'IPC::Open2'            => '1.02',
2059             'IPC::Open3'            => '1.02',
2060             'List::Util'            => '1.18',
2061             'MIME::Base64'          => '3.07',
2062             'MIME::QuotedPrint'     => '3.07',
2063             'Math::Complex'         => '1.35',
2064             'Math::Trig'            => '1.03',
2065             'NDBM_File'             => '1.06',
2066             'ODBM_File'             => '1.06',
2067             'OS2::PrfDB'            => '0.04',
2068             'OS2::Process'          => '1.02',
2069             'OS2::REXX'             => '1.03',
2070             'Opcode'                => '1.06',
2071             'POSIX'                 => '1.09',
2072             'PerlIO'                => '1.04',
2073             'PerlIO::encoding'      => '0.09',
2074             'PerlIO::scalar'        => '0.04',
2075             'PerlIO::via'           => '0.03',
2076             'Pod::Checker'          => '1.43',
2077             'Pod::Find'             => '1.34',
2078             'Pod::Functions'        => '1.03',
2079             'Pod::Html'             => '1.0504',
2080             'Pod::ParseUtils'       => '1.33',
2081             'Pod::Parser'           => '1.32',
2082             'Pod::Usage'            => '1.33',
2083             'SDBM_File'             => '1.05',
2084             'Safe'                  => '2.12',
2085             'Scalar::Util'          => '1.18',
2086             'Socket'                => '1.78',
2087             'Storable'              => '2.15',
2088             'Switch'                => '2.10_01',
2089             'Sys::Syslog'           => '0.13',
2090             'Term::ANSIColor'       => '1.10',
2091             'Term::ReadLine'        => '1.02',
2092             'Test::Builder'         => '0.32',
2093             'Test::Builder::Module' => '0.02',
2094             'Test::Builder::Tester' => '1.02',
2095             'Test::Builder::Tester::Color'=> undef,
2096             'Test::Harness'         => '2.56',
2097             'Test::Harness::Straps' => '0.26',
2098             'Test::More'            => '0.62',
2099             'Test::Simple'          => '0.62',
2100             'Text::Tabs'            => '2005.0824',
2101             'Text::Wrap'            => '2005.082401',
2102             'Tie::Hash'             => '1.02',
2103             'Time::HiRes'           => '1.86',
2104             'Unicode::Collate'      => '0.52',
2105             'Unicode::UCD'          => '0.24',
2106             'User::grent'           => '1.01',
2107             'Win32'                 => '0.2601',
2108             'XS::APItest'           => '0.08',
2109             'XS::Typemap'           => '0.02',
2110             'XSLoader'              => '0.06',
2111             'attrs'                 => '1.02',
2112             'autouse'               => '1.05',
2113             'blib'                  => '1.03',
2114             'charnames'             => '1.05',
2115             'diagnostics'           => '1.15',
2116             'encoding'              => '2.02',
2117             'if'                    => '0.05',
2118             'open'                  => '1.05',
2119             'ops'                   => '1.01',
2120             'overload'              => '1.04',
2121             're'                    => '0.05',
2122             'threads'               => '1.07',
2123             'threads::shared'       => '0.94',
2124             'utf8'                  => '1.06',
2125             'vmsish'                => '1.02',
2126             'warnings'              => '1.05',
2127             'warnings::register'    => '1.01',
2128         },
2129         removed => {
2130         }
2131     },
2132     5.008009 => {
2133         delta_from => 5.008008,
2134         changed => {
2135             'Attribute::Handlers'   => '0.78_03',
2136             'AutoLoader'            => '5.67',
2137             'AutoSplit'             => '1.06',
2138             'B'                     => '1.19',
2139             'B::Asmdata'            => '1.02',
2140             'B::Assembler'          => '0.08',
2141             'B::C'                  => '1.05',
2142             'B::Concise'            => '0.76',
2143             'B::Debug'              => '1.05',
2144             'B::Deparse'            => '0.87',
2145             'B::Lint'               => '1.11',
2146             'B::Lint::Debug'        => undef,
2147             'B::Terse'              => '1.05',
2148             'Benchmark'             => '1.1',
2149             'CGI'                   => '3.42',
2150             'CGI::Carp'             => '1.30_01',
2151             'CGI::Cookie'           => '1.29',
2152             'CGI::Fast'             => '1.07',
2153             'CGI::Util'             => '1.5_01',
2154             'CPAN'                  => '1.9301',
2155             'CPAN::Debug'           => '5.5',
2156             'CPAN::DeferedCode'     => '5.50',
2157             'CPAN::Distroprefs'     => '6',
2158             'CPAN::FirstTime'       => '5.5_01',
2159             'CPAN::HandleConfig'    => '5.5',
2160             'CPAN::Kwalify'         => '5.50',
2161             'CPAN::Nox'             => '5.50',
2162             'CPAN::Queue'           => '5.5',
2163             'CPAN::Tarzip'          => '5.5',
2164             'CPAN::Version'         => '5.5',
2165             'Carp'                  => '1.10',
2166             'Carp::Heavy'           => '1.10',
2167             'Cwd'                   => '3.29',
2168             'DBM_Filter'            => '0.02',
2169             'DBM_Filter::compress'  => '0.02',
2170             'DBM_Filter::encode'    => '0.02',
2171             'DBM_Filter::int32'     => '0.02',
2172             'DBM_Filter::null'      => '0.02',
2173             'DBM_Filter::utf8'      => '0.02',
2174             'DB_File'               => '1.817',
2175             'Data::Dumper'          => '2.121_17',
2176             'Devel::DProf'          => '20080331.00',
2177             'Devel::InnerPackage'   => '0.3',
2178             'Devel::PPPort'         => '3.14',
2179             'Devel::Peek'           => '1.04',
2180             'Digest'                => '1.15',
2181             'Digest::MD5'           => '2.37',
2182             'DirHandle'             => '1.02',
2183             'DynaLoader'            => '1.09',
2184             'Encode'                => '2.26',
2185             'Encode::Alias'         => '2.10',
2186             'Encode::Byte'          => '2.03',
2187             'Encode::CJKConstants'  => '2.02',
2188             'Encode::CN'            => '2.02',
2189             'Encode::CN::HZ'        => '2.05',
2190             'Encode::Config'        => '2.05',
2191             'Encode::EBCDIC'        => '2.02',
2192             'Encode::Encoder'       => '2.01',
2193             'Encode::Encoding'      => '2.05',
2194             'Encode::GSM0338'       => '2.01',
2195             'Encode::Guess'         => '2.02',
2196             'Encode::JP'            => '2.03',
2197             'Encode::JP::H2Z'       => '2.02',
2198             'Encode::JP::JIS7'      => '2.04',
2199             'Encode::KR'            => '2.02',
2200             'Encode::KR::2022_KR'   => '2.02',
2201             'Encode::MIME::Header'  => '2.05',
2202             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2203             'Encode::MIME::Name'    => '1.01',
2204             'Encode::Symbol'        => '2.02',
2205             'Encode::TW'            => '2.02',
2206             'Encode::Unicode'       => '2.05',
2207             'Encode::Unicode::UTF7' => '2.04',
2208             'English'               => '1.03',
2209             'Errno'                 => '1.10',
2210             'Exporter'              => '5.63',
2211             'Exporter::Heavy'       => '5.63',
2212             'ExtUtils::Command'     => '1.15',
2213             'ExtUtils::Command::MM' => '6.48',
2214             'ExtUtils::Constant'    => '0.21',
2215             'ExtUtils::Constant::Base'=> '0.04',
2216             'ExtUtils::Constant::ProxySubs'=> '0.06',
2217             'ExtUtils::Constant::Utils'=> '0.02',
2218             'ExtUtils::Constant::XS'=> '0.02',
2219             'ExtUtils::Embed'       => '1.28',
2220             'ExtUtils::Install'     => '1.50_01',
2221             'ExtUtils::Installed'   => '1.43',
2222             'ExtUtils::Liblist'     => '6.48',
2223             'ExtUtils::Liblist::Kid'=> '6.48',
2224             'ExtUtils::MM'          => '6.48',
2225             'ExtUtils::MM_AIX'      => '6.48',
2226             'ExtUtils::MM_Any'      => '6.48',
2227             'ExtUtils::MM_BeOS'     => '6.48',
2228             'ExtUtils::MM_Cygwin'   => '6.48',
2229             'ExtUtils::MM_DOS'      => '6.48',
2230             'ExtUtils::MM_Darwin'   => '6.48',
2231             'ExtUtils::MM_MacOS'    => '6.48',
2232             'ExtUtils::MM_NW5'      => '6.48',
2233             'ExtUtils::MM_OS2'      => '6.48',
2234             'ExtUtils::MM_QNX'      => '6.48',
2235             'ExtUtils::MM_UWIN'     => '6.48',
2236             'ExtUtils::MM_Unix'     => '6.48',
2237             'ExtUtils::MM_VMS'      => '6.48',
2238             'ExtUtils::MM_VOS'      => '6.48',
2239             'ExtUtils::MM_Win32'    => '6.48',
2240             'ExtUtils::MM_Win95'    => '6.48',
2241             'ExtUtils::MY'          => '6.48',
2242             'ExtUtils::MakeMaker'   => '6.48',
2243             'ExtUtils::MakeMaker::Config'=> '6.48',
2244             'ExtUtils::MakeMaker::bytes'=> '6.48',
2245             'ExtUtils::MakeMaker::vmsish'=> '6.48',
2246             'ExtUtils::Manifest'    => '1.55',
2247             'ExtUtils::Mkbootstrap' => '6.48',
2248             'ExtUtils::Mksymlists'  => '6.48',
2249             'ExtUtils::Packlist'    => '1.43',
2250             'ExtUtils::ParseXS'     => '2.19',
2251             'ExtUtils::XSSymSet'    => '1.1',
2252             'ExtUtils::testlib'     => '6.48',
2253             'Fatal'                 => '1.06',
2254             'Fcntl'                 => '1.06',
2255             'File::Basename'        => '2.77',
2256             'File::CheckTree'       => '4.4',
2257             'File::Compare'         => '1.1005',
2258             'File::Copy'            => '2.13',
2259             'File::DosGlob'         => '1.01',
2260             'File::Find'            => '1.13',
2261             'File::Glob'            => '1.06',
2262             'File::Path'            => '2.07_02',
2263             'File::Spec'            => '3.29',
2264             'File::Spec::Cygwin'    => '3.29',
2265             'File::Spec::Epoc'      => '3.29',
2266             'File::Spec::Functions' => '3.29',
2267             'File::Spec::Mac'       => '3.29',
2268             'File::Spec::OS2'       => '3.29',
2269             'File::Spec::Unix'      => '3.29',
2270             'File::Spec::VMS'       => '3.29',
2271             'File::Spec::Win32'     => '3.29',
2272             'File::Temp'            => '0.20',
2273             'File::stat'            => '1.01',
2274             'FileCache'             => '1.07',
2275             'Filter::Simple'        => '0.83',
2276             'Filter::Util::Call'    => '1.07',
2277             'FindBin'               => '1.49',
2278             'GDBM_File'             => '1.09',
2279             'Getopt::Long'          => '2.37',
2280             'Getopt::Std'           => '1.06',
2281             'Hash::Util'            => '0.06',
2282             'IO'                    => '1.23',
2283             'IO::Dir'               => '1.06',
2284             'IO::File'              => '1.14',
2285             'IO::Handle'            => '1.27',
2286             'IO::Socket'            => '1.30',
2287             'IO::Socket::INET'      => '1.31',
2288             'IO::Socket::UNIX'      => '1.23',
2289             'IPC::Msg'              => '2.00',
2290             'IPC::Open2'            => '1.03',
2291             'IPC::Open3'            => '1.03',
2292             'IPC::Semaphore'        => '2.00',
2293             'IPC::SharedMem'        => '2.00',
2294             'IPC::SysV'             => '2.00',
2295             'List::Util'            => '1.19',
2296             'Locale::Maketext'      => '1.13',
2297             'Locale::Maketext::Guts'=> '1.13',
2298             'Locale::Maketext::GutsLoader'=> '1.13',
2299             'Math::BigFloat'        => '1.60',
2300             'Math::BigInt'          => '1.89',
2301             'Math::BigInt::Calc'    => '0.52',
2302             'Math::BigRat'          => '0.22',
2303             'Math::Complex'         => '1.54',
2304             'Math::Trig'            => '1.18',
2305             'Module::CoreList'      => '2.17',
2306             'Module::Pluggable'     => '3.8',
2307             'Module::Pluggable::Object'=> '3.6',
2308             'NDBM_File'             => '1.07',
2309             'NEXT'                  => '0.61',
2310             'Net::Cmd'              => '2.29',
2311             'Net::Config'           => '1.11',
2312             'Net::Domain'           => '2.20',
2313             'Net::FTP'              => '2.77',
2314             'Net::FTP::A'           => '1.18',
2315             'Net::NNTP'             => '2.24',
2316             'Net::POP3'             => '2.29',
2317             'Net::Ping'             => '2.35',
2318             'Net::SMTP'             => '2.31',
2319             'O'                     => '1.01',
2320             'ODBM_File'             => '1.07',
2321             'OS2::DLL'              => '1.03',
2322             'OS2::Process'          => '1.03',
2323             'Opcode'                => '1.0601',
2324             'POSIX'                 => '1.15',
2325             'PerlIO'                => '1.05',
2326             'PerlIO::encoding'      => '0.11',
2327             'PerlIO::scalar'        => '0.06',
2328             'PerlIO::via'           => '0.05',
2329             'Pod::Html'             => '1.09',
2330             'Pod::ParseUtils'       => '1.35',
2331             'Pod::Parser'           => '1.35',
2332             'Pod::Select'           => '1.35',
2333             'Pod::Usage'            => '1.35',
2334             'SDBM_File'             => '1.06',
2335             'Safe'                  => '2.16',
2336             'Scalar::Util'          => '1.19',
2337             'SelfLoader'            => '1.17',
2338             'Shell'                 => '0.72',
2339             'Socket'                => '1.81',
2340             'Storable'              => '2.19',
2341             'Switch'                => '2.13',
2342             'Sys::Syslog'           => '0.27',
2343             'Sys::Syslog::win32::Win32'=> undef,
2344             'Term::ANSIColor'       => '1.12',
2345             'Term::Cap'             => '1.12',
2346             'Term::ReadLine'        => '1.03',
2347             'Test::Builder'         => '0.80',
2348             'Test::Builder::Module' => '0.80',
2349             'Test::Builder::Tester' => '1.13',
2350             'Test::Harness'         => '2.64',
2351             'Test::Harness::Results'=> '0.01_01',
2352             'Test::Harness::Straps' => '0.26_01',
2353             'Test::Harness::Util'   => '0.01',
2354             'Test::More'            => '0.80',
2355             'Test::Simple'          => '0.80',
2356             'Text::Balanced'        => '1.98',
2357             'Text::ParseWords'      => '3.27',
2358             'Text::Soundex'         => '3.03',
2359             'Text::Tabs'            => '2007.1117',
2360             'Text::Wrap'            => '2006.1117',
2361             'Thread'                => '2.01',
2362             'Thread::Queue'         => '2.11',
2363             'Thread::Semaphore'     => '2.09',
2364             'Tie::Handle'           => '4.2',
2365             'Tie::Hash'             => '1.03',
2366             'Tie::Memoize'          => '1.1',
2367             'Tie::RefHash'          => '1.38',
2368             'Tie::Scalar'           => '1.01',
2369             'Tie::StdHandle'        => '4.2',
2370             'Time::HiRes'           => '1.9715',
2371             'Time::Local'           => '1.1901',
2372             'Time::gmtime'          => '1.03',
2373             'Unicode'               => '5.1.0',
2374             'Unicode::Normalize'    => '1.02',
2375             'Unicode::UCD'          => '0.25',
2376             'VMS::DCLsym'           => '1.03',
2377             'VMS::Stdio'            => '2.4',
2378             'Win32'                 => '0.38',
2379             'Win32API::File'        => '0.1001_01',
2380             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2381             'Win32CORE'             => '0.02',
2382             'XS::APItest'           => '0.15',
2383             'XS::Typemap'           => '0.03',
2384             'XSLoader'              => '0.10',
2385             'attributes'            => '0.09',
2386             'autouse'               => '1.06',
2387             'base'                  => '2.13',
2388             'bigint'                => '0.23',
2389             'bignum'                => '0.23',
2390             'bigrat'                => '0.23',
2391             'blib'                  => '1.04',
2392             'charnames'             => '1.06',
2393             'constant'              => '1.17',
2394             'diagnostics'           => '1.16',
2395             'encoding'              => '2.6_01',
2396             'fields'                => '2.12',
2397             'filetest'              => '1.02',
2398             'lib'                   => '0.61',
2399             'open'                  => '1.06',
2400             'ops'                   => '1.02',
2401             'overload'              => '1.06',
2402             're'                    => '0.0601',
2403             'sigtrap'               => '1.04',
2404             'threads'               => '1.71',
2405             'threads::shared'       => '1.27',
2406             'utf8'                  => '1.07',
2407             'warnings'              => '1.05_01',
2408         },
2409         removed => {
2410         }
2411     },
2412     5.009 => {
2413         delta_from => 5.008002,
2414         changed => {
2415             'B'                     => '1.03',
2416             'B::C'                  => '1.03',
2417             'B::Concise'            => '0.57',
2418             'B::Deparse'            => '0.65',
2419             'DB_File'               => '1.806',
2420             'Devel::PPPort'         => '2.008',
2421             'English'               => '1.02',
2422             'Fatal'                 => '1.04',
2423             'OS2::DLL'              => '1.02',
2424             'Opcode'                => '1.06',
2425             'Time::HiRes'           => '1.51',
2426             'Unicode::Collate'      => '0.28',
2427             'Unicode::Normalize'    => '0.23',
2428             'XSLoader'              => '0.03',
2429             'assertions'            => '0.01',
2430             'assertions::activate'  => '0.01',
2431             'overload'              => '1.02',
2432             'version'               => '0.29',
2433         },
2434         removed => {
2435         }
2436     },
2437     5.009001 => {
2438         delta_from => 5.008004,
2439         changed => {
2440             'B'                     => '1.05',
2441             'B::Assembler'          => '0.06',
2442             'B::C'                  => '1.04',
2443             'B::Concise'            => '0.59',
2444             'B::Debug'              => '1.02',
2445             'B::Deparse'            => '0.65',
2446             'DB_File'               => '1.808_01',
2447             'Devel::PPPort'         => '2.011_01',
2448             'Digest'                => '1.05',
2449             'DynaLoader'            => '1.04',
2450             'English'               => '1.02',
2451             'Exporter::Heavy'       => '5.567',
2452             'ExtUtils::Command'     => '1.07',
2453             'ExtUtils::Liblist::Kid'=> '1.3',
2454             'ExtUtils::MM_Any'      => '0.0901',
2455             'ExtUtils::MM_Cygwin'   => '1.07',
2456             'ExtUtils::MM_NW5'      => '2.07_01',
2457             'ExtUtils::MM_Unix'     => '1.45_01',
2458             'ExtUtils::MM_VMS'      => '5.71_01',
2459             'ExtUtils::MM_Win32'    => '1.10_01',
2460             'ExtUtils::MM_Win95'    => '0.03',
2461             'ExtUtils::MakeMaker'   => '6.21_02',
2462             'ExtUtils::Manifest'    => '1.43',
2463             'Fatal'                 => '1.04',
2464             'Getopt::Long'          => '2.3401',
2465             'IO::Handle'            => '1.23',
2466             'IO::Pipe'              => '1.122',
2467             'IPC::Open3'            => '1.0105',
2468             'MIME::Base64'          => '3.00_01',
2469             'MIME::QuotedPrint'     => '3.00',
2470             'Memoize'               => '1.01_01',
2471             'ODBM_File'             => '1.04',
2472             'Opcode'                => '1.06',
2473             'POSIX'                 => '1.07',
2474             'Storable'              => '2.11',
2475             'Time::HiRes'           => '1.56',
2476             'Time::Local'           => '1.07_94',
2477             'UNIVERSAL'             => '1.02',
2478             'Unicode'               => '4.0.0',
2479             'Unicode::UCD'          => '0.21',
2480             'XSLoader'              => '0.03',
2481             'assertions'            => '0.01',
2482             'assertions::activate'  => '0.01',
2483             'base'                  => '2.04',
2484             'if'                    => '0.0401',
2485             'open'                  => '1.02',
2486             'overload'              => '1.02',
2487             'threads'               => '1.02',
2488             'utf8'                  => '1.02',
2489             'version'               => '0.36',
2490         },
2491         removed => {
2492         }
2493     },
2494     5.009002 => {
2495         delta_from => 5.008007,
2496         changed => {
2497             'B'                     => '1.07',
2498             'B::Concise'            => '0.64',
2499             'B::Deparse'            => '0.69',
2500             'B::Disassembler'       => '1.03',
2501             'B::Terse'              => '1.02',
2502             'CGI'                   => '3.07',
2503             'Config::Extensions'    => '0.01',
2504             'Devel::DProf'          => '20030813.00',
2505             'DynaLoader'            => '1.07',
2506             'Encode'                => '2.09',
2507             'Encode::Alias'         => '2.02',
2508             'English'               => '1.03',
2509             'Exporter'              => '5.59',
2510             'Exporter::Heavy'       => '5.59',
2511             'ExtUtils::Command'     => '1.07',
2512             'ExtUtils::Command::MM' => '0.03_01',
2513             'ExtUtils::Embed'       => '1.26',
2514             'ExtUtils::Liblist::Kid'=> '1.3',
2515             'ExtUtils::MM_Any'      => '0.10',
2516             'ExtUtils::MM_Cygwin'   => '1.07',
2517             'ExtUtils::MM_MacOS'    => '1.08',
2518             'ExtUtils::MM_NW5'      => '2.07',
2519             'ExtUtils::MM_Unix'     => '1.46_01',
2520             'ExtUtils::MM_VMS'      => '5.71',
2521             'ExtUtils::MM_Win32'    => '1.10',
2522             'ExtUtils::MM_Win95'    => '0.03',
2523             'ExtUtils::MakeMaker'   => '6.25',
2524             'ExtUtils::Manifest'    => '1.44',
2525             'Fatal'                 => '1.04',
2526             'File::Path'            => '1.06',
2527             'FileCache'             => '1.04_01',
2528             'Getopt::Long'          => '2.3401',
2529             'IO::File'              => '1.10',
2530             'IO::Socket::INET'      => '1.27',
2531             'Math::BigFloat'        => '1.49',
2532             'Math::BigInt'          => '1.75',
2533             'Math::BigInt::Calc'    => '0.45',
2534             'Math::BigRat'          => '0.14',
2535             'Memoize'               => '1.01_01',
2536             'Module::CoreList'      => '1.99',
2537             'NEXT'                  => '0.60_01',
2538             'Opcode'                => '1.06',
2539             'Pod::Html'             => '1.0502',
2540             'Scalar::Util'          => '1.14_1',
2541             'Storable'              => '2.14',
2542             'Symbol'                => '1.05',
2543             'Test::Harness'         => '2.46',
2544             'Test::Harness::Straps' => '0.20_01',
2545             'Text::Balanced'        => '1.95_01',
2546             'Text::Wrap'            => '2001.09292',
2547             'UNIVERSAL'             => '1.02',
2548             'Unicode'               => '4.0.1',
2549             'Unicode::Normalize'    => '0.30',
2550             'Unicode::UCD'          => '0.22',
2551             'Win32'                 => '0.23',
2552             'XS::APItest'           => '0.05',
2553             'XSLoader'              => '0.03',
2554             'assertions'            => '0.01',
2555             'assertions::activate'  => '0.01',
2556             'base'                  => '2.06',
2557             'bigint'                => '0.06',
2558             'bignum'                => '0.16',
2559             'bigrat'                => '0.07',
2560             'bytes'                 => '1.01',
2561             'encoding::warnings'    => '0.05',
2562             'if'                    => '0.0401',
2563             're'                    => '0.05',
2564             'threads::shared'       => '0.92',
2565             'utf8'                  => '1.04',
2566             'version'               => '0.42',
2567             'warnings'              => '1.04',
2568         },
2569         removed => {
2570             'Test::Harness::Point'  => 1,
2571         }
2572     },
2573     5.009003 => {
2574         delta_from => 5.008008,
2575         changed => {
2576             'Archive::Tar'          => '1.26_01',
2577             'Archive::Tar::Constant'=> '0.02',
2578             'Archive::Tar::File'    => '0.02',
2579             'AutoSplit'             => '1.04_01',
2580             'B'                     => '1.10',
2581             'B::Bblock'             => '1.02',
2582             'B::Bytecode'           => '1.01',
2583             'B::C'                  => '1.04',
2584             'B::CC'                 => '1.00',
2585             'B::Concise'            => '0.67',
2586             'B::Debug'              => '1.02',
2587             'B::Deparse'            => '0.73',
2588             'B::Lint'               => '1.04',
2589             'B::Terse'              => '1.03',
2590             'CGI'                   => '3.15_01',
2591             'CPAN'                  => '1.83_58',
2592             'CPAN::Debug'           => '4.44',
2593             'CPAN::FirstTime'       => '4.50',
2594             'CPAN::HandleConfig'    => '4.31',
2595             'CPAN::Nox'             => '2.31',
2596             'CPAN::Tarzip'          => '3.36',
2597             'CPAN::Version'         => '2.55',
2598             'Carp'                  => '1.05',
2599             'Carp::Heavy'           => '1.05',
2600             'Compress::Zlib'        => '2.000_07',
2601             'Compress::Zlib::Common'=> '2.000_07',
2602             'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2603             'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2604             'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2605             'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2606             'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2607             'Compress::Zlib::FileConstants'=> '2.000_07',
2608             'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2609             'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2610             'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2611             'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2612             'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2613             'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2614             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2615             'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2616             'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2617             'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2618             'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2619             'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2620             'Compress::Zlib::ParseParameters'=> '2.000_07',
2621             'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2622             'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2623             'Config::Extensions'    => '0.01',
2624             'Cwd'                   => '3.15',
2625             'Devel::PPPort'         => '3.08',
2626             'Digest::SHA'           => '5.32',
2627             'DirHandle'             => '1.01',
2628             'DynaLoader'            => '1.07',
2629             'Encode'                => '2.14',
2630             'Encode::CN::HZ'        => '2.02',
2631             'Encode::MIME::Header'  => '2.02',
2632             'English'               => '1.04',
2633             'Exporter'              => '5.59',
2634             'Exporter::Heavy'       => '5.59',
2635             'ExtUtils::CBuilder'    => '0.15',
2636             'ExtUtils::CBuilder::Base'=> '0.12',
2637             'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2638             'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2639             'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2640             'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2641             'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2642             'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2643             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2644             'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2645             'ExtUtils::Command::MM' => '0.05_01',
2646             'ExtUtils::Constant'    => '0.2',
2647             'ExtUtils::Constant::Base'=> '0.02',
2648             'ExtUtils::Constant::ProxySubs'=> '0.01',
2649             'ExtUtils::Constant::XS'=> '0.02',
2650             'ExtUtils::MM_Any'      => '0.13_01',
2651             'ExtUtils::MM_Unix'     => '1.50_01',
2652             'ExtUtils::MakeMaker'   => '6.30_01',
2653             'ExtUtils::ParseXS'     => '2.15_02',
2654             'Fatal'                 => '1.04',
2655             'File::Compare'         => '1.1005',
2656             'File::Spec'            => '3.15',
2657             'File::Temp'            => '0.16_01',
2658             'IO::File'              => '1.13_01',
2659             'IO::Handle'            => '1.26',
2660             'IO::Socket'            => '1.29_01',
2661             'IO::Socket::INET'      => '1.29_02',
2662             'IO::Socket::UNIX'      => '1.22_01',
2663             'IO::Zlib'              => '1.04_02',
2664             'Locale::Maketext'      => '1.10_01',
2665             'Math::BigInt::FastCalc'=> '0.10',
2666             'Memoize'               => '1.01_01',
2667             'Module::CoreList'      => '2.02',
2668             'Moped::Msg'            => '0.01',
2669             'NEXT'                  => '0.60_01',
2670             'Net::Cmd'              => '2.26_01',
2671             'Net::Domain'           => '2.19_01',
2672             'Net::Ping'             => '2.31_04',
2673             'Opcode'                => '1.08',
2674             'POSIX'                 => '1.10',
2675             'Pod::Escapes'          => '1.04',
2676             'Pod::Man'              => '2.04',
2677             'Pod::Perldoc'          => '3.14_01',
2678             'Pod::Simple'           => '3.04',
2679             'Pod::Simple::BlackBox' => undef,
2680             'Pod::Simple::Checker'  => '2.02',
2681             'Pod::Simple::Debug'    => undef,
2682             'Pod::Simple::DumpAsText'=> '2.02',
2683             'Pod::Simple::DumpAsXML'=> '2.02',
2684             'Pod::Simple::HTML'     => '3.03',
2685             'Pod::Simple::HTMLBatch'=> '3.02',
2686             'Pod::Simple::HTMLLegacy'=> '5.01',
2687             'Pod::Simple::LinkSection'=> undef,
2688             'Pod::Simple::Methody'  => '2.02',
2689             'Pod::Simple::Progress' => '1.01',
2690             'Pod::Simple::PullParser'=> '2.02',
2691             'Pod::Simple::PullParserEndToken'=> undef,
2692             'Pod::Simple::PullParserStartToken'=> undef,
2693             'Pod::Simple::PullParserTextToken'=> undef,
2694             'Pod::Simple::PullParserToken'=> '2.02',
2695             'Pod::Simple::RTF'      => '2.02',
2696             'Pod::Simple::Search'   => '3.04',
2697             'Pod::Simple::SimpleTree'=> '2.02',
2698             'Pod::Simple::Text'     => '2.02',
2699             'Pod::Simple::TextContent'=> '2.02',
2700             'Pod::Simple::TiedOutFH'=> undef,
2701             'Pod::Simple::Transcode'=> undef,
2702             'Pod::Simple::TranscodeDumb'=> '2.02',
2703             'Pod::Simple::TranscodeSmart'=> undef,
2704             'Pod::Simple::XMLOutStream'=> '2.02',
2705             'Pod::Text'             => '3.01',
2706             'Pod::Text::Color'      => '2.01',
2707             'Pod::Text::Overstrike' => '2',
2708             'Pod::Text::Termcap'    => '2.01',
2709             'Pod::Usage'            => '1.33_01',
2710             'SelfLoader'            => '1.0905',
2711             'Storable'              => '2.15_02',
2712             'Test::Builder::Module' => '0.03',
2713             'Text::Balanced'        => '1.95_01',
2714             'Tie::File'             => '0.97_01',
2715             'UNIVERSAL'             => '1.03',
2716             'XS::APItest'           => '0.09',
2717             'assertions'            => '0.02',
2718             'assertions::activate'  => '0.02',
2719             'assertions::compat'    => undef,
2720             'constant'              => '1.07',
2721             'encoding::warnings'    => '0.05',
2722             'feature'               => '1.00',
2723             're'                    => '0.06',
2724             'sort'                  => '2.00',
2725             'version'               => '0.53',
2726         },
2727         removed => {
2728         }
2729     },
2730     5.009004 => {
2731         delta_from => 5.009003,
2732         changed => {
2733             'Archive::Tar'          => '1.30_01',
2734             'AutoLoader'            => '5.61',
2735             'B'                     => '1.11',
2736             'B::Bytecode'           => '1.02',
2737             'B::C'                  => '1.05',
2738             'B::Concise'            => '0.69',
2739             'B::Deparse'            => '0.76',
2740             'B::Lint'               => '1.08',
2741             'Benchmark'             => '1.08',
2742             'CGI'                   => '3.20',
2743             'CGI::Cookie'           => '1.27',
2744             'CGI::Fast'             => '1.07',
2745             'CPAN'                  => '1.87_55',
2746             'CPAN::Debug'           => '5.400561',
2747             'CPAN::FirstTime'       => '5.400742',
2748             'CPAN::HandleConfig'    => '5.400740',
2749             'CPAN::Nox'             => '5.400561',
2750             'CPAN::Tarzip'          => '5.400714',
2751             'CPAN::Version'         => '5.400561',
2752             'Compress::Raw::Zlib'   => '2.000_13',
2753             'Compress::Zlib'        => '2.000_13',
2754             'Cwd'                   => '3.19',
2755             'Devel::PPPort'         => '3.10',
2756             'Digest'                => '1.15',
2757             'Digest::SHA'           => '5.43',
2758             'Encode'                => '2.18_01',
2759             'Encode::Alias'         => '2.06',
2760             'Encode::Byte'          => '2.02',
2761             'Encode::CJKConstants'  => '2.02',
2762             'Encode::CN'            => '2.02',
2763             'Encode::CN::HZ'        => '2.04',
2764             'Encode::Config'        => '2.03',
2765             'Encode::EBCDIC'        => '2.02',
2766             'Encode::Encoder'       => '2.01',
2767             'Encode::Encoding'      => '2.04',
2768             'Encode::Guess'         => '2.02',
2769             'Encode::JP'            => '2.03',
2770             'Encode::JP::H2Z'       => '2.02',
2771             'Encode::JP::JIS7'      => '2.02',
2772             'Encode::KR'            => '2.02',
2773             'Encode::KR::2022_KR'   => '2.02',
2774             'Encode::MIME::Header'  => '2.04',
2775             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2776             'Encode::Symbol'        => '2.02',
2777             'Encode::TW'            => '2.02',
2778             'Encode::Unicode'       => '2.03',
2779             'Encode::Unicode::UTF7' => '2.04',
2780             'ExtUtils::CBuilder'    => '0.18',
2781             'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2782             'ExtUtils::Constant::Base'=> '0.03',
2783             'ExtUtils::Constant::ProxySubs'=> '0.03',
2784             'ExtUtils::Install'     => '1.41',
2785             'ExtUtils::Installed'   => '1.41',
2786             'ExtUtils::MM_Any'      => '0.13_02',
2787             'ExtUtils::MM_NW5'      => '2.08_01',
2788             'ExtUtils::MM_Unix'     => '1.5003',
2789             'ExtUtils::MM_VMS'      => '5.73_03',
2790             'ExtUtils::MM_Win32'    => '1.12_02',
2791             'ExtUtils::MM_Win95'    => '0.04_01',
2792             'ExtUtils::MakeMaker'   => '6.30_02',
2793             'ExtUtils::Manifest'    => '1.46_01',
2794             'ExtUtils::Mkbootstrap' => '1.15_01',
2795             'ExtUtils::Mksymlists'  => '1.19_01',
2796             'ExtUtils::Packlist'    => '1.41',
2797             'File::Basename'        => '2.75',
2798             'File::Find'            => '1.11',
2799             'File::GlobMapper'      => '0.000_02',
2800             'File::Spec'            => '3.19',
2801             'FileCache'             => '1.07',
2802             'Getopt::Long'          => '2.3501',
2803             'Hash::Util'            => '0.07',
2804             'Hash::Util::FieldHash' => '0.01',
2805             'IO'                    => '1.23_01',
2806             'IO::Compress::Adapter::Deflate'=> '2.000_13',
2807             'IO::Compress::Adapter::Identity'=> '2.000_13',
2808             'IO::Compress::Base'    => '2.000_13',
2809             'IO::Compress::Base::Common'=> '2.000_13',
2810             'IO::Compress::Deflate' => '2.000_13',
2811             'IO::Compress::Gzip'    => '2.000_13',
2812             'IO::Compress::Gzip::Constants'=> '2.000_13',
2813             'IO::Compress::RawDeflate'=> '2.000_13',
2814             'IO::Compress::Zip'     => '2.000_13',
2815             'IO::Compress::Zip::Constants'=> '2.000_13',
2816             'IO::Compress::Zlib::Constants'=> '2.000_13',
2817             'IO::Compress::Zlib::Extra'=> '2.000_13',
2818             'IO::Dir'               => '1.06',
2819             'IO::File'              => '1.14',
2820             'IO::Handle'            => '1.27',
2821             'IO::Socket'            => '1.30_01',
2822             'IO::Socket::INET'      => '1.31',
2823             'IO::Socket::UNIX'      => '1.23',
2824             'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2825             'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2826             'IO::Uncompress::AnyInflate'=> '2.000_13',
2827             'IO::Uncompress::AnyUncompress'=> '2.000_13',
2828             'IO::Uncompress::Base'  => '2.000_13',
2829             'IO::Uncompress::Gunzip'=> '2.000_13',
2830             'IO::Uncompress::Inflate'=> '2.000_13',
2831             'IO::Uncompress::RawInflate'=> '2.000_13',
2832             'IO::Uncompress::Unzip' => '2.000_13',
2833             'MIME::Base64'          => '3.07_01',
2834             'Math::Complex'         => '1.36',
2835             'Math::Trig'            => '1.04',
2836             'Module::Build'         => '0.2805',
2837             'Module::Build::Base'   => undef,
2838             'Module::Build::Compat' => '0.03',
2839             'Module::Build::ConfigData'=> undef,
2840             'Module::Build::Cookbook'=> undef,
2841             'Module::Build::ModuleInfo'=> undef,
2842             'Module::Build::Notes'  => undef,
2843             'Module::Build::PPMMaker'=> undef,
2844             'Module::Build::Platform::Amiga'=> undef,
2845             'Module::Build::Platform::Default'=> undef,
2846             'Module::Build::Platform::EBCDIC'=> undef,
2847             'Module::Build::Platform::MPEiX'=> undef,
2848             'Module::Build::Platform::MacOS'=> undef,
2849             'Module::Build::Platform::RiscOS'=> undef,
2850             'Module::Build::Platform::Unix'=> undef,
2851             'Module::Build::Platform::VMS'=> undef,
2852             'Module::Build::Platform::VOS'=> undef,
2853             'Module::Build::Platform::Windows'=> undef,
2854             'Module::Build::Platform::aix'=> undef,
2855             'Module::Build::Platform::cygwin'=> undef,
2856             'Module::Build::Platform::darwin'=> undef,
2857             'Module::Build::Platform::os2'=> undef,
2858             'Module::Build::PodParser'=> undef,
2859             'Module::Build::Version'=> '0',
2860             'Module::Build::YAML'   => '0.50',
2861             'Module::CoreList'      => '2.08',
2862             'Module::Load'          => '0.10',
2863             'Module::Loaded'        => '0.01',
2864             'Package::Constants'    => '0.01',
2865             'Pod::Html'             => '1.07',
2866             'Pod::Man'              => '2.09',
2867             'Pod::Text'             => '3.07',
2868             'Pod::Text::Color'      => '2.03',
2869             'Pod::Text::Termcap'    => '2.03',
2870             'SDBM_File'             => '1.06',
2871             'Shell'                 => '0.7',
2872             'Sys::Syslog'           => '0.17',
2873             'Term::ANSIColor'       => '1.11',
2874             'Test::Builder'         => '0.33',
2875             'Test::Builder::Tester' => '1.04',
2876             'Test::Harness'         => '2.62',
2877             'Test::Harness::Util'   => '0.01',
2878             'Test::More'            => '0.64',
2879             'Test::Simple'          => '0.64',
2880             'Text::Balanced'        => '1.98_01',
2881             'Text::ParseWords'      => '3.25',
2882             'Text::Tabs'            => '2007.071101',
2883             'Text::Wrap'            => '2006.0711',
2884             'Tie::RefHash'          => '1.34_01',
2885             'Time::HiRes'           => '1.87',
2886             'Time::Local'           => '1.13',
2887             'Time::gmtime'          => '1.03',
2888             'UNIVERSAL'             => '1.04',
2889             'Unicode::Normalize'    => '1.01',
2890             'Win32API::File'        => '0.1001',
2891             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2892             'assertions'            => '0.03',
2893             'assertions::compat'    => '0.02',
2894             'autouse'               => '1.06',
2895             'diagnostics'           => '1.16',
2896             'encoding'              => '2.04',
2897             'encoding::warnings'    => '0.10',
2898             'feature'               => '1.01',
2899             're'                    => '0.0601',
2900             'threads'               => '1.38',
2901             'threads::shared'       => '0.94_01',
2902             'version'               => '0.67',
2903         },
2904         removed => {
2905             'Compress::Zlib::Common'=> 1,
2906             'Compress::Zlib::Compress::Gzip::Constants'=> 1,
2907             'Compress::Zlib::Compress::Zip::Constants'=> 1,
2908             'Compress::Zlib::CompressPlugin::Deflate'=> 1,
2909             'Compress::Zlib::CompressPlugin::Identity'=> 1,
2910             'Compress::Zlib::File::GlobMapper'=> 1,
2911             'Compress::Zlib::FileConstants'=> 1,
2912             'Compress::Zlib::IO::Compress::Base'=> 1,
2913             'Compress::Zlib::IO::Compress::Deflate'=> 1,
2914             'Compress::Zlib::IO::Compress::Gzip'=> 1,
2915             'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
2916             'Compress::Zlib::IO::Compress::Zip'=> 1,
2917             'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
2918             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
2919             'Compress::Zlib::IO::Uncompress::Base'=> 1,
2920             'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
2921             'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
2922             'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
2923             'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
2924             'Compress::Zlib::ParseParameters'=> 1,
2925             'Compress::Zlib::UncompressPlugin::Identity'=> 1,
2926             'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
2927         }
2928     },
2929     5.009005 => {
2930         delta_from => 5.009004,
2931         changed => {
2932             'Archive::Extract'      => '0.22_01',
2933             'Archive::Tar'          => '1.32',
2934             'Attribute::Handlers'   => '0.78_06',
2935             'AutoLoader'            => '5.63',
2936             'AutoSplit'             => '1.05',
2937             'B'                     => '1.16',
2938             'B::Concise'            => '0.72',
2939             'B::Debug'              => '1.05',
2940             'B::Deparse'            => '0.82',
2941             'B::Lint'               => '1.09',
2942             'B::Terse'              => '1.05',
2943             'Benchmark'             => '1.1',
2944             'CGI'                   => '3.29',
2945             'CGI::Cookie'           => '1.28',
2946             'CGI::Util'             => '1.5_01',
2947             'CPAN'                  => '1.9102',
2948             'CPAN::Debug'           => '5.400955',
2949             'CPAN::FirstTime'       => '5.401669',
2950             'CPAN::HandleConfig'    => '5.401744',
2951             'CPAN::Kwalify'         => '5.401418',
2952             'CPAN::Nox'             => '5.400844',
2953             'CPAN::Queue'           => '5.401704',
2954             'CPAN::Tarzip'          => '5.401717',
2955             'CPAN::Version'         => '5.401387',
2956             'CPANPLUS'              => '0.81_01',
2957             'CPANPLUS::Backend'     => undef,
2958             'CPANPLUS::Backend::RV' => undef,
2959             'CPANPLUS::Config'      => undef,
2960             'CPANPLUS::Configure'   => undef,
2961             'CPANPLUS::Configure::Setup'=> undef,
2962             'CPANPLUS::Dist'        => undef,
2963             'CPANPLUS::Dist::Base'  => '0.01',
2964             'CPANPLUS::Dist::Build' => '0.06_01',
2965             'CPANPLUS::Dist::Build::Constants'=> '0.01',
2966             'CPANPLUS::Dist::MM'    => undef,
2967             'CPANPLUS::Dist::Sample'=> undef,
2968             'CPANPLUS::Error'       => undef,
2969             'CPANPLUS::Internals'   => '0.81_01',
2970             'CPANPLUS::Internals::Constants'=> '0.01',
2971             'CPANPLUS::Internals::Constants::Report'=> '0.01',
2972             'CPANPLUS::Internals::Extract'=> undef,
2973             'CPANPLUS::Internals::Fetch'=> undef,
2974             'CPANPLUS::Internals::Report'=> undef,
2975             'CPANPLUS::Internals::Search'=> undef,
2976             'CPANPLUS::Internals::Source'=> undef,
2977             'CPANPLUS::Internals::Utils'=> undef,
2978             'CPANPLUS::Internals::Utils::Autoflush'=> undef,
2979             'CPANPLUS::Module'      => undef,
2980             'CPANPLUS::Module::Author'=> undef,
2981             'CPANPLUS::Module::Author::Fake'=> undef,
2982             'CPANPLUS::Module::Checksums'=> undef,
2983             'CPANPLUS::Module::Fake'=> undef,
2984             'CPANPLUS::Module::Signature'=> undef,
2985             'CPANPLUS::Selfupdate'  => undef,
2986             'CPANPLUS::Shell'       => undef,
2987             'CPANPLUS::Shell::Classic'=> '0.0562',
2988             'CPANPLUS::Shell::Default'=> '0.81_01',
2989             'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
2990             'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
2991             'CPANPLUS::inc'         => undef,
2992             'Carp'                  => '1.07',
2993             'Carp::Heavy'           => '1.07',
2994             'Compress::Raw::Zlib'   => '2.005',
2995             'Compress::Zlib'        => '2.005',
2996             'Cwd'                   => '3.25',
2997             'DBM_Filter'            => '0.02',
2998             'DB_File'               => '1.815',
2999             'Data::Dumper'          => '2.121_13',
3000             'Devel::InnerPackage'   => '0.3',
3001             'Devel::PPPort'         => '3.11_01',
3002             'Digest::MD5'           => '2.36_01',
3003             'Digest::SHA'           => '5.44',
3004             'DynaLoader'            => '1.08',
3005             'Encode'                => '2.23',
3006             'Encode::Alias'         => '2.07',
3007             'Encode::Byte'          => '2.03',
3008             'Encode::Config'        => '2.04',
3009             'Encode::Encoding'      => '2.05',
3010             'Encode::GSM0338'       => '2.00',
3011             'Encode::JP::JIS7'      => '2.03',
3012             'Encode::MIME::Header'  => '2.05',
3013             'Encode::MIME::Name'    => '1.01',
3014             'Encode::Unicode'       => '2.05',
3015             'Errno'                 => '1.10',
3016             'Exporter'              => '5.60',
3017             'Exporter::Heavy'       => '5.60',
3018             'ExtUtils::CBuilder'    => '0.19',
3019             'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
3020             'ExtUtils::Command'     => '1.13',
3021             'ExtUtils::Command::MM' => '0.07',
3022             'ExtUtils::Constant::Base'=> '0.04',
3023             'ExtUtils::Install'     => '1.41_01',
3024             'ExtUtils::Liblist'     => '1.03',
3025             'ExtUtils::Liblist::Kid'=> '1.33',
3026             'ExtUtils::MM'          => '0.07',
3027             'ExtUtils::MM_AIX'      => '0.05',
3028             'ExtUtils::MM_Any'      => '0.15',
3029             'ExtUtils::MM_BeOS'     => '1.07',
3030             'ExtUtils::MM_Cygwin'   => '1.1',
3031             'ExtUtils::MM_DOS'      => '0.04',
3032             'ExtUtils::MM_MacOS'    => '1.1',
3033             'ExtUtils::MM_NW5'      => '2.1',
3034             'ExtUtils::MM_OS2'      => '1.07',
3035             'ExtUtils::MM_QNX'      => '0.04',
3036             'ExtUtils::MM_UWIN'     => '0.04',
3037             'ExtUtils::MM_Unix'     => '1.54_01',
3038             'ExtUtils::MM_VMS'      => '5.76',
3039             'ExtUtils::MM_VOS'      => '0.04',
3040             'ExtUtils::MM_Win32'    => '1.15',
3041             'ExtUtils::MM_Win95'    => '0.06',
3042             'ExtUtils::MY'          => '0.03',
3043             'ExtUtils::MakeMaker'   => '6.36',
3044             'ExtUtils::MakeMaker::Config'=> '0.04',
3045             'ExtUtils::MakeMaker::bytes'=> '0.03',
3046             'ExtUtils::MakeMaker::vmsish'=> '0.03',
3047             'ExtUtils::Manifest'    => '1.51_01',
3048             'ExtUtils::Mkbootstrap' => '1.17',
3049             'ExtUtils::Mksymlists'  => '1.21',
3050             'ExtUtils::ParseXS'     => '2.18',
3051             'ExtUtils::XSSymSet'    => '1.1',
3052             'ExtUtils::testlib'     => '1.17',
3053             'Fatal'                 => '1.05',
3054             'Fcntl'                 => '1.06',
3055             'File::Basename'        => '2.76',
3056             'File::Copy'            => '2.10',
3057             'File::Fetch'           => '0.10',
3058             'File::Glob'            => '1.06',
3059             'File::Path'            => '2.01',
3060             'File::Spec'            => '3.25',
3061             'File::Spec::Cygwin'    => '1.1_01',
3062             'File::Spec::VMS'       => '1.4_01',
3063             'File::Temp'            => '0.18',
3064             'Filter::Util::Call'    => '1.0602',
3065             'FindBin'               => '1.49',
3066             'Getopt::Long'          => '2.36',
3067             'Hash::Util::FieldHash' => '1.01',
3068             'IO::Compress::Adapter::Deflate'=> '2.005',
3069             'IO::Compress::Adapter::Identity'=> '2.005',
3070             'IO::Compress::Base'    => '2.005',
3071             'IO::Compress::Base::Common'=> '2.005',
3072             'IO::Compress::Deflate' => '2.005',
3073             'IO::Compress::Gzip'    => '2.005',
3074             'IO::Compress::Gzip::Constants'=> '2.005',
3075             'IO::Compress::RawDeflate'=> '2.005',
3076             'IO::Compress::Zip'     => '2.005',
3077             'IO::Compress::Zip::Constants'=> '2.005',
3078             'IO::Compress::Zlib::Constants'=> '2.005',
3079             'IO::Compress::Zlib::Extra'=> '2.005',
3080             'IO::Uncompress::Adapter::Identity'=> '2.005',
3081             'IO::Uncompress::Adapter::Inflate'=> '2.005',
3082             'IO::Uncompress::AnyInflate'=> '2.005',
3083             'IO::Uncompress::AnyUncompress'=> '2.005',
3084             'IO::Uncompress::Base'  => '2.005',
3085             'IO::Uncompress::Gunzip'=> '2.005',
3086             'IO::Uncompress::Inflate'=> '2.005',
3087             'IO::Uncompress::RawInflate'=> '2.005',
3088             'IO::Uncompress::Unzip' => '2.005',
3089             'IO::Zlib'              => '1.05_01',
3090             'IPC::Cmd'              => '0.36_01',
3091             'List::Util'            => '1.19',
3092             'Locale::Maketext::Simple'=> '0.18',
3093             'Log::Message'          => '0.01',
3094             'Log::Message::Config'  => '0.01',
3095             'Log::Message::Handlers'=> undef,
3096             'Log::Message::Item'    => undef,
3097             'Log::Message::Simple'  => '0.0201',
3098             'Math::BigFloat'        => '1.58',
3099             'Math::BigInt'          => '1.87',
3100             'Math::BigInt::Calc'    => '0.51',
3101             'Math::BigInt::FastCalc'=> '0.15_01',
3102             'Math::BigRat'          => '0.19',
3103             'Math::Complex'         => '1.37',
3104             'Memoize'               => '1.01_02',
3105             'Module::Build'         => '0.2808',
3106             'Module::Build::Config' => undef,
3107             'Module::Build::Version'=> '0.7203',
3108             'Module::CoreList'      => '2.12',
3109             'Module::Load::Conditional'=> '0.16',
3110             'Module::Pluggable'     => '3.6',
3111             'Module::Pluggable::Object'=> '3.6',
3112             'NDBM_File'             => '1.07',
3113             'Net::Cmd'              => '2.28',
3114             'Net::Config'           => '1.11',
3115             'Net::Domain'           => '2.20',
3116             'Net::FTP'              => '2.77',
3117             'Net::FTP::A'           => '1.18',
3118             'Net::NNTP'             => '2.24',
3119             'Net::POP3'             => '2.29',
3120             'Net::SMTP'             => '2.31',
3121             'ODBM_File'             => '1.07',
3122             'OS2::DLL'              => '1.03',
3123             'Object::Accessor'      => '0.32',
3124             'Opcode'                => '1.09',
3125             'POSIX'                 => '1.13',
3126             'Params::Check'         => '0.26',
3127             'PerlIO::encoding'      => '0.10',
3128             'PerlIO::scalar'        => '0.05',
3129             'PerlIO::via'           => '0.04',
3130             'Pod::Html'             => '1.08',
3131             'Pod::Man'              => '2.12',
3132             'Pod::ParseUtils'       => '1.35',
3133             'Pod::Parser'           => '1.35',
3134             'Pod::Select'           => '1.35',
3135             'Pod::Simple'           => '3.05',
3136             'Pod::Text'             => '3.08',
3137             'Pod::Usage'            => '1.35',
3138             'Scalar::Util'          => '1.19',
3139             'SelfLoader'            => '1.11',
3140             'Shell'                 => '0.72_01',
3141             'Socket'                => '1.79',
3142             'Storable'              => '2.16',
3143             'Switch'                => '2.13',
3144             'Sys::Syslog'           => '0.18_01',
3145             'Term::ANSIColor'       => '1.12',
3146             'Term::UI'              => '0.14_01',
3147             'Term::UI::History'     => undef,
3148             'Test::Builder'         => '0.70',
3149             'Test::Builder::Module' => '0.68',
3150             'Test::Builder::Tester' => '1.07',
3151             'Test::Harness'         => '2.64',
3152             'Test::Harness::Results'=> '0.01',
3153             'Test::More'            => '0.70',
3154             'Test::Simple'          => '0.70',
3155             'Text::Balanced'        => '2.0.0',
3156             'Text::Soundex'         => '3.02',
3157             'Text::Tabs'            => '2007.1117',
3158             'Text::Wrap'            => '2006.1117',
3159             'Thread'                => '3.02',
3160             'Tie::File'             => '0.97_02',
3161             'Tie::Hash::NamedCapture'=> '0.06',
3162             'Tie::Memoize'          => '1.1',
3163             'Tie::RefHash'          => '1.37',
3164             'Time::HiRes'           => '1.9707',
3165             'Time::Local'           => '1.17',
3166             'Time::Piece'           => '1.11_02',
3167             'Time::Seconds'         => undef,
3168             'Unicode'               => '5.0.0',
3169             'Unicode::Normalize'    => '1.02',
3170             'Unicode::UCD'          => '0.25',
3171             'VMS::DCLsym'           => '1.03',
3172             'Win32'                 => '0.30',
3173             'Win32API::File'        => '0.1001_01',
3174             'Win32CORE'             => '0.02',
3175             'XS::APItest'           => '0.12',
3176             'XSLoader'              => '0.08',
3177             'attributes'            => '0.08',
3178             'base'                  => '2.12',
3179             'bigint'                => '0.22',
3180             'bignum'                => '0.22',
3181             'bigrat'                => '0.22',
3182             'bytes'                 => '1.03',
3183             'charnames'             => '1.06',
3184             'constant'              => '1.10',
3185             'diagnostics'           => '1.17',
3186             'encoding'              => '2.06',
3187             'encoding::warnings'    => '0.11',
3188             'feature'               => '1.10',
3189             'fields'                => '2.12',
3190             'less'                  => '0.02',
3191             'mro'                   => '1.00',
3192             'overload'              => '1.06',
3193             're'                    => '0.08',
3194             'sigtrap'               => '1.04',
3195             'sort'                  => '2.01',
3196             'strict'                => '1.04',
3197             'threads'               => '1.63',
3198             'threads::shared'       => '1.12',
3199             'utf8'                  => '1.07',
3200             'version'               => '0.7203',
3201             'warnings'              => '1.06',
3202         },
3203         removed => {
3204             'B::Asmdata'            => 1,
3205             'B::Assembler'          => 1,
3206             'B::Bblock'             => 1,
3207             'B::Bytecode'           => 1,
3208             'B::C'                  => 1,
3209             'B::CC'                 => 1,
3210             'B::Disassembler'       => 1,
3211             'B::Stackobj'           => 1,
3212             'B::Stash'              => 1,
3213             'ByteLoader'            => 1,
3214             'Thread::Signal'        => 1,
3215             'Thread::Specific'      => 1,
3216             'assertions'            => 1,
3217             'assertions::activate'  => 1,
3218             'assertions::compat'    => 1,
3219         }
3220     },
3221     5.01 => {
3222         delta_from => 5.009005,
3223         changed => {
3224             'Archive::Extract'      => '0.24',
3225             'Archive::Tar'          => '1.38',
3226             'Attribute::Handlers'   => '0.79',
3227             'B'                     => '1.17',
3228             'B::Concise'            => '0.74',
3229             'B::Deparse'            => '0.83',
3230             'CPAN'                  => '1.9205',
3231             'CPAN::API::HOWTO'      => undef,
3232             'CPAN::Debug'           => '5.402212',
3233             'CPAN::DeferedCode'     => '5.50',
3234             'CPAN::FirstTime'       => '5.402229',
3235             'CPAN::HandleConfig'    => '5.402212',
3236             'CPAN::Nox'             => '5.402411',
3237             'CPAN::Queue'           => '5.402212',
3238             'CPAN::Tarzip'          => '5.402213',
3239             'CPAN::Version'         => '5.5',
3240             'CPANPLUS'              => '0.84',
3241             'CPANPLUS::Dist::Build' => '0.06_02',
3242             'CPANPLUS::Internals'   => '0.84',
3243             'CPANPLUS::Shell::Default'=> '0.84',
3244             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
3245             'Carp'                  => '1.08',
3246             'Carp::Heavy'           => '1.08',
3247             'Compress::Raw::Zlib'   => '2.008',
3248             'Compress::Zlib'        => '2.008',
3249             'Cwd'                   => '3.2501',
3250             'DB_File'               => '1.816_1',
3251             'Data::Dumper'          => '2.121_14',
3252             'Devel::PPPort'         => '3.13',
3253             'Digest::SHA'           => '5.45',
3254             'Exporter'              => '5.62',
3255             'Exporter::Heavy'       => '5.62',
3256             'ExtUtils::CBuilder'    => '0.21',
3257             'ExtUtils::CBuilder::Base'=> '0.21',
3258             'ExtUtils::CBuilder::Platform::Unix'=> '0.21',
3259             'ExtUtils::CBuilder::Platform::VMS'=> '0.22',
3260             'ExtUtils::CBuilder::Platform::Windows'=> '0.21',
3261             'ExtUtils::CBuilder::Platform::aix'=> '0.21',
3262             'ExtUtils::CBuilder::Platform::cygwin'=> '0.21',
3263             'ExtUtils::CBuilder::Platform::darwin'=> '0.21',
3264             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21',
3265             'ExtUtils::CBuilder::Platform::os2'=> '0.21',
3266             'ExtUtils::Command::MM' => '6.42',
3267             'ExtUtils::Constant::ProxySubs'=> '0.05',
3268             'ExtUtils::Embed'       => '1.27',
3269             'ExtUtils::Install'     => '1.44',
3270             'ExtUtils::Installed'   => '1.43',
3271             'ExtUtils::Liblist'     => '6.42',
3272             'ExtUtils::Liblist::Kid'=> '6.42',
3273             'ExtUtils::MM'          => '6.42',
3274             'ExtUtils::MM_AIX'      => '6.42',
3275             'ExtUtils::MM_Any'      => '6.42',
3276             'ExtUtils::MM_BeOS'     => '6.42',
3277             'ExtUtils::MM_Cygwin'   => '6.42',
3278             'ExtUtils::MM_DOS'      => '6.42',
3279             'ExtUtils::MM_MacOS'    => '6.42',
3280             'ExtUtils::MM_NW5'      => '6.42',
3281             'ExtUtils::MM_OS2'      => '6.42',
3282             'ExtUtils::MM_QNX'      => '6.42',
3283             'ExtUtils::MM_UWIN'     => '6.42',
3284             'ExtUtils::MM_Unix'     => '6.42',
3285             'ExtUtils::MM_VMS'      => '6.42',
3286             'ExtUtils::MM_VOS'      => '6.42',
3287             'ExtUtils::MM_Win32'    => '6.42',
3288             'ExtUtils::MM_Win95'    => '6.42',
3289             'ExtUtils::MY'          => '6.42',
3290             'ExtUtils::MakeMaker'   => '6.42',
3291             'ExtUtils::MakeMaker::Config'=> '6.42',
3292             'ExtUtils::MakeMaker::bytes'=> '6.42',
3293             'ExtUtils::MakeMaker::vmsish'=> '6.42',
3294             'ExtUtils::Mkbootstrap' => '6.42',
3295             'ExtUtils::Mksymlists'  => '6.42',
3296             'ExtUtils::Packlist'    => '1.43',
3297             'ExtUtils::ParseXS'     => '2.18_02',
3298             'ExtUtils::testlib'     => '6.42',
3299             'File::Copy'            => '2.11',
3300             'File::Fetch'           => '0.14',
3301             'File::Find'            => '1.12',
3302             'File::Path'            => '2.04',
3303             'File::Spec'            => '3.2501',
3304             'File::Spec::Cygwin'    => '3.2501',
3305             'File::Spec::Epoc'      => '3.2501',
3306             'File::Spec::Functions' => '3.2501',
3307             'File::Spec::Mac'       => '3.2501',
3308             'File::Spec::OS2'       => '3.2501',
3309             'File::Spec::Unix'      => '3.2501',
3310             'File::Spec::VMS'       => '3.2501',
3311             'File::Spec::Win32'     => '3.2501',
3312             'Filter::Util::Call'    => '1.07',
3313             'Getopt::Long'          => '2.37',
3314             'Hash::Util::FieldHash' => '1.03',
3315             'IO::Compress::Adapter::Deflate'=> '2.008',
3316             'IO::Compress::Adapter::Identity'=> '2.008',
3317             'IO::Compress::Base'    => '2.008',
3318             'IO::Compress::Base::Common'=> '2.008',
3319             'IO::Compress::Deflate' => '2.008',
3320             'IO::Compress::Gzip'    => '2.008',
3321             'IO::Compress::Gzip::Constants'=> '2.008',
3322             'IO::Compress::RawDeflate'=> '2.008',
3323             'IO::Compress::Zip'     => '2.008',
3324             'IO::Compress::Zip::Constants'=> '2.008',
3325             'IO::Compress::Zlib::Constants'=> '2.008',
3326             'IO::Compress::Zlib::Extra'=> '2.008',
3327             'IO::Uncompress::Adapter::Identity'=> '2.008',
3328             'IO::Uncompress::Adapter::Inflate'=> '2.008',
3329             'IO::Uncompress::AnyInflate'=> '2.008',
3330             'IO::Uncompress::AnyUncompress'=> '2.008',
3331             'IO::Uncompress::Base'  => '2.008',
3332             'IO::Uncompress::Gunzip'=> '2.008',
3333             'IO::Uncompress::Inflate'=> '2.008',
3334             'IO::Uncompress::RawInflate'=> '2.008',
3335             'IO::Uncompress::Unzip' => '2.008',
3336             'IO::Zlib'              => '1.07',
3337             'IPC::Cmd'              => '0.40_1',
3338             'IPC::SysV'             => '1.05',
3339             'Locale::Maketext'      => '1.12',
3340             'Log::Message::Simple'  => '0.04',
3341             'Math::BigFloat'        => '1.59',
3342             'Math::BigInt'          => '1.88',
3343             'Math::BigInt::Calc'    => '0.52',
3344             'Math::BigInt::FastCalc'=> '0.16',
3345             'Math::BigRat'          => '0.21',
3346             'Module::Build'         => '0.2808_01',
3347             'Module::Build::Base'   => '0.2808_01',
3348             'Module::Build::Compat' => '0.2808_01',
3349             'Module::Build::Config' => '0.2808_01',
3350             'Module::Build::Dumper' => undef,
3351             'Module::Build::ModuleInfo'=> '0.2808_01',
3352             'Module::Build::Notes'  => '0.2808_01',
3353             'Module::Build::PPMMaker'=> '0.2808_01',
3354             'Module::Build::Platform::Amiga'=> '0.2808_01',
3355             'Module::Build::Platform::Default'=> '0.2808_01',
3356             'Module::Build::Platform::EBCDIC'=> '0.2808_01',
3357             'Module::Build::Platform::MPEiX'=> '0.2808_01',
3358             'Module::Build::Platform::MacOS'=> '0.2808_01',
3359             'Module::Build::Platform::RiscOS'=> '0.2808_01',
3360             'Module::Build::Platform::Unix'=> '0.2808_01',
3361             'Module::Build::Platform::VMS'=> '0.2808_01',
3362             'Module::Build::Platform::VOS'=> '0.2808_01',
3363             'Module::Build::Platform::Windows'=> '0.2808_01',
3364             'Module::Build::Platform::aix'=> '0.2808_01',
3365             'Module::Build::Platform::cygwin'=> '0.2808_01',
3366             'Module::Build::Platform::darwin'=> '0.2808_01',
3367             'Module::Build::Platform::os2'=> '0.2808_01',
3368             'Module::Build::PodParser'=> '0.2808_01',
3369             'Module::CoreList'      => '2.13',
3370             'Module::Load'          => '0.12',
3371             'Module::Load::Conditional'=> '0.22',
3372             'Net::Cmd'              => '2.29',
3373             'Net::Ping'             => '2.33',
3374             'Opcode'                => '1.11',
3375             'Pod::Checker'          => '1.43_01',
3376             'Pod::Man'              => '2.16',
3377             'Pod::Perldoc'          => '3.14_02',
3378             'Socket'                => '1.80',
3379             'Storable'              => '2.18',
3380             'Sys::Syslog'           => '0.22',
3381             'Sys::Syslog::win32::Win32'=> undef,
3382             'Term::Cap'             => '1.12',
3383             'Term::ReadLine'        => '1.03',
3384             'Term::UI'              => '0.18',
3385             'Test::Builder'         => '0.72',
3386             'Test::Builder::Module' => '0.72',
3387             'Test::Builder::Tester' => '1.09',
3388             'Test::Harness::Straps' => '0.26_01',
3389             'Test::More'            => '0.72',
3390             'Test::Simple'          => '0.72',
3391             'Text::ParseWords'      => '3.26',
3392             'Text::Soundex'         => '3.03',
3393             'Tie::StdHandle'        => undef,
3394             'Time::HiRes'           => '1.9711',
3395             'Time::Local'           => '1.18',
3396             'Time::Piece'           => '1.12',
3397             'VMS::Filespec'         => '1.12',
3398             'Win32'                 => '0.34',
3399             'base'                  => '2.13',
3400             'constant'              => '1.13',
3401             'feature'               => '1.11',
3402             'fields'                => '2.13',
3403             'filetest'              => '1.02',
3404             'open'                  => '1.06',
3405             'threads'               => '1.67',
3406             'threads::shared'       => '1.14',
3407             'version'               => '0.74',
3408         },
3409         removed => {
3410         }
3411     },
3412     5.010001 => {
3413         delta_from => 5.01,
3414         changed => {
3415             'App::Prove'            => '3.17',
3416             'App::Prove::State'     => '3.17',
3417             'App::Prove::State::Result'=> '3.17',
3418             'App::Prove::State::Result::Test'=> '3.17',
3419             'Archive::Extract'      => '0.34',
3420             'Archive::Tar'          => '1.52',
3421             'Attribute::Handlers'   => '0.85',
3422             'AutoLoader'            => '5.68',
3423             'AutoSplit'             => '1.06',
3424             'B'                     => '1.22',
3425             'B::Concise'            => '0.76',
3426             'B::Debug'              => '1.11',
3427             'B::Deparse'            => '0.89',
3428             'B::Lint'               => '1.11',
3429             'B::Lint::Debug'        => undef,
3430             'B::Xref'               => '1.02',
3431             'Benchmark'             => '1.11',
3432             'CGI'                   => '3.43',
3433             'CGI::Carp'             => '1.30_01',
3434             'CGI::Cookie'           => '1.29',
3435             'CPAN'                  => '1.9402',
3436             'CPAN::Author'          => '5.5',
3437             'CPAN::Bundle'          => '5.5',
3438             'CPAN::CacheMgr'        => '5.5',
3439             'CPAN::Complete'        => '5.5',
3440             'CPAN::Debug'           => '5.5',
3441             'CPAN::DeferredCode'    => '5.50',
3442             'CPAN::Distribution'    => '1.93',
3443             'CPAN::Distroprefs'     => '6',
3444             'CPAN::Distrostatus'    => '5.5',
3445             'CPAN::Exception::RecursiveDependency'=> '5.5',
3446             'CPAN::Exception::blocked_urllist'=> '1.0',
3447             'CPAN::Exception::yaml_not_installed'=> '5.5',
3448             'CPAN::FTP'             => '5.5001',
3449             'CPAN::FTP::netrc'      => '1.00',
3450             'CPAN::FirstTime'       => '5.53',
3451             'CPAN::HandleConfig'    => '5.5',
3452             'CPAN::Index'           => '1.93',
3453             'CPAN::InfoObj'         => '5.5',
3454             'CPAN::Kwalify'         => '5.50',
3455             'CPAN::LWP::UserAgent'  => '1.00',
3456             'CPAN::Module'          => '5.5',
3457             'CPAN::Nox'             => '5.50',
3458             'CPAN::Prompt'          => '5.5',
3459             'CPAN::Queue'           => '5.5',
3460             'CPAN::Shell'           => '5.5',
3461             'CPAN::Tarzip'          => '5.501',
3462             'CPAN::URL'             => '5.5',
3463             'CPANPLUS'              => '0.88',
3464             'CPANPLUS::Dist::Autobundle'=> undef,
3465             'CPANPLUS::Dist::Base'  => undef,
3466             'CPANPLUS::Dist::Build' => '0.36',
3467             'CPANPLUS::Dist::Build::Constants'=> '0.36',
3468             'CPANPLUS::Internals'   => '0.88',
3469             'CPANPLUS::Internals::Constants'=> undef,
3470             'CPANPLUS::Internals::Constants::Report'=> undef,
3471             'CPANPLUS::Internals::Source::Memory'=> undef,
3472             'CPANPLUS::Internals::Source::SQLite'=> undef,
3473             'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
3474             'CPANPLUS::Shell::Default'=> '0.88',
3475             'Carp'                  => '1.11',
3476             'Carp::Heavy'           => '1.11',
3477             'Compress::Raw::Bzip2'  => '2.020',
3478             'Compress::Raw::Zlib'   => '2.020',
3479             'Compress::Zlib'        => '2.020',
3480             'Cwd'                   => '3.30',
3481             'DB'                    => '1.02',
3482             'DBM_Filter::compress'  => '0.02',
3483             'DBM_Filter::encode'    => '0.02',
3484             'DBM_Filter::int32'     => '0.02',
3485             'DBM_Filter::null'      => '0.02',
3486             'DBM_Filter::utf8'      => '0.02',
3487             'DB_File'               => '1.820',
3488             'Data::Dumper'          => '2.124',
3489             'Devel::DProf'          => '20080331.00',
3490             'Devel::PPPort'         => '3.19',
3491             'Devel::Peek'           => '1.04',
3492             'Digest'                => '1.16',
3493             'Digest::MD5'           => '2.39',
3494             'Digest::SHA'           => '5.47',
3495             'Digest::base'          => '1.16',
3496             'Digest::file'          => '1.16',
3497             'DirHandle'             => '1.03',
3498             'Dumpvalue'             => '1.13',
3499             'DynaLoader'            => '1.10',
3500             'Encode'                => '2.35',
3501             'Encode::Alias'         => '2.12',
3502             'Encode::CN::HZ'        => '2.05',
3503             'Encode::Config'        => '2.05',
3504             'Encode::GSM0338'       => '2.01',
3505             'Encode::Guess'         => '2.03',
3506             'Encode::JP::JIS7'      => '2.04',
3507             'Encode::MIME::Header'  => '2.11',
3508             'Encode::Unicode'       => '2.06',
3509             'Errno'                 => '1.11',
3510             'Exporter'              => '5.63',
3511             'Exporter::Heavy'       => '5.63',
3512             'ExtUtils::CBuilder'    => '0.2602',
3513             'ExtUtils::CBuilder::Base'=> '0.2602',
3514             'ExtUtils::CBuilder::Platform::Unix'=> '0.2602',
3515             'ExtUtils::CBuilder::Platform::VMS'=> '0.2602',
3516             'ExtUtils::CBuilder::Platform::Windows'=> '0.2602',
3517             'ExtUtils::CBuilder::Platform::aix'=> '0.2602',
3518             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602',
3519             'ExtUtils::CBuilder::Platform::darwin'=> '0.2602',
3520             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602',
3521             'ExtUtils::CBuilder::Platform::os2'=> '0.2602',
3522             'ExtUtils::Command'     => '1.16',
3523             'ExtUtils::Command::MM' => '6.55_02',
3524             'ExtUtils::Constant'    => '0.22',
3525             'ExtUtils::Constant::ProxySubs'=> '0.06',
3526             'ExtUtils::Constant::Utils'=> '0.02',
3527             'ExtUtils::Constant::XS'=> '0.03',
3528             'ExtUtils::Embed'       => '1.28',
3529             'ExtUtils::Install'     => '1.54',
3530             'ExtUtils::Installed'   => '1.999_001',
3531             'ExtUtils::Liblist'     => '6.55_02',
3532             'ExtUtils::Liblist::Kid'=> '6.5502',
3533             'ExtUtils::MM'          => '6.55_02',
3534             'ExtUtils::MM_AIX'      => '6.55_02',
3535             'ExtUtils::MM_Any'      => '6.55_02',
3536             'ExtUtils::MM_BeOS'     => '6.55_02',
3537             'ExtUtils::MM_Cygwin'   => '6.55_02',
3538             'ExtUtils::MM_DOS'      => '6.5502',
3539             'ExtUtils::MM_Darwin'   => '6.55_02',
3540             'ExtUtils::MM_MacOS'    => '6.5502',
3541             'ExtUtils::MM_NW5'      => '6.55_02',
3542             'ExtUtils::MM_OS2'      => '6.55_02',
3543             'ExtUtils::MM_QNX'      => '6.55_02',
3544             'ExtUtils::MM_UWIN'     => '6.5502',
3545             'ExtUtils::MM_Unix'     => '6.55_02',
3546             'ExtUtils::MM_VMS'      => '6.55_02',
3547             'ExtUtils::MM_VOS'      => '6.55_02',
3548             'ExtUtils::MM_Win32'    => '6.55_02',
3549             'ExtUtils::MM_Win95'    => '6.55_02',
3550             'ExtUtils::MY'          => '6.5502',
3551             'ExtUtils::MakeMaker'   => '6.55_02',
3552             'ExtUtils::MakeMaker::Config'=> '6.55_02',
3553             'ExtUtils::Manifest'    => '1.56',
3554             'ExtUtils::Mkbootstrap' => '6.55_02',
3555             'ExtUtils::Mksymlists'  => '6.55_02',
3556             'ExtUtils::ParseXS'     => '2.2002',
3557             'ExtUtils::testlib'     => '6.5502',
3558             'Fatal'                 => '2.06_01',
3559             'File::Basename'        => '2.77',
3560             'File::CheckTree'       => '4.4',
3561             'File::Compare'         => '1.1006',
3562             'File::Copy'            => '2.14',
3563             'File::DosGlob'         => '1.01',
3564             'File::Fetch'           => '0.20',
3565             'File::Find'            => '1.14',
3566             'File::GlobMapper'      => '1.000',
3567             'File::Path'            => '2.07_03',
3568             'File::Spec'            => '3.30',
3569             'File::Spec::Cygwin'    => '3.30',
3570             'File::Spec::Epoc'      => '3.30',
3571             'File::Spec::Functions' => '3.30',
3572             'File::Spec::Mac'       => '3.30',
3573             'File::Spec::OS2'       => '3.30',
3574             'File::Spec::Unix'      => '3.30',
3575             'File::Spec::VMS'       => '3.30',
3576             'File::Spec::Win32'     => '3.30',
3577             'File::Temp'            => '0.22',
3578             'File::stat'            => '1.01',
3579             'FileCache'             => '1.08',
3580             'FileHandle'            => '2.02',
3581             'Filter::Simple'        => '0.84',
3582             'Filter::Util::Call'    => '1.08',
3583             'FindBin'               => '1.50',
3584             'GDBM_File'             => '1.09',
3585             'Getopt::Long'          => '2.38',
3586             'Getopt::Std'           => '1.06',
3587             'Hash::Util::FieldHash' => '1.04',
3588             'I18N::Collate'         => '1.01',
3589             'IO'                    => '1.25',
3590             'IO::Compress::Adapter::Bzip2'=> '2.020',
3591             'IO::Compress::Adapter::Deflate'=> '2.020',
3592             'IO::Compress::Adapter::Identity'=> '2.020',
3593             'IO::Compress::Base'    => '2.020',
3594             'IO::Compress::Base::Common'=> '2.020',
3595             'IO::Compress::Bzip2'   => '2.020',
3596             'IO::Compress::Deflate' => '2.020',
3597             'IO::Compress::Gzip'    => '2.020',
3598             'IO::Compress::Gzip::Constants'=> '2.020',
3599             'IO::Compress::RawDeflate'=> '2.020',
3600             'IO::Compress::Zip'     => '2.020',
3601             'IO::Compress::Zip::Constants'=> '2.020',
3602             'IO::Compress::Zlib::Constants'=> '2.020',
3603             'IO::Compress::Zlib::Extra'=> '2.020',
3604             'IO::Dir'               => '1.07',
3605             'IO::Handle'            => '1.28',
3606             'IO::Socket'            => '1.31',
3607             'IO::Uncompress::Adapter::Bunzip2'=> '2.020',
3608             'IO::Uncompress::Adapter::Identity'=> '2.020',
3609             'IO::Uncompress::Adapter::Inflate'=> '2.020',
3610             'IO::Uncompress::AnyInflate'=> '2.020',
3611             'IO::Uncompress::AnyUncompress'=> '2.020',
3612             'IO::Uncompress::Base'  => '2.020',
3613             'IO::Uncompress::Bunzip2'=> '2.020',
3614             'IO::Uncompress::Gunzip'=> '2.020',
3615             'IO::Uncompress::Inflate'=> '2.020',
3616             'IO::Uncompress::RawInflate'=> '2.020',
3617             'IO::Uncompress::Unzip' => '2.020',
3618             'IO::Zlib'              => '1.09',
3619             'IPC::Cmd'              => '0.46',
3620             'IPC::Msg'              => '2.01',
3621             'IPC::Open2'            => '1.03',
3622             'IPC::Open3'            => '1.04',
3623             'IPC::Semaphore'        => '2.01',
3624             'IPC::SharedMem'        => '2.01',
3625             'IPC::SysV'             => '2.01',
3626             'List::Util'            => '1.21',
3627             'List::Util::PP'        => '1.21',
3628             'List::Util::XS'        => '1.21',
3629             'Locale::Maketext'      => '1.13',
3630             'Locale::Maketext::Guts'=> '1.13',
3631             'Locale::Maketext::GutsLoader'=> '1.13',
3632             'Log::Message'          => '0.02',
3633             'MIME::Base64'          => '3.08',
3634             'MIME::QuotedPrint'     => '3.08',
3635             'Math::BigFloat'        => '1.60',
3636             'Math::BigInt'          => '1.89',
3637             'Math::BigInt::FastCalc'=> '0.19',
3638             'Math::BigRat'          => '0.22',
3639             'Math::Complex'         => '1.56',
3640             'Math::Trig'            => '1.2',
3641             'Memoize'               => '1.01_03',
3642             'Module::Build'         => '0.340201',
3643             'Module::Build::Base'   => '0.340201',
3644             'Module::Build::Compat' => '0.340201',
3645             'Module::Build::Config' => '0.340201',
3646             'Module::Build::Cookbook'=> '0.340201',
3647             'Module::Build::Dumper' => '0.340201',
3648             'Module::Build::ModuleInfo'=> '0.340201',
3649             'Module::Build::Notes'  => '0.340201',
3650             'Module::Build::PPMMaker'=> '0.340201',
3651             'Module::Build::Platform::Amiga'=> '0.340201',
3652             'Module::Build::Platform::Default'=> '0.340201',
3653             'Module::Build::Platform::EBCDIC'=> '0.340201',
3654             'Module::Build::Platform::MPEiX'=> '0.340201',
3655             'Module::Build::Platform::MacOS'=> '0.340201',
3656             'Module::Build::Platform::RiscOS'=> '0.340201',
3657             'Module::Build::Platform::Unix'=> '0.340201',
3658             'Module::Build::Platform::VMS'=> '0.340201',
3659             'Module::Build::Platform::VOS'=> '0.340201',
3660             'Module::Build::Platform::Windows'=> '0.340201',
3661             'Module::Build::Platform::aix'=> '0.340201',
3662             'Module::Build::Platform::cygwin'=> '0.340201',
3663             'Module::Build::Platform::darwin'=> '0.340201',
3664             'Module::Build::Platform::os2'=> '0.340201',
3665             'Module::Build::PodParser'=> '0.340201',
3666             'Module::Build::Version'=> '0.77',
3667             'Module::CoreList'      => '2.18',
3668             'Module::Load'          => '0.16',
3669             'Module::Load::Conditional'=> '0.30',
3670             'Module::Loaded'        => '0.02',
3671             'Module::Pluggable'     => '3.9',
3672             'Module::Pluggable::Object'=> '3.9',
3673             'NDBM_File'             => '1.08',
3674             'NEXT'                  => '0.64',
3675             'Net::Ping'             => '2.36',
3676             'O'                     => '1.01',
3677             'OS2::Process'          => '1.03',
3678             'OS2::REXX'             => '1.04',
3679             'Object::Accessor'      => '0.34',
3680             'POSIX'                 => '1.17',
3681             'Package::Constants'    => '0.02',
3682             'Parse::CPAN::Meta'     => '1.39',
3683             'PerlIO'                => '1.06',
3684             'PerlIO::encoding'      => '0.11',
3685             'PerlIO::scalar'        => '0.07',
3686             'PerlIO::via'           => '0.07',
3687             'Pod::Checker'          => '1.45',
3688             'Pod::Find'             => '1.35',
3689             'Pod::Html'             => '1.09',
3690             'Pod::InputObjects'     => '1.31',
3691             'Pod::Man'              => '2.22',
3692             'Pod::ParseLink'        => '1.09',
3693             'Pod::ParseUtils'       => '1.36',
3694             'Pod::Parser'           => '1.37',
3695             'Pod::Perldoc'          => '3.14_04',
3696             'Pod::PlainText'        => '2.04',
3697             'Pod::Select'           => '1.36',
3698             'Pod::Simple'           => '3.07',
3699             'Pod::Simple::XHTML'    => '3.04',
3700             'Pod::Text'             => '3.13',
3701             'Pod::Text::Color'      => '2.05',
3702             'Pod::Text::Overstrike' => '2.03',
3703             'Pod::Text::Termcap'    => '2.05',
3704             'Pod::Usage'            => '1.36',
3705             'Safe'                  => '2.18',
3706             'Scalar::Util'          => '1.21',
3707             'Scalar::Util::PP'      => '1.21',
3708             'SelectSaver'           => '1.02',
3709             'SelfLoader'            => '1.17',
3710             'Socket'                => '1.82',
3711             'Storable'              => '2.20',
3712             'Switch'                => '2.14',
3713             'Symbol'                => '1.07',
3714             'Sys::Syslog'           => '0.27',
3715             'TAP::Base'             => '3.17',
3716             'TAP::Formatter::Base'  => '3.17',
3717             'TAP::Formatter::Color' => '3.17',
3718             'TAP::Formatter::Console'=> '3.17',
3719             'TAP::Formatter::Console::ParallelSession'=> '3.17',
3720             'TAP::Formatter::Console::Session'=> '3.17',
3721             'TAP::Formatter::File'  => '3.17',
3722             'TAP::Formatter::File::Session'=> '3.17',
3723             'TAP::Formatter::Session'=> '3.17',
3724             'TAP::Harness'          => '3.17',
3725             'TAP::Object'           => '3.17',
3726             'TAP::Parser'           => '3.17',
3727             'TAP::Parser::Aggregator'=> '3.17',
3728             'TAP::Parser::Grammar'  => '3.17',
3729             'TAP::Parser::Iterator' => '3.17',
3730             'TAP::Parser::Iterator::Array'=> '3.17',
3731             'TAP::Parser::Iterator::Process'=> '3.17',
3732             'TAP::Parser::Iterator::Stream'=> '3.17',
3733             'TAP::Parser::IteratorFactory'=> '3.17',
3734             'TAP::Parser::Multiplexer'=> '3.17',
3735             'TAP::Parser::Result'   => '3.17',
3736             'TAP::Parser::Result::Bailout'=> '3.17',
3737             'TAP::Parser::Result::Comment'=> '3.17',
3738             'TAP::Parser::Result::Plan'=> '3.17',
3739             'TAP::Parser::Result::Pragma'=> '3.17',
3740             'TAP::Parser::Result::Test'=> '3.17',
3741             'TAP::Parser::Result::Unknown'=> '3.17',
3742             'TAP::Parser::Result::Version'=> '3.17',
3743             'TAP::Parser::Result::YAML'=> '3.17',
3744             'TAP::Parser::ResultFactory'=> '3.17',
3745             'TAP::Parser::Scheduler'=> '3.17',
3746             'TAP::Parser::Scheduler::Job'=> '3.17',
3747             'TAP::Parser::Scheduler::Spinner'=> '3.17',
3748             'TAP::Parser::Source'   => '3.17',
3749             'TAP::Parser::Source::Perl'=> '3.17',
3750             'TAP::Parser::Utils'    => '3.17',
3751             'TAP::Parser::YAMLish::Reader'=> '3.17',
3752             'TAP::Parser::YAMLish::Writer'=> '3.17',
3753             'Term::ANSIColor'       => '2.00',
3754             'Term::ReadLine'        => '1.04',
3755             'Term::UI'              => '0.20',
3756             'Test'                  => '1.25_02',
3757             'Test::Builder'         => '0.92',
3758             'Test::Builder::Module' => '0.92',
3759             'Test::Builder::Tester' => '1.18',
3760             'Test::Builder::Tester::Color'=> '1.18',
3761             'Test::Harness'         => '3.17',
3762             'Test::More'            => '0.92',
3763             'Test::Simple'          => '0.92',
3764             'Text::ParseWords'      => '3.27',
3765             'Text::Tabs'            => '2009.0305',
3766             'Text::Wrap'            => '2009.0305',
3767             'Thread::Queue'         => '2.11',
3768             'Thread::Semaphore'     => '2.09',
3769             'Tie::Handle'           => '4.2',
3770             'Tie::Hash'             => '1.03',
3771             'Tie::RefHash'          => '1.38',
3772             'Tie::Scalar'           => '1.01',
3773             'Tie::StdHandle'        => '4.2',
3774             'Time::HiRes'           => '1.9719',
3775             'Time::Local'           => '1.1901',
3776             'Time::Piece'           => '1.15',
3777             'UNIVERSAL'             => '1.05',
3778             'Unicode'               => '5.1.0',
3779             'Unicode::Normalize'    => '1.03',
3780             'Unicode::UCD'          => '0.27',
3781             'VMS::Stdio'            => '2.4',
3782             'Win32'                 => '0.39',
3783             'Win32API::File'        => '0.1101',
3784             'XS::APItest'           => '0.15',
3785             'XS::Typemap'           => '0.03',
3786             'XSLoader'              => '0.10',
3787             'attributes'            => '0.09',
3788             'attrs'                 => '1.03',
3789             'autodie'               => '2.06_01',
3790             'autodie::exception'    => '2.06_01',
3791             'autodie::exception::system'=> '2.06_01',
3792             'autodie::hints'        => '2.06_01',
3793             'base'                  => '2.14',
3794             'bigint'                => '0.23',
3795             'bignum'                => '0.23',
3796             'bigrat'                => '0.23',
3797             'blib'                  => '1.04',
3798             'charnames'             => '1.07',
3799             'constant'              => '1.17',
3800             'encoding'              => '2.6_01',
3801             'feature'               => '1.13',
3802             'fields'                => '2.14',
3803             'lib'                   => '0.62',
3804             'mro'                   => '1.01',
3805             'open'                  => '1.07',
3806             'ops'                   => '1.02',
3807             'overload'              => '1.07',
3808             'overload::numbers'     => undef,
3809             'overloading'           => '0.01',
3810             'parent'                => '0.221',
3811             're'                    => '0.09',
3812             'threads'               => '1.72',
3813             'threads::shared'       => '1.29',
3814             'version'               => '0.77',
3815         },
3816         removed => {
3817             'CPAN::API::HOWTO'      => 1,
3818             'CPAN::DeferedCode'     => 1,
3819             'CPANPLUS::inc'         => 1,
3820             'ExtUtils::MakeMaker::bytes'=> 1,
3821             'ExtUtils::MakeMaker::vmsish'=> 1,
3822             'Test::Harness::Assert' => 1,
3823             'Test::Harness::Iterator'=> 1,
3824             'Test::Harness::Point'  => 1,
3825             'Test::Harness::Results'=> 1,
3826             'Test::Harness::Straps' => 1,
3827             'Test::Harness::Util'   => 1,
3828         }
3829     },
3830     5.011 => {
3831         delta_from => 5.010001,
3832         changed => {
3833             'Archive::Tar'          => '1.54',
3834             'Attribute::Handlers'   => '0.87',
3835             'AutoLoader'            => '5.70',
3836             'B::Deparse'            => '0.91',
3837             'B::Lint'               => '1.11_01',
3838             'B::Lint::Debug'        => '0.01',
3839             'CGI'                   => '3.45',
3840             'CGI::Apache'           => '1.01',
3841             'CGI::Carp'             => '3.45',
3842             'CGI::Pretty'           => '3.44',
3843             'CGI::Switch'           => '1.01',
3844             'CGI::Util'             => '3.45',
3845             'CPAN'                  => '1.94_51',
3846             'CPAN::Distribution'    => '1.94',
3847             'CPAN::FTP'             => '5.5002',
3848             'CPAN::Index'           => '1.94',
3849             'CPAN::LWP::UserAgent'  => '1.94',
3850             'CPANPLUS::Dist::Build' => '0.40',
3851             'CPANPLUS::Dist::Build::Constants'=> '0.40',
3852             'Carp'                  => '1.12',
3853             'Carp::Heavy'           => '1.12',
3854             'Class::ISA'            => '0.36',
3855             'Compress::Raw::Bzip2'  => '2.021',
3856             'Compress::Raw::Zlib'   => '2.021',
3857             'Compress::Zlib'        => '2.021',
3858             'Cwd'                   => '3.3002',
3859             'Data::Dumper'          => '2.125',
3860             'Encode'                => '2.37',
3861             'Exporter'              => '5.64',
3862             'Exporter::Heavy'       => '5.64',
3863             'ExtUtils::ParseXS'     => '2.200403',
3864             'File::Basename'        => '2.78',
3865             'File::Copy'            => '2.16',
3866             'File::stat'            => '1.02',
3867             'IO'                    => '1.25_01',
3868             'IO::Compress::Adapter::Bzip2'=> '2.021',
3869             'IO::Compress::Adapter::Deflate'=> '2.021',
3870             'IO::Compress::Adapter::Identity'=> '2.021',
3871             'IO::Compress::Base'    => '2.021',
3872             'IO::Compress::Base::Common'=> '2.021',
3873             'IO::Compress::Bzip2'   => '2.021',
3874             'IO::Compress::Deflate' => '2.021',
3875             'IO::Compress::Gzip'    => '2.021',
3876             'IO::Compress::Gzip::Constants'=> '2.021',
3877             'IO::Compress::RawDeflate'=> '2.021',
3878             'IO::Compress::Zip'     => '2.021',
3879             'IO::Compress::Zip::Constants'=> '2.021',
3880             'IO::Compress::Zlib::Constants'=> '2.021',
3881             'IO::Compress::Zlib::Extra'=> '2.021',
3882             'IO::Uncompress::Adapter::Bunzip2'=> '2.021',
3883             'IO::Uncompress::Adapter::Identity'=> '2.021',
3884             'IO::Uncompress::Adapter::Inflate'=> '2.021',
3885             'IO::Uncompress::AnyInflate'=> '2.021',
3886             'IO::Uncompress::AnyUncompress'=> '2.021',
3887             'IO::Uncompress::Base'  => '2.021',
3888             'IO::Uncompress::Bunzip2'=> '2.021',
3889             'IO::Uncompress::Gunzip'=> '2.021',
3890             'IO::Uncompress::Inflate'=> '2.021',
3891             'IO::Uncompress::RawInflate'=> '2.021',
3892             'IO::Uncompress::Unzip' => '2.021',
3893             'IO::Zlib'              => '1.10',
3894             'IPC::Cmd'              => '0.50',
3895             'IPC::Open3'            => '1.05',
3896             'Locale::Maketext::Simple'=> '0.21',
3897             'Log::Message::Simple'  => '0.06',
3898             'Math::BigInt'          => '1.89_01',
3899             'Math::BigRat'          => '0.24',
3900             'Module::Build'         => '0.35',
3901             'Module::Build::Base'   => '0.35',
3902             'Module::Build::Compat' => '0.35',
3903             'Module::Build::Config' => '0.35',
3904             'Module::Build::Cookbook'=> '0.35',
3905             'Module::Build::Dumper' => '0.35',
3906             'Module::Build::ModuleInfo'=> '0.35',
3907             'Module::Build::Notes'  => '0.35',
3908             'Module::Build::PPMMaker'=> '0.35',
3909             'Module::Build::Platform::Amiga'=> '0.35',
3910             'Module::Build::Platform::Default'=> '0.35',
3911             'Module::Build::Platform::EBCDIC'=> '0.35',
3912             'Module::Build::Platform::MPEiX'=> '0.35',
3913             'Module::Build::Platform::MacOS'=> '0.35',
3914             'Module::Build::Platform::RiscOS'=> '0.35',
3915             'Module::Build::Platform::Unix'=> '0.35',
3916             'Module::Build::Platform::VMS'=> '0.35',
3917             'Module::Build::Platform::VOS'=> '0.35',
3918             'Module::Build::Platform::Windows'=> '0.35',
3919             'Module::Build::Platform::aix'=> '0.35',
3920             'Module::Build::Platform::cygwin'=> '0.35',
3921             'Module::Build::Platform::darwin'=> '0.35',
3922             'Module::Build::Platform::os2'=> '0.35',
3923             'Module::Build::PodParser'=> '0.35',
3924             'Module::CoreList'      => '2.19',
3925             'Module::Loaded'        => '0.06',
3926             'Opcode'                => '1.13',
3927             'PerlIO::via'           => '0.08',
3928             'Pod::Perldoc'          => '3.15_01',
3929             'Pod::Plainer'          => '1.01',
3930             'Safe'                  => '2.19',
3931             'Socket'                => '1.84',
3932             'Switch'                => '2.14_01',
3933             'Term::ANSIColor'       => '2.02',
3934             'Term::ReadLine'        => '1.05',
3935             'Text::Balanced'        => '2.02',
3936             'Text::Soundex'         => '3.03_01',
3937             'Time::Local'           => '1.1901_01',
3938             'Unicode::Collate'      => '0.52_01',
3939             'attributes'            => '0.12',
3940             'constant'              => '1.19',
3941             'deprecate'             => '0.01',
3942             'overload'              => '1.08',
3943             'parent'                => '0.223',
3944             're'                    => '0.10',
3945             'threads'               => '1.74',
3946             'threads::shared'       => '1.31',
3947             'warnings'              => '1.07',
3948         },
3949         removed => {
3950             'attrs'                 => 1,
3951         }
3952     },
3953     5.011001 => {
3954         delta_from => 5.011,
3955         changed => {
3956             'B'                     => '1.23',
3957             'B::Concise'            => '0.77',
3958             'B::Deparse'            => '0.92',
3959             'CGI'                   => '3.48',
3960             'CGI::Pretty'           => '3.46',
3961             'CGI::Util'             => '3.48',
3962             'CPANPLUS'              => '0.89_03',
3963             'CPANPLUS::Internals'   => '0.89_03',
3964             'CPANPLUS::Shell::Default'=> '0.89_03',
3965             'Carp'                  => '1.13',
3966             'Carp::Heavy'           => '1.13',
3967             'ExtUtils::CBuilder'    => '0.260301',
3968             'ExtUtils::CBuilder::Base'=> '0.260301',
3969             'ExtUtils::CBuilder::Platform::Unix'=> '0.260301',
3970             'ExtUtils::CBuilder::Platform::VMS'=> '0.260301',
3971             'ExtUtils::CBuilder::Platform::Windows'=> '0.260301',
3972             'ExtUtils::CBuilder::Platform::aix'=> '0.260301',
3973             'ExtUtils::CBuilder::Platform::cygwin'=> '0.260301',
3974             'ExtUtils::CBuilder::Platform::darwin'=> '0.260301',
3975             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.260301',
3976             'ExtUtils::CBuilder::Platform::os2'=> '0.260301',
3977             'ExtUtils::Install'     => '1.55',
3978             'ExtUtils::Manifest'    => '1.57',
3979             'ExtUtils::Packlist'    => '1.44',
3980             'ExtUtils::ParseXS'     => '2.21',
3981             'File::Glob'            => '1.07',
3982             'File::Path'            => '2.08',
3983             'IO'                    => '1.25_02',
3984             'Module::CoreList'      => '2.21',
3985             'OS2::DLL'              => '1.04',
3986             'OS2::Process'          => '1.04',
3987             'Object::Accessor'      => '0.36',
3988             'Opcode'                => '1.15',
3989             'POSIX'                 => '1.18',
3990             'Parse::CPAN::Meta'     => '1.40',
3991             'PerlIO::via'           => '0.09',
3992             'Pod::Simple'           => '3.08',
3993             'Socket'                => '1.85',
3994             'Storable'              => '2.22',
3995             'Switch'                => '2.15',
3996             'Test::Builder'         => '0.94',
3997             'Test::Builder::Module' => '0.94',
3998             'Test::More'            => '0.94',
3999             'Test::Simple'          => '0.94',
4000             'XS::APItest'           => '0.16',
4001             'mro'                   => '1.02',
4002             'overload'              => '1.09',
4003             'threads::shared'       => '1.32',
4004         },
4005         removed => {
4006         }
4007     },
4008     5.011002 => {
4009         delta_from => 5.011001,
4010         changed => {
4011             'B::Concise'            => '0.78',
4012             'B::Deparse'            => '0.93',
4013             'CPANPLUS'              => '0.89_09',
4014             'CPANPLUS::Dist::Build' => '0.44',
4015             'CPANPLUS::Dist::Build::Constants'=> '0.44',
4016             'CPANPLUS::Internals'   => '0.89_09',
4017             'CPANPLUS::Shell::Default'=> '0.89_09',
4018             'Carp'                  => '1.14',
4019             'Carp::Heavy'           => '1.14',
4020             'Compress::Zlib'        => '2.022',
4021             'DBM_Filter'            => '0.03',
4022             'Encode'                => '2.38',
4023             'Encode::Byte'          => '2.04',
4024             'Encode::CN'            => '2.03',
4025             'Encode::JP'            => '2.04',
4026             'Encode::KR'            => '2.03',
4027             'Encode::TW'            => '2.03',
4028             'Encode::Unicode'       => '2.07',
4029             'Env'                   => '1.01',
4030             'Exporter'              => '5.64_01',
4031             'Exporter::Heavy'       => '5.64_01',
4032             'ExtUtils::CBuilder'    => '0.27',
4033             'ExtUtils::CBuilder::Base'=> '0.27',
4034             'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
4035             'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
4036             'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
4037             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
4038             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
4039             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
4040             'ExtUtils::CBuilder::Platform::aix'=> '0.27',
4041             'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
4042             'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
4043             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
4044             'ExtUtils::CBuilder::Platform::os2'=> '0.27',
4045             'File::Fetch'           => '0.22',
4046             'I18N::LangTags::Detect'=> '1.04',
4047             'I18N::Langinfo'        => '0.03',
4048             'IO::Compress::Adapter::Bzip2'=> '2.022',
4049             'IO::Compress::Adapter::Deflate'=> '2.022',
4050             'IO::Compress::Adapter::Identity'=> '2.022',
4051             'IO::Compress::Base'    => '2.022',
4052             'IO::Compress::Base::Common'=> '2.022',
4053             'IO::Compress::Bzip2'   => '2.022',
4054             'IO::Compress::Deflate' => '2.022',
4055             'IO::Compress::Gzip'    => '2.022',
4056             'IO::Compress::Gzip::Constants'=> '2.022',
4057             'IO::Compress::RawDeflate'=> '2.022',
4058             'IO::Compress::Zip'     => '2.022',
4059             'IO::Compress::Zip::Constants'=> '2.022',
4060             'IO::Compress::Zlib::Constants'=> '2.022',
4061             'IO::Compress::Zlib::Extra'=> '2.022',
4062             'IO::Uncompress::Adapter::Bunzip2'=> '2.022',
4063             'IO::Uncompress::Adapter::Identity'=> '2.022',
4064             'IO::Uncompress::Adapter::Inflate'=> '2.022',
4065             'IO::Uncompress::AnyInflate'=> '2.022',
4066             'IO::Uncompress::AnyUncompress'=> '2.022',
4067             'IO::Uncompress::Base'  => '2.022',
4068             'IO::Uncompress::Bunzip2'=> '2.022',
4069             'IO::Uncompress::Gunzip'=> '2.022',
4070             'IO::Uncompress::Inflate'=> '2.022',
4071             'IO::Uncompress::RawInflate'=> '2.022',
4072             'IO::Uncompress::Unzip' => '2.022',
4073             'IPC::Cmd'              => '0.54',
4074             'List::Util'            => '1.22',
4075             'List::Util::PP'        => '1.22',
4076             'List::Util::XS'        => '1.22',
4077             'Locale::Maketext'      => '1.14',
4078             'Module::Build'         => '0.35_09',
4079             'Module::Build::Base'   => '0.35_09',
4080             'Module::Build::Compat' => '0.35_09',
4081             'Module::Build::Config' => '0.35_09',
4082             'Module::Build::Cookbook'=> '0.35_09',
4083             'Module::Build::Dumper' => '0.35_09',
4084             'Module::Build::ModuleInfo'=> '0.35_09',
4085             'Module::Build::Notes'  => '0.35_09',
4086             'Module::Build::PPMMaker'=> '0.35_09',
4087             'Module::Build::Platform::Amiga'=> '0.35_09',
4088             'Module::Build::Platform::Default'=> '0.35_09',
4089             'Module::Build::Platform::EBCDIC'=> '0.35_09',
4090             'Module::Build::Platform::MPEiX'=> '0.35_09',
4091             'Module::Build::Platform::MacOS'=> '0.35_09',
4092             'Module::Build::Platform::RiscOS'=> '0.35_09',
4093             'Module::Build::Platform::Unix'=> '0.35_09',
4094             'Module::Build::Platform::VMS'=> '0.35_09',
4095             'Module::Build::Platform::VOS'=> '0.35_09',
4096             'Module::Build::Platform::Windows'=> '0.35_09',
4097             'Module::Build::Platform::aix'=> '0.35_09',
4098             'Module::Build::Platform::cygwin'=> '0.35_09',
4099             'Module::Build::Platform::darwin'=> '0.35_09',
4100             'Module::Build::Platform::os2'=> '0.35_09',
4101             'Module::Build::PodParser'=> '0.35_09',
4102             'Module::Build::YAML'   => '1.40',
4103             'Module::CoreList'      => '2.23',
4104             'Module::Load::Conditional'=> '0.34',
4105             'Pod::Simple'           => '3.10',
4106             'Pod::Simple::XHTML'    => '3.10',
4107             'Scalar::Util'          => '1.22',
4108             'Scalar::Util::PP'      => '1.22',
4109             'Switch'                => '2.16',
4110             'XS::APItest'           => '0.17',
4111             'XS::APItest::KeywordRPN'=> '0.003',
4112             'base'                  => '2.15',
4113             'diagnostics'           => '1.18',
4114             'fields'                => '2.15',
4115             'inc::latest'           => '0.35_09',
4116             'legacy'                => '1.00',
4117             'overload'              => '1.10',
4118         },
4119         removed => {
4120         }
4121     },
4122     5.011003 => {
4123         delta_from => 5.011002,
4124         changed => {
4125             'App::Cpan'             => '1.570001',
4126             'Archive::Extract'      => '0.36',
4127             'CPAN'                  => '1.94_5301',
4128             'CPAN::FTP'             => '5.5004',
4129             'CPAN::FirstTime'       => '5.530001',
4130             'CPAN::Mirrors'         => '1.770001',
4131             'CPANPLUS'              => '0.90',
4132             'CPANPLUS::Internals'   => '0.90',
4133             'CPANPLUS::Shell::Default'=> '0.90',
4134             'Cwd'                   => '3.31',
4135             'Encode'                => '2.39',
4136             'ExtUtils::Command::MM' => '6.56',
4137             'ExtUtils::Liblist'     => '6.56',
4138             'ExtUtils::Liblist::Kid'=> '6.56',
4139             'ExtUtils::MM'          => '6.56',
4140             'ExtUtils::MM_AIX'      => '6.56',
4141             'ExtUtils::MM_Any'      => '6.56',
4142             'ExtUtils::MM_BeOS'     => '6.56',
4143             'ExtUtils::MM_Cygwin'   => '6.56',
4144             'ExtUtils::MM_DOS'      => '6.56',
4145             'ExtUtils::MM_Darwin'   => '6.56',
4146             'ExtUtils::MM_MacOS'    => '6.56',
4147             'ExtUtils::MM_NW5'      => '6.56',
4148             'ExtUtils::MM_OS2'      => '6.56',
4149             'ExtUtils::MM_QNX'      => '6.56',
4150             'ExtUtils::MM_UWIN'     => '6.56',
4151             'ExtUtils::MM_Unix'     => '6.56',
4152             'ExtUtils::MM_VMS'      => '6.56',
4153             'ExtUtils::MM_VOS'      => '6.56',
4154             'ExtUtils::MM_Win32'    => '6.56',
4155             'ExtUtils::MM_Win95'    => '6.56',
4156             'ExtUtils::MY'          => '6.56',
4157             'ExtUtils::MakeMaker'   => '6.56',
4158             'ExtUtils::MakeMaker::Config'=> '6.56',
4159             'ExtUtils::Mkbootstrap' => '6.56',
4160             'ExtUtils::Mksymlists'  => '6.56',
4161             'ExtUtils::testlib'     => '6.56',
4162             'File::Find'            => '1.15',
4163             'File::Path'            => '2.08_01',
4164             'File::Spec'            => '3.31',
4165             'Module::Build'         => '0.36',
4166             'Module::Build::Base'   => '0.36',
4167             'Module::Build::Compat' => '0.36',
4168             'Module::Build::Config' => '0.36',
4169             'Module::Build::Cookbook'=> '0.36',
4170             'Module::Build::Dumper' => '0.36',
4171             'Module::Build::ModuleInfo'=> '0.36',
4172             'Module::Build::Notes'  => '0.36',
4173             'Module::Build::PPMMaker'=> '0.36',
4174             'Module::Build::Platform::Amiga'=> '0.36',
4175             'Module::Build::Platform::Default'=> '0.36',
4176             'Module::Build::Platform::EBCDIC'=> '0.36',
4177             'Module::Build::Platform::MPEiX'=> '0.36',
4178             'Module::Build::Platform::MacOS'=> '0.36',
4179             'Module::Build::Platform::RiscOS'=> '0.36',
4180             'Module::Build::Platform::Unix'=> '0.36',
4181             'Module::Build::Platform::VMS'=> '0.36',
4182             'Module::Build::Platform::VOS'=> '0.36',
4183             'Module::Build::Platform::Windows'=> '0.36',
4184             'Module::Build::Platform::aix'=> '0.36',
4185             'Module::Build::Platform::cygwin'=> '0.36',
4186             'Module::Build::Platform::darwin'=> '0.36',
4187             'Module::Build::Platform::os2'=> '0.36',
4188             'Module::Build::PodParser'=> '0.36',
4189             'Module::CoreList'      => '2.24',
4190             'POSIX'                 => '1.19',
4191             'Pod::Simple'           => '3.13',
4192             'Pod::Simple::BlackBox' => '3.13',
4193             'Pod::Simple::Checker'  => '3.13',
4194             'Pod::Simple::Debug'    => '3.13',
4195             'Pod::Simple::DumpAsText'=> '3.13',
4196             'Pod::Simple::DumpAsXML'=> '3.13',
4197             'Pod::Simple::HTML'     => '3.13',
4198             'Pod::Simple::HTMLBatch'=> '3.13',
4199             'Pod::Simple::LinkSection'=> '3.13',
4200             'Pod::Simple::Methody'  => '3.13',
4201             'Pod::Simple::Progress' => '3.13',
4202             'Pod::Simple::PullParser'=> '3.13',
4203             'Pod::Simple::PullParserEndToken'=> '3.13',
4204             'Pod::Simple::PullParserStartToken'=> '3.13',
4205             'Pod::Simple::PullParserTextToken'=> '3.13',
4206             'Pod::Simple::PullParserToken'=> '3.13',
4207             'Pod::Simple::RTF'      => '3.13',
4208             'Pod::Simple::Search'   => '3.13',
4209             'Pod::Simple::SimpleTree'=> '3.13',
4210             'Pod::Simple::Text'     => '3.13',
4211             'Pod::Simple::TextContent'=> '3.13',
4212             'Pod::Simple::TiedOutFH'=> '3.13',
4213             'Pod::Simple::Transcode'=> '3.13',
4214             'Pod::Simple::TranscodeDumb'=> '3.13',
4215             'Pod::Simple::TranscodeSmart'=> '3.13',
4216             'Pod::Simple::XHTML'    => '3.13',
4217             'Pod::Simple::XMLOutStream'=> '3.13',
4218             'Safe'                  => '2.20',
4219             'Unicode'               => '5.2.0',
4220             'constant'              => '1.20',
4221             'diagnostics'           => '1.19',
4222             'feature'               => '1.14',
4223             'inc::latest'           => '0.36',
4224             'threads'               => '1.75',
4225             'warnings'              => '1.08',
4226         },
4227         removed => {
4228             'legacy'                => 1,
4229         }
4230     },
4231     5.011004 => {
4232         delta_from => 5.011003,
4233         changed => {
4234             'App::Cpan'             => '1.5701',
4235             'Archive::Extract'      => '0.38',
4236             'B::Deparse'            => '0.94',
4237             'CPAN'                  => '1.94_54',
4238             'CPAN::FirstTime'       => '5.53',
4239             'CPAN::Mirrors'         => '1.77',
4240             'Carp'                  => '1.15',
4241             'Carp::Heavy'           => '1.15',
4242             'Compress::Raw::Bzip2'  => '2.024',
4243             'Compress::Raw::Zlib'   => '2.024',
4244             'Compress::Zlib'        => '2.024',
4245             'File::Copy'            => '2.17',
4246             'File::Fetch'           => '0.24',
4247             'GDBM_File'             => '1.10',
4248             'IO::Compress::Adapter::Bzip2'=> '2.024',
4249             'IO::Compress::Adapter::Deflate'=> '2.024',
4250             'IO::Compress::Adapter::Identity'=> '2.024',
4251             'IO::Compress::Base'    => '2.024',
4252             'IO::Compress::Base::Common'=> '2.024',
4253             'IO::Compress::Bzip2'   => '2.024',
4254             'IO::Compress::Deflate' => '2.024',
4255             'IO::Compress::Gzip'    => '2.024',
4256             'IO::Compress::Gzip::Constants'=> '2.024',
4257             'IO::Compress::RawDeflate'=> '2.024',
4258             'IO::Compress::Zip'     => '2.024',
4259             'IO::Compress::Zip::Constants'=> '2.024',
4260             'IO::Compress::Zlib::Constants'=> '2.024',
4261             'IO::Compress::Zlib::Extra'=> '2.024',
4262             'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
4263             'IO::Uncompress::Adapter::Identity'=> '2.024',
4264             'IO::Uncompress::Adapter::Inflate'=> '2.024',
4265             'IO::Uncompress::AnyInflate'=> '2.024',
4266             'IO::Uncompress::AnyUncompress'=> '2.024',
4267             'IO::Uncompress::Base'  => '2.024',
4268             'IO::Uncompress::Bunzip2'=> '2.024',
4269             'IO::Uncompress::Gunzip'=> '2.024',
4270             'IO::Uncompress::Inflate'=> '2.024',
4271             'IO::Uncompress::RawInflate'=> '2.024',
4272             'IO::Uncompress::Unzip' => '2.024',
4273             'Module::Build'         => '0.3603',
4274             'Module::Build::Base'   => '0.3603',
4275             'Module::Build::Compat' => '0.3603',
4276             'Module::Build::Config' => '0.3603',
4277             'Module::Build::Cookbook'=> '0.3603',
4278             'Module::Build::Dumper' => '0.3603',
4279             'Module::Build::ModuleInfo'=> '0.3603',
4280             'Module::Build::Notes'  => '0.3603',
4281             'Module::Build::PPMMaker'=> '0.3603',
4282             'Module::Build::Platform::Amiga'=> '0.3603',
4283             'Module::Build::Platform::Default'=> '0.3603',
4284             'Module::Build::Platform::EBCDIC'=> '0.3603',
4285             'Module::Build::Platform::MPEiX'=> '0.3603',
4286             'Module::Build::Platform::MacOS'=> '0.3603',
4287             'Module::Build::Platform::RiscOS'=> '0.3603',
4288             'Module::Build::Platform::Unix'=> '0.3603',
4289             'Module::Build::Platform::VMS'=> '0.3603',
4290             'Module::Build::Platform::VOS'=> '0.3603',
4291             'Module::Build::Platform::Windows'=> '0.3603',
4292             'Module::Build::Platform::aix'=> '0.3603',
4293             'Module::Build::Platform::cygwin'=> '0.3603',
4294             'Module::Build::Platform::darwin'=> '0.3603',
4295             'Module::Build::Platform::os2'=> '0.3603',
4296             'Module::Build::PodParser'=> '0.3603',
4297             'Module::CoreList'      => '2.25',
4298             'PerlIO::encoding'      => '0.12',
4299             'Safe'                  => '2.21',
4300             'UNIVERSAL'             => '1.06',
4301             'feature'               => '1.15',
4302             'inc::latest'           => '0.3603',
4303             'less'                  => '0.03',
4304             're'                    => '0.11',
4305             'version'               => '0.81',
4306             'warnings'              => '1.09',
4307         },
4308         removed => {
4309         }
4310     },
4311     5.011005 => {
4312         delta_from => 5.011004,
4313         changed => {
4314             'B::Debug'              => '1.12',
4315             'CPAN'                  => '1.94_56',
4316             'CPAN::Debug'           => '5.5001',
4317             'CPAN::Distribution'    => '1.9456',
4318             'CPAN::FirstTime'       => '5.5301',
4319             'CPAN::HandleConfig'    => '5.5001',
4320             'CPAN::Shell'           => '5.5001',
4321             'CPAN::Tarzip'          => '5.5011',
4322             'CPANPLUS::Dist::Build' => '0.46',
4323             'CPANPLUS::Dist::Build::Constants'=> '0.46',
4324             'Module::CoreList'      => '2.26',
4325             'Pod::Man'              => '2.23',
4326             'Pod::ParseLink'        => '1.10',
4327             'Pod::Perldoc'          => '3.15_02',
4328             'Pod::Plainer'          => '1.02',
4329             'Pod::Text'             => '3.14',
4330             'Pod::Text::Color'      => '2.06',
4331             'Pod::Text::Overstrike' => '2.04',
4332             'Pod::Text::Termcap'    => '2.06',
4333             'Safe'                  => '2.22',
4334             'Socket'                => '1.86',
4335             'version'               => '0.82',
4336         },
4337         removed => {
4338         }
4339     },
4340     5.012 => {
4341         delta_from => 5.011005,
4342         changed => {
4343             'B::Deparse'            => '0.96',
4344             'CPAN::Distribution'    => '1.9456_01',
4345             'Module::CoreList'      => '2.29',
4346             'Safe'                  => '2.25',
4347             'Socket'                => '1.87',
4348             'Tie::Scalar'           => '1.02',
4349             'Time::Piece'           => '1.15_01',
4350             'bytes'                 => '1.04',
4351             'feature'               => '1.16',
4352             'utf8'                  => '1.08',
4353         },
4354         removed => {
4355         }
4356     },
4357     5.012001 => {
4358         delta_from => 5.012,
4359         changed => {
4360             'B::Deparse'            => '0.97',
4361             'CGI'                   => '3.49',
4362             'CGI::Fast'             => '1.08',
4363             'Carp'                  => '1.16',
4364             'Carp::Heavy'           => '1.16',
4365             'File::Copy'            => '2.18',
4366             'Module::CoreList'      => '2.32',
4367             'Pod::Functions'        => '1.04',
4368             'Pod::Simple'           => '3.14',
4369             'Pod::Simple::BlackBox' => '3.14',
4370             'Pod::Simple::Checker'  => '3.14',
4371             'Pod::Simple::Debug'    => '3.14',
4372             'Pod::Simple::DumpAsText'=> '3.14',
4373             'Pod::Simple::DumpAsXML'=> '3.14',
4374             'Pod::Simple::HTML'     => '3.14',
4375             'Pod::Simple::HTMLBatch'=> '3.14',
4376             'Pod::Simple::LinkSection'=> '3.14',
4377             'Pod::Simple::Methody'  => '3.14',
4378             'Pod::Simple::Progress' => '3.14',
4379             'Pod::Simple::PullParser'=> '3.14',
4380             'Pod::Simple::PullParserEndToken'=> '3.14',
4381             'Pod::Simple::PullParserStartToken'=> '3.14',
4382             'Pod::Simple::PullParserTextToken'=> '3.14',
4383             'Pod::Simple::PullParserToken'=> '3.14',
4384             'Pod::Simple::RTF'      => '3.14',
4385             'Pod::Simple::Search'   => '3.14',
4386             'Pod::Simple::SimpleTree'=> '3.14',
4387             'Pod::Simple::Text'     => '3.14',
4388             'Pod::Simple::TextContent'=> '3.14',
4389             'Pod::Simple::TiedOutFH'=> '3.14',
4390             'Pod::Simple::Transcode'=> '3.14',
4391             'Pod::Simple::TranscodeDumb'=> '3.14',
4392             'Pod::Simple::TranscodeSmart'=> '3.14',
4393             'Pod::Simple::XHTML'    => '3.14',
4394             'Pod::Simple::XMLOutStream'=> '3.14',
4395             'Safe'                  => '2.27',
4396         },
4397         removed => {
4398         }
4399     },
4400     5.012002 => {
4401         delta_from => 5.012001,
4402         changed => {
4403             'Carp'                  => '1.17',
4404             'Carp::Heavy'           => '1.17',
4405             'File::Spec'            => '3.31_01',
4406             'Module::CoreList'      => '2.38',
4407             'Module::Load::Conditional'=> '0.38',
4408             'PerlIO::scalar'        => '0.08',
4409         },
4410         removed => {
4411         }
4412     },
4413     5.012003 => {
4414         delta_from => 5.012002,
4415         changed => {
4416             'B::Deparse'            => '0.9701',
4417             'Module::Build::Platform::cygwin'=> '0.360301',
4418             'Module::CoreList'      => '2.43',
4419             'Socket'                => '1.87_01',
4420         },
4421         removed => {
4422         }
4423     },
4424     5.012004 => {
4425         delta_from => 5.012003,
4426         changed => {
4427             'Module::CoreList'      => '2.50',
4428         },
4429         removed => {
4430         }
4431     },
4432     5.012005 => {
4433         delta_from => 5.012004,
4434         changed => {
4435             'B::Concise'            => '0.78_01',
4436             'Encode'                => '2.39_01',
4437             'File::Glob'            => '1.07_01',
4438             'Module::CoreList'      => '2.50_02',
4439             'Unicode::UCD'          => '0.29',
4440             'charnames'             => '1.07_01',
4441         },
4442         removed => {
4443         }
4444     },
4445     5.013 => {
4446         delta_from => 5.012,
4447         changed => {
4448             'CGI'                   => '3.49',
4449             'CGI::Fast'             => '1.08',
4450             'Data::Dumper'          => '2.126',
4451             'ExtUtils::MM_Unix'     => '6.5601',
4452             'ExtUtils::MakeMaker'   => '6.5601',
4453             'File::Copy'            => '2.18',
4454             'IPC::Open3'            => '1.06',
4455             'MIME::Base64'          => '3.09',
4456             'MIME::QuotedPrint'     => '3.09',
4457             'Module::CoreList'      => '2.31',
4458             'Pod::Functions'        => '1.04',
4459             'XS::APItest'           => '0.18',
4460             'XS::APItest::KeywordRPN'=> '0.004',
4461             'feature'               => '1.17',
4462             'threads'               => '1.77_01',
4463             'threads::shared'       => '1.33',
4464         },
4465         removed => {
4466         }
4467     },
4468     5.013001 => {
4469         delta_from => 5.012001,
4470         changed => {
4471             'Data::Dumper'          => '2.126',
4472             'Dumpvalue'             => '1.14',
4473             'Errno'                 => '1.12',
4474             'ExtUtils::MM_Unix'     => '6.5601',
4475             'ExtUtils::MakeMaker'   => '6.5601',
4476             'ExtUtils::ParseXS'     => '2.2205',
4477             'File::Find'            => '1.16',
4478             'IPC::Cmd'              => '0.58',
4479             'IPC::Open3'            => '1.06',
4480             'List::Util'            => '1.23',
4481             'List::Util::PP'        => '1.23',
4482             'List::Util::XS'        => '1.23',
4483             'Locale::Codes'         => '3.12',
4484             'Locale::Codes::Country'=> '3.12',
4485             'Locale::Codes::Currency'=> '3.12',
4486             'Locale::Codes::Language'=> '3.12',
4487             'Locale::Codes::Script' => '3.12',
4488             'Locale::Constants'     => '3.12',
4489             'Locale::Country'       => '3.12',
4490             'Locale::Currency'      => '3.12',
4491             'Locale::Language'      => '3.12',
4492             'Locale::Script'        => '3.12',
4493             'MIME::Base64'          => '3.09',
4494             'MIME::QuotedPrint'     => '3.09',
4495             'Module::Build::Platform::cygwin'=> '0.360301',
4496             'Module::CoreList'      => '2.34',
4497             'Module::Load::Conditional'=> '0.38',
4498             'PerlIO::scalar'        => '0.08',
4499             'Scalar::Util'          => '1.23',
4500             'Scalar::Util::PP'      => '1.23',
4501             'Socket'                => '1.88',
4502             'Term::ReadLine'        => '1.06',
4503             'Unicode::UCD'          => '0.28',
4504             'XS::APItest'           => '0.19',
4505             'XS::APItest::KeywordRPN'=> '0.004',
4506             'charnames'             => '1.08',
4507             'feature'               => '1.17',
4508             'threads'               => '1.77_01',
4509             'threads::shared'       => '1.33',
4510         },
4511         removed => {
4512             'Class::ISA'            => 1,
4513             'Pod::Plainer'          => 1,
4514             'Switch'                => 1,
4515         }
4516     },
4517     5.013002 => {
4518         delta_from => 5.013001,
4519         changed => {
4520             'B::Concise'            => '0.79',
4521             'B::Deparse'            => '0.98',
4522             'CPAN'                  => '1.94_57',
4523             'CPAN::Distribution'    => '1.9600',
4524             'Exporter'              => '5.64_02',
4525             'Exporter::Heavy'       => '5.64_02',
4526             'File::Copy'            => '2.19',
4527             'Hash::Util'            => '0.08',
4528             'IO::Socket'            => '1.32',
4529             'Locale::Codes'         => '3.13',
4530             'Locale::Codes::Country'=> '3.13',
4531             'Locale::Codes::Currency'=> '3.13',
4532             'Locale::Codes::Language'=> '3.13',
4533             'Locale::Codes::Script' => '3.13',
4534             'Locale::Constants'     => '3.13',
4535             'Locale::Country'       => '3.13',
4536             'Locale::Currency'      => '3.13',
4537             'Locale::Language'      => '3.13',
4538             'Locale::Script'        => '3.13',
4539             'Search::Dict'          => '1.03',
4540             'Socket'                => '1.89',
4541             'Thread::Semaphore'     => '2.11',
4542             'UNIVERSAL'             => '1.07',
4543             'VMS::DCLsym'           => '1.04',
4544             'mro'                   => '1.03',
4545             'threads'               => '1.77_02',
4546             'threads::shared'       => '1.33_01',
4547         },
4548         removed => {
4549         }
4550     },
4551     5.013003 => {
4552         delta_from => 5.013002,
4553         changed => {
4554             'App::Prove'            => '3.21',
4555             'App::Prove::State'     => '3.21',
4556             'App::Prove::State::Result'=> '3.21',
4557             'App::Prove::State::Result::Test'=> '3.21',
4558             'Archive::Extract'      => '0.42',
4559             'Archive::Tar'          => '1.64',
4560             'Archive::Tar::Constant'=> '1.64',
4561             'Archive::Tar::File'    => '1.64',
4562             'Attribute::Handlers'   => '0.88',
4563             'CPANPLUS'              => '0.9007',
4564             'CPANPLUS::Internals'   => '0.9007',
4565             'CPANPLUS::Shell::Default'=> '0.9007',
4566             'Compress::Raw::Bzip2'  => '2.027',
4567             'Compress::Raw::Zlib'   => '2.027_01',
4568             'Compress::Zlib'        => '2.027',
4569             'DB'                    => '1.03',
4570             'Digest::MD5'           => '2.40',
4571             'Digest::SHA'           => '5.48',
4572             'Exporter'              => '5.64_03',
4573             'Exporter::Heavy'       => '5.64_03',
4574             'ExtUtils::CBuilder'    => '0.2703',
4575             'ExtUtils::CBuilder::Base'=> '0.2703_01',
4576             'ExtUtils::CBuilder::Platform::Unix'=> '0.2703',
4577             'ExtUtils::CBuilder::Platform::VMS'=> '0.2703',
4578             'ExtUtils::CBuilder::Platform::Windows'=> '0.2703',
4579             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703',
4580             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703',
4581             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703',
4582             'ExtUtils::CBuilder::Platform::aix'=> '0.2703',
4583             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703',
4584             'ExtUtils::CBuilder::Platform::darwin'=> '0.2703',
4585             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703',
4586             'ExtUtils::CBuilder::Platform::os2'=> '0.2703',
4587             'ExtUtils::Manifest'    => '1.58',
4588             'ExtUtils::ParseXS'     => '2.2206',
4589             'Fatal'                 => '2.10',
4590             'File::Basename'        => '2.79',
4591             'File::Copy'            => '2.20',
4592             'File::DosGlob'         => '1.02',
4593             'File::Find'            => '1.17',
4594             'File::Glob'            => '1.08',
4595             'File::stat'            => '1.03',
4596             'I18N::LangTags'        => '0.35_01',
4597             'I18N::LangTags::List'  => '0.35_01',
4598             'IO::Compress::Adapter::Bzip2'=> '2.027',
4599             'IO::Compress::Adapter::Deflate'=> '2.027',
4600             'IO::Compress::Adapter::Identity'=> '2.027',
4601             'IO::Compress::Base'    => '2.027',
4602             'IO::Compress::Base::Common'=> '2.027',
4603             'IO::Compress::Bzip2'   => '2.027',
4604             'IO::Compress::Deflate' => '2.027',
4605             'IO::Compress::Gzip'    => '2.027',
4606             'IO::Compress::Gzip::Constants'=> '2.027',
4607             'IO::Compress::RawDeflate'=> '2.027',
4608             'IO::Compress::Zip'     => '2.027',
4609             'IO::Compress::Zip::Constants'=> '2.027',
4610             'IO::Compress::Zlib::Constants'=> '2.027',
4611             'IO::Compress::Zlib::Extra'=> '2.027',
4612             'IO::Uncompress::Adapter::Bunzip2'=> '2.027',
4613             'IO::Uncompress::Adapter::Identity'=> '2.027',
4614             'IO::Uncompress::Adapter::Inflate'=> '2.027',
4615             'IO::Uncompress::AnyInflate'=> '2.027',
4616             'IO::Uncompress::AnyUncompress'=> '2.027',
4617             'IO::Uncompress::Base'  => '2.027',
4618             'IO::Uncompress::Bunzip2'=> '2.027',
4619             'IO::Uncompress::Gunzip'=> '2.027',
4620             'IO::Uncompress::Inflate'=> '2.027',
4621             'IO::Uncompress::RawInflate'=> '2.027',
4622             'IO::Uncompress::Unzip' => '2.027',
4623             'IPC::Cmd'              => '0.60',
4624             'IPC::Msg'              => '2.03',
4625             'IPC::Semaphore'        => '2.03',
4626             'IPC::SharedMem'        => '2.03',
4627             'IPC::SysV'             => '2.03',
4628             'Locale::Maketext'      => '1.15',
4629             'Locale::Maketext::Guts'=> undef,
4630             'Locale::Maketext::GutsLoader'=> undef,
4631             'Module::Build'         => '0.3607',
4632             'Module::Build::Base'   => '0.3607',
4633             'Module::Build::Compat' => '0.3607',
4634             'Module::Build::Config' => '0.3607',
4635             'Module::Build::Cookbook'=> '0.3607',
4636             'Module::Build::Dumper' => '0.3607',
4637             'Module::Build::ModuleInfo'=> '0.3607',
4638             'Module::Build::Notes'  => '0.3607',
4639             'Module::Build::PPMMaker'=> '0.3607',
4640             'Module::Build::Platform::Amiga'=> '0.3607',
4641             'Module::Build::Platform::Default'=> '0.3607',
4642             'Module::Build::Platform::EBCDIC'=> '0.3607',
4643             'Module::Build::Platform::MPEiX'=> '0.3607',
4644             'Module::Build::Platform::MacOS'=> '0.3607',
4645             'Module::Build::Platform::RiscOS'=> '0.3607',
4646             'Module::Build::Platform::Unix'=> '0.3607',
4647             'Module::Build::Platform::VMS'=> '0.3607',
4648             'Module::Build::Platform::VOS'=> '0.3607',
4649             'Module::Build::Platform::Windows'=> '0.3607',
4650             'Module::Build::Platform::aix'=> '0.3607',
4651             'Module::Build::Platform::cygwin'=> '0.3607',
4652             'Module::Build::Platform::darwin'=> '0.3607',
4653             'Module::Build::Platform::os2'=> '0.3607',
4654             'Module::Build::PodParser'=> '0.3607',
4655             'Module::CoreList'      => '2.36',
4656             'Module::Load'          => '0.18',
4657             'TAP::Base'             => '3.21',
4658             'TAP::Formatter::Base'  => '3.21',
4659             'TAP::Formatter::Color' => '3.21',
4660             'TAP::Formatter::Console'=> '3.21',
4661             'TAP::Formatter::Console::ParallelSession'=> '3.21',
4662             'TAP::Formatter::Console::Session'=> '3.21',
4663             'TAP::Formatter::File'  => '3.21',
4664             'TAP::Formatter::File::Session'=> '3.21',
4665             'TAP::Formatter::Session'=> '3.21',
4666             'TAP::Harness'          => '3.21',
4667             'TAP::Object'           => '3.21',
4668             'TAP::Parser'           => '3.21',
4669             'TAP::Parser::Aggregator'=> '3.21',
4670             'TAP::Parser::Grammar'  => '3.21',
4671             'TAP::Parser::Iterator' => '3.21',
4672             'TAP::Parser::Iterator::Array'=> '3.21',
4673             'TAP::Parser::Iterator::Process'=> '3.21',
4674             'TAP::Parser::Iterator::Stream'=> '3.21',
4675             'TAP::Parser::IteratorFactory'=> '3.21',
4676             'TAP::Parser::Multiplexer'=> '3.21',
4677             'TAP::Parser::Result'   => '3.21',
4678             'TAP::Parser::Result::Bailout'=> '3.21',
4679             'TAP::Parser::Result::Comment'=> '3.21',
4680             'TAP::Parser::Result::Plan'=> '3.21',
4681             'TAP::Parser::Result::Pragma'=> '3.21',
4682             'TAP::Parser::Result::Test'=> '3.21',
4683             'TAP::Parser::Result::Unknown'=> '3.21',
4684             'TAP::Parser::Result::Version'=> '3.21',
4685             'TAP::Parser::Result::YAML'=> '3.21',
4686             'TAP::Parser::ResultFactory'=> '3.21',
4687             'TAP::Parser::Scheduler'=> '3.21',
4688             'TAP::Parser::Scheduler::Job'=> '3.21',
4689             'TAP::Parser::Scheduler::Spinner'=> '3.21',
4690             'TAP::Parser::Source'   => '3.21',
4691             'TAP::Parser::SourceHandler'=> '3.21',
4692             'TAP::Parser::SourceHandler::Executable'=> '3.21',
4693             'TAP::Parser::SourceHandler::File'=> '3.21',
4694             'TAP::Parser::SourceHandler::Handle'=> '3.21',
4695             'TAP::Parser::SourceHandler::Perl'=> '3.21',
4696             'TAP::Parser::SourceHandler::RawTAP'=> '3.21',
4697             'TAP::Parser::SourceHandler::pgTAP'=> '3.21',
4698             'TAP::Parser::Utils'    => '3.21',
4699             'TAP::Parser::YAMLish::Reader'=> '3.21',
4700             'TAP::Parser::YAMLish::Writer'=> '3.21',
4701             'Term::ANSIColor'       => '3.00',
4702             'Term::ReadLine'        => '1.07',
4703             'Test::Harness'         => '3.21',
4704             'Tie::Array'            => '1.04',
4705             'Time::HiRes'           => '1.9721',
4706             'Time::Piece'           => '1.20_01',
4707             'Unicode::Collate'      => '0.53',
4708             'Unicode::Normalize'    => '1.06',
4709             'Unicode::UCD'          => '0.29',
4710             'autodie'               => '2.10',
4711             'autodie::exception'    => '2.10',
4712             'autodie::exception::system'=> '2.10',
4713             'autodie::hints'        => '2.10',
4714             'blib'                  => '1.05',
4715             'charnames'             => '1.11',
4716             'diagnostics'           => '1.20',
4717             'inc::latest'           => '0.3607',
4718             'lib'                   => '0.63',
4719             're'                    => '0.12',
4720             'threads'               => '1.77_03',
4721             'threads::shared'       => '1.33_02',
4722             'vars'                  => '1.02',
4723             'warnings'              => '1.10',
4724         },
4725         removed => {
4726             'TAP::Parser::Source::Perl'=> 1,
4727         }
4728     },
4729     5.013004 => {
4730         delta_from => 5.013003,
4731         changed => {
4732             'App::Prove'            => '3.22',
4733             'App::Prove::State'     => '3.22',
4734             'App::Prove::State::Result'=> '3.22',
4735             'App::Prove::State::Result::Test'=> '3.22',
4736             'Archive::Tar'          => '1.68',
4737             'Archive::Tar::Constant'=> '1.68',
4738             'Archive::Tar::File'    => '1.68',
4739             'B::Lint'               => '1.12',
4740             'B::Lint::Debug'        => '1.12',
4741             'Carp'                  => '1.18',
4742             'Carp::Heavy'           => '1.18',
4743             'Compress::Raw::Bzip2'  => '2.030',
4744             'Compress::Raw::Zlib'   => '2.030',
4745             'Compress::Zlib'        => '2.030',
4746             'ExtUtils::ParseXS'     => '2.2207',
4747             'File::Spec'            => '3.31_01',
4748             'I18N::Langinfo'        => '0.04',
4749             'IO::Compress::Adapter::Bzip2'=> '2.030',
4750             'IO::Compress::Adapter::Deflate'=> '2.030',
4751             'IO::Compress::Adapter::Identity'=> '2.030',
4752             'IO::Compress::Base'    => '2.030',
4753             'IO::Compress::Base::Common'=> '2.030',
4754             'IO::Compress::Bzip2'   => '2.030',
4755             'IO::Compress::Deflate' => '2.030',
4756             'IO::Compress::Gzip'    => '2.030',
4757             'IO::Compress::Gzip::Constants'=> '2.030',
4758             'IO::Compress::RawDeflate'=> '2.030',
4759             'IO::Compress::Zip'     => '2.030',
4760             'IO::Compress::Zip::Constants'=> '2.030',
4761             'IO::Compress::Zlib::Constants'=> '2.030',
4762             'IO::Compress::Zlib::Extra'=> '2.030',
4763             'IO::Uncompress::Adapter::Bunzip2'=> '2.030',
4764             'IO::Uncompress::Adapter::Identity'=> '2.030',
4765             'IO::Uncompress::Adapter::Inflate'=> '2.030',
4766             'IO::Uncompress::AnyInflate'=> '2.030',
4767             'IO::Uncompress::AnyUncompress'=> '2.030',
4768             'IO::Uncompress::Base'  => '2.030',
4769             'IO::Uncompress::Bunzip2'=> '2.030',
4770             'IO::Uncompress::Gunzip'=> '2.030',
4771             'IO::Uncompress::Inflate'=> '2.030',
4772             'IO::Uncompress::RawInflate'=> '2.030',
4773             'IO::Uncompress::Unzip' => '2.030',
4774             'Module::CoreList'      => '2.37',
4775             'TAP::Base'             => '3.22',
4776             'TAP::Formatter::Base'  => '3.22',
4777             'TAP::Formatter::Color' => '3.22',
4778             'TAP::Formatter::Console'=> '3.22',
4779             'TAP::Formatter::Console::ParallelSession'=> '3.22',
4780             'TAP::Formatter::Console::Session'=> '3.22',
4781             'TAP::Formatter::File'  => '3.22',
4782             'TAP::Formatter::File::Session'=> '3.22',
4783             'TAP::Formatter::Session'=> '3.22',
4784             'TAP::Harness'          => '3.22',
4785             'TAP::Object'           => '3.22',
4786             'TAP::Parser'           => '3.22',
4787             'TAP::Parser::Aggregator'=> '3.22',
4788             'TAP::Parser::Grammar'  => '3.22',
4789             'TAP::Parser::Iterator' => '3.22',
4790             'TAP::Parser::Iterator::Array'=> '3.22',
4791             'TAP::Parser::Iterator::Process'=> '3.22',
4792             'TAP::Parser::Iterator::Stream'=> '3.22',
4793             'TAP::Parser::IteratorFactory'=> '3.22',
4794             'TAP::Parser::Multiplexer'=> '3.22',
4795             'TAP::Parser::Result'   => '3.22',
4796             'TAP::Parser::Result::Bailout'=> '3.22',
4797             'TAP::Parser::Result::Comment'=> '3.22',
4798             'TAP::Parser::Result::Plan'=> '3.22',
4799             'TAP::Parser::Result::Pragma'=> '3.22',
4800             'TAP::Parser::Result::Test'=> '3.22',
4801             'TAP::Parser::Result::Unknown'=> '3.22',
4802             'TAP::Parser::Result::Version'=> '3.22',
4803             'TAP::Parser::Result::YAML'=> '3.22',
4804             'TAP::Parser::ResultFactory'=> '3.22',
4805             'TAP::Parser::Scheduler'=> '3.22',
4806             'TAP::Parser::Scheduler::Job'=> '3.22',
4807             'TAP::Parser::Scheduler::Spinner'=> '3.22',
4808             'TAP::Parser::Source'   => '3.22',
4809             'TAP::Parser::SourceHandler'=> '3.22',
4810             'TAP::Parser::SourceHandler::Executable'=> '3.22',
4811             'TAP::Parser::SourceHandler::File'=> '3.22',
4812             'TAP::Parser::SourceHandler::Handle'=> '3.22',
4813             'TAP::Parser::SourceHandler::Perl'=> '3.22',
4814             'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
4815             'TAP::Parser::Utils'    => '3.22',
4816             'TAP::Parser::YAMLish::Reader'=> '3.22',
4817             'TAP::Parser::YAMLish::Writer'=> '3.22',
4818             'Test::Builder'         => '0.96',
4819             'Test::Builder::Module' => '0.96',
4820             'Test::Builder::Tester' => '1.20',
4821             'Test::Builder::Tester::Color'=> '1.20',
4822             'Test::Harness'         => '3.22',
4823             'Test::More'            => '0.96',
4824             'Test::Simple'          => '0.96',
4825             'Unicode::Collate'      => '0.56',
4826             'Unicode::Collate::Locale'=> '0.56',
4827             'XS::APItest'           => '0.20',
4828             'charnames'             => '1.15',
4829             'feature'               => '1.18',
4830         },
4831         removed => {
4832             'TAP::Parser::SourceHandler::pgTAP'=> 1,
4833         }
4834     },
4835     5.013005 => {
4836         delta_from => 5.013004,
4837         changed => {
4838             'B::Debug'              => '1.16',
4839             'CPANPLUS::Dist::Build' => '0.48',
4840             'CPANPLUS::Dist::Build::Constants'=> '0.48',
4841             'Data::Dumper'          => '2.128',
4842             'Encode'                => '2.40',
4843             'Encode::Guess'         => '2.04',
4844             'Encode::MIME::Header'  => '2.12',
4845             'Encode::Unicode::UTF7' => '2.05',
4846             'Errno'                 => '1.13',
4847             'ExtUtils::Command::MM' => '6.57_05',
4848             'ExtUtils::Liblist'     => '6.57_05',
4849             'ExtUtils::Liblist::Kid'=> '6.5705',
4850             'ExtUtils::MM'          => '6.57_05',
4851             'ExtUtils::MM_AIX'      => '6.57_05',
4852             'ExtUtils::MM_Any'      => '6.57_05',
4853             'ExtUtils::MM_BeOS'     => '6.57_05',
4854             'ExtUtils::MM_Cygwin'   => '6.57_05',
4855             'ExtUtils::MM_DOS'      => '6.5705',
4856             'ExtUtils::MM_Darwin'   => '6.57_05',
4857             'ExtUtils::MM_MacOS'    => '6.5705',
4858             'ExtUtils::MM_NW5'      => '6.57_05',
4859             'ExtUtils::MM_OS2'      => '6.57_05',
4860             'ExtUtils::MM_QNX'      => '6.57_05',
4861             'ExtUtils::MM_UWIN'     => '6.5705',
4862             'ExtUtils::MM_Unix'     => '6.57_05',
4863             'ExtUtils::MM_VMS'      => '6.57_05',
4864             'ExtUtils::MM_VOS'      => '6.57_05',
4865             'ExtUtils::MM_Win32'    => '6.57_05',
4866             'ExtUtils::MM_Win95'    => '6.57_05',
4867             'ExtUtils::MY'          => '6.5705',
4868             'ExtUtils::MakeMaker'   => '6.57_05',
4869             'ExtUtils::MakeMaker::Config'=> '6.57_05',
4870             'ExtUtils::MakeMaker::YAML'=> '1.44',
4871             'ExtUtils::Mkbootstrap' => '6.57_05',
4872             'ExtUtils::Mksymlists'  => '6.57_05',
4873             'ExtUtils::testlib'     => '6.5705',
4874             'Filter::Simple'        => '0.85',
4875             'Hash::Util'            => '0.09',
4876             'Math::BigFloat'        => '1.62',
4877             'Math::BigInt'          => '1.95',
4878             'Math::BigInt::Calc'    => '0.54',
4879             'Math::BigInt::CalcEmu' => '0.06',
4880             'Math::BigInt::FastCalc'=> '0.22',
4881             'Math::BigRat'          => '0.26',
4882             'Module::CoreList'      => '2.39',
4883             'POSIX'                 => '1.20',
4884             'PerlIO::scalar'        => '0.09',
4885             'Safe'                  => '2.28',
4886             'Test::Builder'         => '0.97_01',
4887             'Test::Builder::Module' => '0.97_01',
4888             'Test::Builder::Tester' => '1.21_01',
4889             'Test::Builder::Tester::Color'=> '1.21_01',
4890             'Test::More'            => '0.97_01',
4891             'Test::Simple'          => '0.97_01',
4892             'Tie::Hash'             => '1.04',
4893             'Unicode::Collate'      => '0.59',
4894             'Unicode::Collate::Locale'=> '0.59',
4895             'XS::APItest'           => '0.21',
4896             'XS::APItest::KeywordRPN'=> '0.005',
4897             'XSLoader'              => '0.11',
4898             'bigint'                => '0.25',
4899             'bignum'                => '0.25',
4900             'bigrat'                => '0.25',
4901             'blib'                  => '1.06',
4902             'open'                  => '1.08',
4903             'threads::shared'       => '1.33_03',
4904             'warnings'              => '1.11',
4905             'warnings::register'    => '1.02',
4906         },
4907         removed => {
4908         }
4909     },
4910     5.013006 => {
4911         delta_from => 5.013005,
4912         changed => {
4913             'Archive::Extract'      => '0.44',
4914             'B'                     => '1.24',
4915             'B::Deparse'            => '0.99',
4916             'CPAN'                  => '1.94_61',
4917             'CPAN::FTP'             => '5.5005',
4918             'CPAN::Queue'           => '5.5001',
4919             'CPAN::Version'         => '5.5001',
4920             'Carp'                  => '1.19',
4921             'Carp::Heavy'           => '1.19',
4922             'Compress::Raw::Bzip2'  => '2.031',
4923             'Cwd'                   => '3.34',
4924             'Data::Dumper'          => '2.129',
4925             'Devel::Peek'           => '1.05',
4926             'Digest::MD5'           => '2.51',
4927             'ExtUtils::Constant::Base'=> '0.05',
4928             'ExtUtils::Constant::ProxySubs'=> '0.07',
4929             'ExtUtils::Embed'       => '1.29',
4930             'ExtUtils::XSSymSet'    => '1.2',
4931             'Fcntl'                 => '1.09',
4932             'File::DosGlob'         => '1.03',
4933             'File::Find'            => '1.18',
4934             'File::Glob'            => '1.09',
4935             'File::Spec'            => '3.33',
4936             'File::Spec::Cygwin'    => '3.33',
4937             'File::Spec::Epoc'      => '3.33',
4938             'File::Spec::Functions' => '3.33',
4939             'File::Spec::Mac'       => '3.33',
4940             'File::Spec::OS2'       => '3.33',
4941             'File::Spec::Unix'      => '3.33',
4942             'File::Spec::VMS'       => '3.33',
4943             'File::Spec::Win32'     => '3.33',
4944             'GDBM_File'             => '1.11',
4945             'Hash::Util::FieldHash' => '1.05',
4946             'I18N::Langinfo'        => '0.06',
4947             'IPC::Cmd'              => '0.64',
4948             'IPC::Open3'            => '1.07',
4949             'Locale::Codes'         => '3.14',
4950             'Locale::Codes::Country'=> '3.14',
4951             'Locale::Codes::Currency'=> '3.14',
4952             'Locale::Codes::Language'=> '3.14',
4953             'Locale::Codes::Script' => '3.14',
4954             'Locale::Constants'     => '3.14',
4955             'Locale::Country'       => '3.14',
4956             'Locale::Currency'      => '3.14',
4957             'Locale::Language'      => '3.14',
4958             'Locale::Maketext'      => '1.16',
4959             'Locale::Script'        => '3.14',
4960             'Math::BigFloat'        => '1.63',
4961             'Math::BigInt'          => '1.97',
4962             'Math::BigInt::Calc'    => '0.55',
4963             'Math::BigInt::CalcEmu' => '0.07',
4964             'Module::CoreList'      => '2.40',
4965             'NDBM_File'             => '1.09',
4966             'NEXT'                  => '0.65',
4967             'ODBM_File'             => '1.08',
4968             'Opcode'                => '1.16',
4969             'POSIX'                 => '1.21',
4970             'PerlIO::encoding'      => '0.13',
4971             'PerlIO::scalar'        => '0.10',
4972             'PerlIO::via'           => '0.10',
4973             'Pod::Man'              => '2.25',
4974             'Pod::Text'             => '3.15',
4975             'SDBM_File'             => '1.07',
4976             'Socket'                => '1.90',
4977             'Sys::Hostname'         => '1.13',
4978             'Tie::Hash::NamedCapture'=> '0.07',
4979             'Unicode::Collate'      => '0.63',
4980             'Unicode::Collate::Locale'=> '0.63',
4981             'Unicode::Normalize'    => '1.07',
4982             'XS::APItest'           => '0.23',
4983             'XSLoader'              => '0.13',
4984             'attributes'            => '0.13',
4985             'charnames'             => '1.16',
4986             'if'                    => '0.06',
4987             'mro'                   => '1.04',
4988             'overload'              => '1.11',
4989             're'                    => '0.13',
4990             'sigtrap'               => '1.05',
4991             'threads'               => '1.81_01',
4992             'threads::shared'       => '1.34',
4993         },
4994         removed => {
4995             'XS::APItest::KeywordRPN'=> 1,
4996         }
4997     },
4998     5.013007 => {
4999         delta_from => 5.013006,
5000         changed => {
5001             'Archive::Extract'      => '0.46',
5002             'Archive::Tar'          => '1.72',
5003             'Archive::Tar::Constant'=> '1.72',
5004             'Archive::Tar::File'    => '1.72',
5005             'AutoLoader'            => '5.71',
5006             'B'                     => '1.26',
5007             'B::Concise'            => '0.81',
5008             'B::Deparse'            => '1.01',
5009             'CGI'                   => '3.50',
5010             'CPAN'                  => '1.94_62',
5011             'CPANPLUS'              => '0.9010',
5012             'CPANPLUS::Dist::Build' => '0.50',
5013             'CPANPLUS::Dist::Build::Constants'=> '0.50',
5014             'CPANPLUS::Internals'   => '0.9010',
5015             'CPANPLUS::Shell::Default'=> '0.9010',
5016             'Data::Dumper'          => '2.130_01',
5017             'DynaLoader'            => '1.11',
5018             'ExtUtils::Constant'    => '0.23',
5019             'ExtUtils::Constant::ProxySubs'=> '0.08',
5020             'Fcntl'                 => '1.10',
5021             'File::Fetch'           => '0.28',
5022             'File::Glob'            => '1.10',
5023             'File::stat'            => '1.04',
5024             'GDBM_File'             => '1.12',
5025             'Hash::Util'            => '0.10',
5026             'Hash::Util::FieldHash' => '1.06',
5027             'I18N::Langinfo'        => '0.07',
5028             'Locale::Maketext'      => '1.17',
5029             'Locale::Maketext::Guts'=> '1.17',
5030             'Locale::Maketext::GutsLoader'=> '1.17',
5031             'MIME::Base64'          => '3.10',
5032             'MIME::QuotedPrint'     => '3.10',
5033             'Math::BigFloat'        => '1.99_01',
5034             'Math::BigInt'          => '1.99_01',
5035             'Math::BigInt::Calc'    => '1.99_01',
5036             'Math::BigInt::CalcEmu' => '1.99_01',
5037             'Math::BigInt::FastCalc'=> '0.24_01',
5038             'Math::BigRat'          => '0.26_01',
5039             'Module::CoreList'      => '2.41',
5040             'NDBM_File'             => '1.10',
5041             'ODBM_File'             => '1.09',
5042             'Opcode'                => '1.17',
5043             'POSIX'                 => '1.22',
5044             'Pod::Simple'           => '3.15',
5045             'Pod::Simple::BlackBox' => '3.15',
5046             'Pod::Simple::Checker'  => '3.15',
5047             'Pod::Simple::Debug'    => '3.15',
5048             'Pod::Simple::DumpAsText'=> '3.15',
5049             'Pod::Simple::DumpAsXML'=> '3.15',
5050             'Pod::Simple::HTML'     => '3.15',
5051             'Pod::Simple::HTMLBatch'=> '3.15',
5052             'Pod::Simple::LinkSection'=> '3.15',
5053             'Pod::Simple::Methody'  => '3.15',
5054             'Pod::Simple::Progress' => '3.15',
5055             'Pod::Simple::PullParser'=> '3.15',
5056             'Pod::Simple::PullParserEndToken'=> '3.15',
5057             'Pod::Simple::PullParserStartToken'=> '3.15',
5058             'Pod::Simple::PullParserTextToken'=> '3.15',
5059             'Pod::Simple::PullParserToken'=> '3.15',
5060             'Pod::Simple::RTF'      => '3.15',
5061             'Pod::Simple::Search'   => '3.15',
5062             'Pod::Simple::SimpleTree'=> '3.15',
5063             'Pod::Simple::Text'     => '3.15',
5064             'Pod::Simple::TextContent'=> '3.15',
5065             'Pod::Simple::TiedOutFH'=> '3.15',
5066             'Pod::Simple::Transcode'=> '3.15',
5067             'Pod::Simple::TranscodeDumb'=> '3.15',
5068             'Pod::Simple::TranscodeSmart'=> '3.15',
5069             'Pod::Simple::XHTML'    => '3.15',
5070             'Pod::Simple::XMLOutStream'=> '3.15',
5071             'SDBM_File'             => '1.08',
5072             'Safe'                  => '2.29',
5073             'SelfLoader'            => '1.18',
5074             'Socket'                => '1.91',
5075             'Storable'              => '2.24',
5076             'Sys::Hostname'         => '1.14',
5077             'Unicode'               => '6.0.0',
5078             'Unicode::Collate'      => '0.67',
5079             'Unicode::Collate::CJK::Big5'=> '0.65',
5080             'Unicode::Collate::CJK::GB2312'=> '0.65',
5081             'Unicode::Collate::CJK::JISX0208'=> '0.64',
5082             'Unicode::Collate::CJK::Korean'=> '0.66',
5083             'Unicode::Collate::CJK::Pinyin'=> '0.65',
5084             'Unicode::Collate::CJK::Stroke'=> '0.65',
5085             'Unicode::Collate::Locale'=> '0.67',
5086             'XS::APItest'           => '0.26',
5087             'XS::Typemap'           => '0.04',
5088             'charnames'             => '1.17',
5089             'mro'                   => '1.05',
5090             'parent'                => '0.224',
5091             're'                    => '0.14',
5092             'threads'               => '1.81_02',
5093         },
5094         removed => {
5095         }
5096     },
5097     5.013008 => {
5098         delta_from => 5.013007,
5099         changed => {
5100             'Archive::Tar'          => '1.74',
5101             'Archive::Tar::Constant'=> '1.74',
5102             'Archive::Tar::File'    => '1.74',
5103             'B'                     => '1.27',
5104             'B::Concise'            => '0.82',
5105             'B::Deparse'            => '1.02',
5106             'Carp::Heavy'           => '1.17',
5107             'Cwd'                   => '3.35',
5108             'Data::Dumper'          => '2.130_02',
5109             'Devel::Peek'           => '1.06',
5110             'Devel::SelfStubber'    => '1.05',
5111             'Digest::SHA'           => '5.50',
5112             'Dumpvalue'             => '1.15',
5113             'DynaLoader'            => '1.12',
5114             'Env'                   => '1.02',
5115             'Exporter::Heavy'       => '5.64_01',
5116             'ExtUtils::CBuilder'    => '0.280201',
5117             'ExtUtils::CBuilder::Base'=> '0.280201',
5118             'ExtUtils::CBuilder::Platform::Unix'=> '0.280201',
5119             'ExtUtils::CBuilder::Platform::VMS'=> '0.280201',
5120             'ExtUtils::CBuilder::Platform::Windows'=> '0.280201',
5121             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280201',
5122             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280201',
5123             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280201',
5124             'ExtUtils::CBuilder::Platform::aix'=> '0.280201',
5125             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280201',
5126             'ExtUtils::CBuilder::Platform::darwin'=> '0.280201',
5127             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280201',
5128             'ExtUtils::CBuilder::Platform::os2'=> '0.280201',
5129             'ExtUtils::Constant::Utils'=> '0.03',
5130             'ExtUtils::Embed'       => '1.30',
5131             'ExtUtils::ParseXS'     => '2.2208',
5132             'Fatal'                 => '2.1001',
5133             'Fcntl'                 => '1.11',
5134             'File::CheckTree'       => '4.41',
5135             'File::Glob'            => '1.11',
5136             'GDBM_File'             => '1.13',
5137             'Hash::Util::FieldHash' => '1.07',
5138             'I18N::Collate'         => '1.02',
5139             'IO'                    => '1.25_03',
5140             'IPC::Cmd'              => '0.66',
5141             'IPC::Open3'            => '1.08',
5142             'Locale::Codes'         => '3.15',
5143             'Locale::Codes::Country'=> '3.15',
5144             'Locale::Codes::Currency'=> '3.15',
5145             'Locale::Codes::Language'=> '3.15',
5146             'Locale::Codes::Script' => '3.15',
5147             'Locale::Constants'     => '3.15',
5148             'Locale::Country'       => '3.15',
5149             'Locale::Currency'      => '3.15',
5150             'Locale::Language'      => '3.15',
5151             'Locale::Script'        => '3.15',
5152             'MIME::Base64'          => '3.13',
5153             'MIME::QuotedPrint'     => '3.13',
5154             'Math::BigFloat'        => '1.99_02',
5155             'Math::BigInt'          => '1.99_02',
5156             'Math::BigInt::Calc'    => '1.99_02',
5157             'Math::BigInt::CalcEmu' => '1.99_02',
5158             'Memoize'               => '1.02',
5159             'Memoize::AnyDBM_File'  => '1.02',
5160             'Memoize::Expire'       => '1.02',
5161             'Memoize::ExpireFile'   => '1.02',
5162             'Memoize::ExpireTest'   => '1.02',
5163             'Memoize::NDBM_File'    => '1.02',
5164             'Memoize::SDBM_File'    => '1.02',
5165             'Memoize::Storable'     => '1.02',
5166             'Module::CoreList'      => '2.43',
5167             'NDBM_File'             => '1.11',
5168             'Net::Ping'             => '2.37',
5169             'ODBM_File'             => '1.10',
5170             'Opcode'                => '1.18',
5171             'POSIX'                 => '1.23',
5172             'PerlIO::encoding'      => '0.14',
5173             'PerlIO::scalar'        => '0.11',
5174             'PerlIO::via'           => '0.11',
5175             'SDBM_File'             => '1.09',
5176             'Socket'                => '1.92',
5177             'Storable'              => '2.25',
5178             'Time::HiRes'           => '1.9721_01',
5179             'Unicode::Collate'      => '0.6801',
5180             'Unicode::Collate::Locale'=> '0.68',
5181             'Unicode::Normalize'    => '1.08',
5182             'Unicode::UCD'          => '0.30',
5183             'Win32'                 => '0.41',
5184             'XS::APItest'           => '0.27',
5185             'autodie'               => '2.1001',
5186             'autodie::exception'    => '2.1001',
5187             'autodie::exception::system'=> '2.1001',
5188             'autodie::hints'        => '2.1001',
5189             'feature'               => '1.19',
5190             'if'                    => '0.0601',
5191             'mro'                   => '1.06',
5192             'overload'              => '1.12',
5193             're'                    => '0.15',
5194             'threads'               => '1.81_03',
5195             'threads::shared'       => '1.35',
5196             'version'               => '0.86',
5197         },
5198         removed => {
5199         }
5200     },
5201     5.013009 => {
5202         delta_from => 5.013008,
5203         changed => {
5204             'Archive::Extract'      => '0.48',
5205             'Archive::Tar'          => '1.76',
5206             'Archive::Tar::Constant'=> '1.76',
5207             'Archive::Tar::File'    => '1.76',
5208             'B::Concise'            => '0.83',
5209             'B::Deparse'            => '1.03',
5210             'B::Lint'               => '1.13',
5211             'Benchmark'             => '1.12',
5212             'CGI'                   => '3.51',
5213             'CGI::Carp'             => '3.51',
5214             'CGI::Cookie'           => '1.30',
5215             'CGI::Push'             => '1.05',
5216             'CGI::Util'             => '3.51',
5217             'CPAN'                  => '1.94_63',
5218             'CPAN::HTTP::Client'    => '1.94',
5219             'CPAN::HTTP::Credentials'=> '1.94',
5220             'CPAN::Meta::YAML'      => '0.003',
5221             'CPANPLUS'              => '0.9011',
5222             'CPANPLUS::Dist::Build' => '0.52',
5223             'CPANPLUS::Dist::Build::Constants'=> '0.52',
5224             'CPANPLUS::Internals'   => '0.9011',
5225             'CPANPLUS::Shell::Default'=> '0.9011',
5226             'Carp::Heavy'           => '1.19',
5227             'Compress::Raw::Bzip2'  => '2.033',
5228             'Compress::Raw::Zlib'   => '2.033',
5229             'Compress::Zlib'        => '2.033',
5230             'Cwd'                   => '3.36',
5231             'DBM_Filter'            => '0.04',
5232             'DB_File'               => '1.821',
5233             'Devel::Peek'           => '1.07',
5234             'DirHandle'             => '1.04',
5235             'Dumpvalue'             => '1.16',
5236             'Encode'                => '2.42',
5237             'Encode::Alias'         => '2.13',
5238             'Encode::MIME::Header'  => '2.13',
5239             'Exporter::Heavy'       => '5.64_03',
5240             'ExtUtils::Install'     => '1.56',
5241             'ExtUtils::ParseXS'     => '2.2209',
5242             'File::Basename'        => '2.80',
5243             'File::Copy'            => '2.21',
5244             'File::DosGlob'         => '1.04',
5245             'File::Fetch'           => '0.32',
5246             'File::Find'            => '1.19',
5247             'File::Spec::Mac'       => '3.34',
5248             'File::Spec::VMS'       => '3.34',
5249             'File::stat'            => '1.05',
5250             'HTTP::Tiny'            => '0.009',
5251             'Hash::Util::FieldHash' => '1.08',
5252             'IO::Compress::Adapter::Bzip2'=> '2.033',
5253             'IO::Compress::Adapter::Deflate'=> '2.033',
5254             'IO::Compress::Adapter::Identity'=> '2.033',
5255             'IO::Compress::Base'    => '2.033',
5256             'IO::Compress::Base::Common'=> '2.033',
5257             'IO::Compress::Bzip2'   => '2.033',
5258             'IO::Compress::Deflate' => '2.033',
5259             'IO::Compress::Gzip'    => '2.033',
5260             'IO::Compress::Gzip::Constants'=> '2.033',
5261             'IO::Compress::RawDeflate'=> '2.033',
5262             'IO::Compress::Zip'     => '2.033',
5263             'IO::Compress::Zip::Constants'=> '2.033',
5264             'IO::Compress::Zlib::Constants'=> '2.033',
5265             'IO::Compress::Zlib::Extra'=> '2.033',
5266             'IO::Handle'            => '1.29',
5267             'IO::Uncompress::Adapter::Bunzip2'=> '2.033',
5268             'IO::Uncompress::Adapter::Identity'=> '2.033',
5269             'IO::Uncompress::Adapter::Inflate'=> '2.033',
5270             'IO::Uncompress::AnyInflate'=> '2.033',
5271             'IO::Uncompress::AnyUncompress'=> '2.033',
5272             'IO::Uncompress::Base'  => '2.033',
5273             'IO::Uncompress::Bunzip2'=> '2.033',
5274             'IO::Uncompress::Gunzip'=> '2.033',
5275             'IO::Uncompress::Inflate'=> '2.033',
5276             'IO::Uncompress::RawInflate'=> '2.033',
5277             'IO::Uncompress::Unzip' => '2.033',
5278             'IPC::Cmd'              => '0.68',
5279             'IPC::Open3'            => '1.09',
5280             'JSON::PP'              => '2.27103',
5281             'JSON::PP::Boolean'     => undef,
5282             'Locale::Maketext'      => '1.18',
5283             'Log::Message'          => '0.04',
5284             'Log::Message::Config'  => '0.04',
5285             'Log::Message::Handlers'=> '0.04',
5286             'Log::Message::Item'    => '0.04',
5287             'Log::Message::Simple'  => '0.08',
5288             'Math::BigFloat'        => '1.99_03',
5289             'Math::BigInt'          => '1.99_03',
5290             'Math::BigInt::Calc'    => '1.99_03',
5291             'Math::BigInt::FastCalc'=> '0.24_02',
5292             'Math::BigRat'          => '0.26_02',
5293             'Module::CoreList'      => '2.42_01',
5294             'Module::Load::Conditional'=> '0.40',
5295             'Module::Metadata'      => '1.000003',
5296             'Net::Ping'             => '2.38',
5297             'OS2::Process'          => '1.05',
5298             'Object::Accessor'      => '0.38',
5299             'POSIX'                 => '1.24',
5300             'Params::Check'         => '0.28',
5301             'Perl::OSType'          => '1.002',
5302             'Pod::LaTeX'            => '0.59',
5303             'Pod::Perldoc'          => '3.15_03',
5304             'Socket'                => '1.93',
5305             'Storable'              => '2.26',
5306             'Sys::Hostname'         => '1.15',
5307             'Term::UI'              => '0.24',
5308             'Thread::Queue'         => '2.12',
5309             'Thread::Semaphore'     => '2.12',
5310             'Time::Local'           => '1.2000',
5311             'UNIVERSAL'             => '1.08',
5312             'Unicode::Normalize'    => '1.10',
5313             'Win32'                 => '0.44',
5314             'bigint'                => '0.26',
5315             'bignum'                => '0.26',
5316             'bigrat'                => '0.26',
5317             'charnames'             => '1.18',
5318             'diagnostics'           => '1.21',
5319             're'                    => '0.16',
5320             'threads'               => '1.83',
5321             'threads::shared'       => '1.36',
5322             'version'               => '0.88',
5323         },
5324         removed => {
5325         }
5326     },
5327     5.01301 => {
5328         delta_from => 5.013009,
5329         changed => {
5330             'Attribute::Handlers'   => '0.89',
5331             'B'                     => '1.28',
5332             'B::Showlex'            => '1.03',
5333             'CGI'                   => '3.52',
5334             'CPAN'                  => '1.94_65',
5335             'CPAN::Distribution'    => '1.9601',
5336             'CPAN::FTP::netrc'      => '1.01',
5337             'CPAN::FirstTime'       => '5.5303',
5338             'CPAN::HandleConfig'    => '5.5003',
5339             'CPAN::Meta'            => '2.110440',
5340             'CPAN::Meta::Converter' => '2.110440',
5341             'CPAN::Meta::Feature'   => '2.110440',
5342             'CPAN::Meta::History'   => '2.110440',
5343             'CPAN::Meta::Prereqs'   => '2.110440',
5344             'CPAN::Meta::Spec'      => '2.110440',
5345             'CPAN::Meta::Validator' => '2.110440',
5346             'CPAN::Shell'           => '5.5002',
5347             'CPANPLUS'              => '0.9101',
5348             'CPANPLUS::Internals'   => '0.9101',
5349             'CPANPLUS::Shell::Default'=> '0.9101',
5350             'Carp'                  => '1.20',
5351             'Carp::Heavy'           => '1.20',
5352             'Cwd'                   => '3.37',
5353             'Devel::DProf'          => '20110217.00',
5354             'DynaLoader'            => '1.13',
5355             'ExtUtils::CBuilder'    => '0.280202',
5356             'ExtUtils::CBuilder::Base'=> '0.280202',
5357             'ExtUtils::CBuilder::Platform::Unix'=> '0.280202',
5358             'ExtUtils::CBuilder::Platform::VMS'=> '0.280202',
5359             'ExtUtils::CBuilder::Platform::Windows'=> '0.280202',
5360             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280202',
5361             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280202',
5362             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280202',
5363             'ExtUtils::CBuilder::Platform::aix'=> '0.280202',
5364             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280202',
5365             'ExtUtils::CBuilder::Platform::darwin'=> '0.280202',
5366             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280202',
5367             'ExtUtils::CBuilder::Platform::os2'=> '0.280202',
5368             'File::Copy'            => '2.22',
5369             'Filter::Simple'        => '0.86',
5370             'HTTP::Tiny'            => '0.010',
5371             'I18N::LangTags::Detect'=> '1.05',
5372             'IO::Select'            => '1.18',
5373             'IPC::Cmd'              => '0.70',
5374             'Locale::Maketext'      => '1.19',
5375             'Math::BigFloat'        => '1.992',
5376             'Math::BigInt'          => '1.992',
5377             'Math::BigInt::Calc'    => '1.992',
5378             'Math::BigInt::CalcEmu' => '1.992',
5379             'Module::Build'         => '0.37_05',
5380             'Module::Build::Base'   => '0.37_05',
5381             'Module::Build::Compat' => '0.37_05',
5382             'Module::Build::Config' => '0.37_05',
5383             'Module::Build::Cookbook'=> '0.37_05',
5384             'Module::Build::Dumper' => '0.37_05',
5385             'Module::Build::ModuleInfo'=> '0.37_05',
5386             'Module::Build::Notes'  => '0.37_05',
5387             'Module::Build::PPMMaker'=> '0.37_05',
5388             'Module::Build::Platform::Amiga'=> '0.37_05',
5389             'Module::Build::Platform::Default'=> '0.37_05',
5390             'Module::Build::Platform::EBCDIC'=> '0.37_05',
5391             'Module::Build::Platform::MPEiX'=> '0.37_05',
5392             'Module::Build::Platform::MacOS'=> '0.37_05',
5393             'Module::Build::Platform::RiscOS'=> '0.37_05',
5394             'Module::Build::Platform::Unix'=> '0.37_05',
5395             'Module::Build::Platform::VMS'=> '0.37_05',
5396             'Module::Build::Platform::VOS'=> '0.37_05',
5397             'Module::Build::Platform::Windows'=> '0.37_05',
5398             'Module::Build::Platform::aix'=> '0.37_05',
5399             'Module::Build::Platform::cygwin'=> '0.37_05',
5400             'Module::Build::Platform::darwin'=> '0.37_05',
5401             'Module::Build::Platform::os2'=> '0.37_05',
5402             'Module::Build::PodParser'=> '0.37_05',
5403             'Module::Build::Version'=> '0.87',
5404             'Module::Build::YAML'   => '1.41',
5405             'Module::CoreList'      => '2.45',
5406             'Module::Load::Conditional'=> '0.44',
5407             'Module::Metadata'      => '1.000004',
5408             'OS2::Process'          => '1.06',
5409             'Parse::CPAN::Meta'     => '1.4401',
5410             'Pod::Html'             => '1.1',
5411             'Socket'                => '1.94',
5412             'Term::UI'              => '0.26',
5413             'Unicode::Collate'      => '0.72',
5414             'Unicode::Collate::Locale'=> '0.71',
5415             'Unicode::UCD'          => '0.31',
5416             'VMS::DCLsym'           => '1.05',
5417             'Version::Requirements' => '0.101020',
5418             'bigrat'                => '0.27',
5419             'deprecate'             => '0.02',
5420             'diagnostics'           => '1.22',
5421             'inc::latest'           => '0.37_05',
5422             'overload'              => '1.13',
5423             're'                    => '0.17',
5424             'utf8'                  => '1.09',
5425             'warnings'              => '1.12',
5426         },
5427         removed => {
5428         }
5429     },
5430     5.013011 => {
5431         delta_from => 5.01301,
5432         changed => {
5433             'App::Prove'            => '3.23',
5434             'App::Prove::State'     => '3.23',
5435             'App::Prove::State::Result'=> '3.23',
5436             'App::Prove::State::Result::Test'=> '3.23',
5437             'B'                     => '1.29',
5438             'CPAN'                  => '1.9600',
5439             'CPAN::Author'          => '5.5001',
5440             'CPAN::CacheMgr'        => '5.5001',
5441             'CPAN::Distribution'    => '1.9602',
5442             'CPAN::Exception::blocked_urllist'=> '1.001',
5443             'CPAN::HTTP::Client'    => '1.9600',
5444             'CPAN::HTTP::Credentials'=> '1.9600',
5445             'CPAN::Index'           => '1.9600',
5446             'CPAN::LWP::UserAgent'  => '1.9600',
5447             'CPAN::Mirrors'         => '1.9600',
5448             'CPAN::Module'          => '5.5001',
5449             'CPANPLUS'              => '0.9103',
5450             'CPANPLUS::Dist::Build' => '0.54',
5451             'CPANPLUS::Dist::Build::Constants'=> '0.54',
5452             'CPANPLUS::Internals'   => '0.9103',
5453             'CPANPLUS::Shell::Default'=> '0.9103',
5454             'Cwd'                   => '3.36',
5455             'Devel::DProf'          => '20110228.00',
5456             'Digest::SHA'           => '5.61',
5457             'ExtUtils::Command'     => '1.17',
5458             'File::Basename'        => '2.81',
5459             'File::Copy'            => '2.21',
5460             'File::Glob'            => '1.12',
5461             'GDBM_File'             => '1.14',
5462             'HTTP::Tiny'            => '0.011',
5463             'Hash::Util'            => '0.11',
5464             'Hash::Util::FieldHash' => '1.09',
5465             'I18N::Langinfo'        => '0.08',
5466             'IO'                    => '1.25_04',
5467             'IO::Dir'               => '1.08',
5468             'IO::File'              => '1.15',
5469             'IO::Handle'            => '1.30',
5470             'IO::Pipe'              => '1.14',
5471             'IO::Poll'              => '0.08',
5472             'IO::Select'            => '1.20',
5473             'JSON::PP'              => '2.27105',
5474             'Locale::Codes'         => '3.16',
5475             'Locale::Codes::Country'=> '3.16',
5476             'Locale::Codes::Currency'=> '3.16',
5477             'Locale::Codes::Language'=> '3.16',
5478             'Locale::Codes::Script' => '3.16',
5479             'Locale::Constants'     => '3.16',
5480             'Locale::Country'       => '3.16',
5481             'Locale::Currency'      => '3.16',
5482             'Locale::Language'      => '3.16',
5483             'Locale::Script'        => '3.16',
5484             'Math::BigFloat'        => '1.993',
5485             'Math::BigInt'          => '1.994',
5486             'Math::BigInt::Calc'    => '1.993',
5487             'Math::BigInt::CalcEmu' => '1.993',
5488             'Math::BigInt::FastCalc'=> '0.28',
5489             'Module::Build'         => '0.3800',
5490             'Module::Build::Base'   => '0.3800',
5491             'Module::Build::Compat' => '0.3800',
5492             'Module::Build::Config' => '0.3800',
5493             'Module::Build::Cookbook'=> '0.3800',
5494             'Module::Build::Dumper' => '0.3800',
5495             'Module::Build::ModuleInfo'=> '0.3800',
5496             'Module::Build::Notes'  => '0.3800',
5497             'Module::Build::PPMMaker'=> '0.3800',
5498             'Module::Build::Platform::Amiga'=> '0.3800',
5499             'Module::Build::Platform::Default'=> '0.3800',
5500             'Module::Build::Platform::EBCDIC'=> '0.3800',
5501             'Module::Build::Platform::MPEiX'=> '0.3800',
5502             'Module::Build::Platform::MacOS'=> '0.3800',
5503             'Module::Build::Platform::RiscOS'=> '0.3800',
5504             'Module::Build::Platform::Unix'=> '0.3800',
5505             'Module::Build::Platform::VMS'=> '0.3800',
5506             'Module::Build::Platform::VOS'=> '0.3800',
5507             'Module::Build::Platform::Windows'=> '0.3800',
5508             'Module::Build::Platform::aix'=> '0.3800',
5509             'Module::Build::Platform::cygwin'=> '0.3800',
5510             'Module::Build::Platform::darwin'=> '0.3800',
5511             'Module::Build::Platform::os2'=> '0.3800',
5512             'Module::Build::PodParser'=> '0.3800',
5513             'Module::CoreList'      => '2.46',
5514             'NDBM_File'             => '1.12',
5515             'Pod::Simple'           => '3.16',
5516             'Pod::Simple::BlackBox' => '3.16',
5517             'Pod::Simple::Checker'  => '3.16',
5518             'Pod::Simple::Debug'    => '3.16',
5519             'Pod::Simple::DumpAsText'=> '3.16',
5520             'Pod::Simple::DumpAsXML'=> '3.16',
5521             'Pod::Simple::HTML'     => '3.16',
5522             'Pod::Simple::HTMLBatch'=> '3.16',
5523             'Pod::Simple::LinkSection'=> '3.16',
5524             'Pod::Simple::Methody'  => '3.16',
5525             'Pod::Simple::Progress' => '3.16',
5526             'Pod::Simple::PullParser'=> '3.16',
5527             'Pod::Simple::PullParserEndToken'=> '3.16',
5528             'Pod::Simple::PullParserStartToken'=> '3.16',
5529             'Pod::Simple::PullParserTextToken'=> '3.16',
5530             'Pod::Simple::PullParserToken'=> '3.16',
5531             'Pod::Simple::RTF'      => '3.16',
5532             'Pod::Simple::Search'   => '3.16',
5533             'Pod::Simple::SimpleTree'=> '3.16',
5534             'Pod::Simple::Text'     => '3.16',
5535             'Pod::Simple::TextContent'=> '3.16',
5536             'Pod::Simple::TiedOutFH'=> '3.16',
5537             'Pod::Simple::Transcode'=> '3.16',
5538             'Pod::Simple::TranscodeDumb'=> '3.16',
5539             'Pod::Simple::TranscodeSmart'=> '3.16',
5540             'Pod::Simple::XHTML'    => '3.16',
5541             'Pod::Simple::XMLOutStream'=> '3.16',
5542             'Storable'              => '2.27',
5543             'Sys::Hostname'         => '1.16',
5544             'TAP::Base'             => '3.23',
5545             'TAP::Formatter::Base'  => '3.23',
5546             'TAP::Formatter::Color' => '3.23',
5547             'TAP::Formatter::Console'=> '3.23',
5548             'TAP::Formatter::Console::ParallelSession'=> '3.23',
5549             'TAP::Formatter::Console::Session'=> '3.23',
5550             'TAP::Formatter::File'  => '3.23',
5551             'TAP::Formatter::File::Session'=> '3.23',
5552             'TAP::Formatter::Session'=> '3.23',
5553             'TAP::Harness'          => '3.23',
5554             'TAP::Object'           => '3.23',
5555             'TAP::Parser'           => '3.23',
5556             'TAP::Parser::Aggregator'=> '3.23',
5557             'TAP::Parser::Grammar'  => '3.23',
5558             'TAP::Parser::Iterator' => '3.23',
5559             'TAP::Parser::Iterator::Array'=> '3.23',
5560             'TAP::Parser::Iterator::Process'=> '3.23',
5561             'TAP::Parser::Iterator::Stream'=> '3.23',
5562             'TAP::Parser::IteratorFactory'=> '3.23',
5563             'TAP::Parser::Multiplexer'=> '3.23',
5564             'TAP::Parser::Result'   => '3.23',
5565             'TAP::Parser::Result::Bailout'=> '3.23',
5566             'TAP::Parser::Result::Comment'=> '3.23',
5567             'TAP::Parser::Result::Plan'=> '3.23',
5568             'TAP::Parser::Result::Pragma'=> '3.23',
5569             'TAP::Parser::Result::Test'=> '3.23',
5570             'TAP::Parser::Result::Unknown'=> '3.23',
5571             'TAP::Parser::Result::Version'=> '3.23',
5572             'TAP::Parser::Result::YAML'=> '3.23',
5573             'TAP::Parser::ResultFactory'=> '3.23',
5574             'TAP::Parser::Scheduler'=> '3.23',
5575             'TAP::Parser::Scheduler::Job'=> '3.23',
5576             'TAP::Parser::Scheduler::Spinner'=> '3.23',
5577             'TAP::Parser::Source'   => '3.23',
5578             'TAP::Parser::SourceHandler'=> '3.23',
5579             'TAP::Parser::SourceHandler::Executable'=> '3.23',
5580             'TAP::Parser::SourceHandler::File'=> '3.23',
5581             'TAP::Parser::SourceHandler::Handle'=> '3.23',
5582             'TAP::Parser::SourceHandler::Perl'=> '3.23',
5583             'TAP::Parser::SourceHandler::RawTAP'=> '3.23',
5584             'TAP::Parser::Utils'    => '3.23',
5585             'TAP::Parser::YAMLish::Reader'=> '3.23',
5586             'TAP::Parser::YAMLish::Writer'=> '3.23',
5587             'Test::Builder'         => '0.98',
5588             'Test::Builder::Module' => '0.98',
5589             'Test::Builder::Tester' => '1.22',
5590             'Test::Builder::Tester::Color'=> '1.22',
5591             'Test::Harness'         => '3.23',
5592             'Test::More'            => '0.98',
5593             'Test::Simple'          => '0.98',
5594             'Tie::Hash::NamedCapture'=> '0.08',
5595             'Tie::RefHash'          => '1.39',
5596             'Unicode::Collate'      => '0.73',
5597             'Unicode::Collate::Locale'=> '0.73',
5598             'Unicode::UCD'          => '0.32',
5599             'XS::Typemap'           => '0.05',
5600             'attributes'            => '0.14',
5601             'base'                  => '2.16',
5602             'inc::latest'           => '0.3800',
5603             'mro'                   => '1.07',
5604             'parent'                => '0.225',
5605         },
5606         removed => {
5607         }
5608     },
5609     5.014 => {
5610         delta_from => 5.013011,
5611         changed => {
5612             'ExtUtils::CBuilder'    => '0.280203',
5613             'ExtUtils::CBuilder::Base'=> '0.280203',
5614             'ExtUtils::CBuilder::Platform::Unix'=> '0.280203',
5615             'ExtUtils::CBuilder::Platform::VMS'=> '0.280203',
5616             'ExtUtils::CBuilder::Platform::Windows'=> '0.280203',
5617             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280203',
5618             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280203',
5619             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280203',
5620             'ExtUtils::CBuilder::Platform::aix'=> '0.280203',
5621             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280203',
5622             'ExtUtils::CBuilder::Platform::darwin'=> '0.280203',
5623             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280203',
5624             'ExtUtils::CBuilder::Platform::os2'=> '0.280203',
5625             'ExtUtils::ParseXS'     => '2.2210',
5626             'File::Basename'        => '2.82',
5627             'HTTP::Tiny'            => '0.012',
5628             'IO::Handle'            => '1.31',
5629             'Module::CoreList'      => '2.49',
5630             'PerlIO'                => '1.07',
5631             'Pod::Html'             => '1.11',
5632             'XS::APItest'           => '0.28',
5633             'bigint'                => '0.27',
5634             'bignum'                => '0.27',
5635             'bigrat'                => '0.28',
5636             'constant'              => '1.21',
5637             'feature'               => '1.20',
5638             're'                    => '0.18',
5639             'threads::shared'       => '1.37',
5640         },
5641         removed => {
5642         }
5643     },
5644     5.014001 => {
5645         delta_from => 5.014,
5646         changed => {
5647             'B::Deparse'            => '1.04',
5648             'Module::CoreList'      => '2.49_01',
5649             'Pod::Perldoc'          => '3.15_04',
5650         },
5651         removed => {
5652         }
5653     },
5654     5.014002 => {
5655         delta_from => 5.014001,
5656         changed => {
5657             'CPAN'                  => '1.9600_01',
5658             'CPAN::Distribution'    => '1.9602_01',
5659             'Devel::DProf::dprof::V'=> undef,
5660             'Encode'                => '2.42_01',
5661             'File::Glob'            => '1.13',
5662             'Module::CoreList'      => '2.49_02',
5663             'PerlIO::scalar'        => '0.11_01',
5664             'Time::Piece::Seconds'  => undef,
5665         },
5666         removed => {
5667         }
5668     },
5669     5.014003 => {
5670         delta_from => 5.014002,
5671         changed => {
5672             'Digest'                => '1.16_01',
5673             'IPC::Open3'            => '1.09_01',
5674             'Module::CoreList'      => '2.49_04',
5675         },
5676         removed => {
5677         }
5678     },
5679     5.014004 => {
5680         delta_from => 5.014003,
5681         changed => {
5682             'Encode'                => '2.42_02',
5683             'IPC::Open3'            => '1.0901',
5684             'Module::CoreList'      => '2.49_06',
5685         },
5686         removed => {
5687         }
5688     },
5689     5.015 => {
5690         delta_from => 5.014001,
5691         changed => {
5692             'Archive::Extract'      => '0.52',
5693             'Attribute::Handlers'   => '0.91',
5694             'B'                     => '1.30',
5695             'B::Concise'            => '0.84',
5696             'B::Deparse'            => '1.05',
5697             'Benchmark'             => '1.13',
5698             'CGI'                   => '3.54',
5699             'CGI::Util'             => '3.53',
5700             'CPAN::Meta'            => '2.110930',
5701             'CPAN::Meta::Converter' => '2.110930',
5702             'CPAN::Meta::Feature'   => '2.110930',
5703             'CPAN::Meta::History'   => '2.110930',
5704             'CPAN::Meta::Prereqs'   => '2.110930',
5705             'CPAN::Meta::Spec'      => '2.110930',
5706             'CPAN::Meta::Validator' => '2.110930',
5707             'CPANPLUS'              => '0.9105',
5708             'CPANPLUS::Dist::Build' => '0.56',
5709             'CPANPLUS::Dist::Build::Constants'=> '0.56',
5710             'CPANPLUS::Internals'   => '0.9105',
5711             'CPANPLUS::Shell::Default'=> '0.9105',
5712             'Compress::Raw::Bzip2'  => '2.035',
5713             'Compress::Raw::Zlib'   => '2.035',
5714             'Compress::Zlib'        => '2.035',
5715             'DB_File'               => '1.822',
5716             'Data::Dumper'          => '2.131',
5717             'Devel::Peek'           => '1.08',
5718             'Digest::SHA'           => '5.62',
5719             'Encode'                => '2.43',
5720             'Encode::Alias'         => '2.14',
5721             'ExtUtils::CBuilder'    => '0.280204',
5722             'ExtUtils::CBuilder::Base'=> '0.280204',
5723             'Fatal'                 => '2.10',
5724             'File::Spec::Win32'     => '3.34',
5725             'Filter::Simple'        => '0.87',
5726             'Filter::Util::Call'    => '1.39',
5727             'FindBin'               => '1.51',
5728             'Hash::Util::FieldHash' => '1.10',
5729             'I18N::LangTags'        => '0.36',
5730             'IO::Compress::Adapter::Bzip2'=> '2.035',
5731             'IO::Compress::Adapter::Deflate'=> '2.035',
5732             'IO::Compress::Adapter::Identity'=> '2.035',
5733             'IO::Compress::Base'    => '2.035',
5734             'IO::Compress::Base::Common'=> '2.035',
5735             'IO::Compress::Bzip2'   => '2.035',
5736             'IO::Compress::Deflate' => '2.035',
5737             'IO::Compress::Gzip'    => '2.035',
5738             'IO::Compress::Gzip::Constants'=> '2.035',
5739             'IO::Compress::RawDeflate'=> '2.035',
5740             'IO::Compress::Zip'     => '2.035',
5741             'IO::Compress::Zip::Constants'=> '2.035',
5742             'IO::Compress::Zlib::Constants'=> '2.035',
5743             'IO::Compress::Zlib::Extra'=> '2.035',
5744             'IO::Uncompress::Adapter::Bunzip2'=> '2.035',
5745             'IO::Uncompress::Adapter::Identity'=> '2.035',
5746             'IO::Uncompress::Adapter::Inflate'=> '2.035',
5747             'IO::Uncompress::AnyInflate'=> '2.035',
5748             'IO::Uncompress::AnyUncompress'=> '2.035',
5749             'IO::Uncompress::Base'  => '2.035',
5750             'IO::Uncompress::Bunzip2'=> '2.035',
5751             'IO::Uncompress::Gunzip'=> '2.035',
5752             'IO::Uncompress::Inflate'=> '2.035',
5753             'IO::Uncompress::RawInflate'=> '2.035',
5754             'IO::Uncompress::Unzip' => '2.035',
5755             'IPC::Open2'            => '1.04',
5756             'IPC::Open3'            => '1.11',
5757             'JSON::PP'              => '2.27200',
5758             'Math::BigFloat'        => '1.994',
5759             'Math::BigInt'          => '1.995',
5760             'Math::Complex'         => '1.57',
5761             'Math::Trig'            => '1.21',
5762             'Module::CoreList'      => '2.51',
5763             'ODBM_File'             => '1.11',
5764             'Object::Accessor'      => '0.42',
5765             'Opcode'                => '1.19',
5766             'PerlIO::encoding'      => '0.15',
5767             'PerlIO::scalar'        => '0.12',
5768             'Pod::Perldoc'          => '3.15_05',
5769             'Storable'              => '2.28',
5770             'Sys::Syslog'           => '0.29',
5771             'Time::HiRes'           => '1.9722',
5772             'Unicode::Collate'      => '0.76',
5773             'Unicode::Collate::CJK::Pinyin'=> '0.76',
5774             'Unicode::Collate::CJK::Stroke'=> '0.76',
5775             'Unicode::Collate::Locale'=> '0.76',
5776             'Unicode::Normalize'    => '1.12',
5777             'XS::APItest'           => '0.29',
5778             'XSLoader'              => '0.15',
5779             'autodie'               => '2.10',
5780             'autodie::exception'    => '2.10',
5781             'autodie::exception::system'=> '2.10',
5782             'autodie::hints'        => '2.10',
5783             'base'                  => '2.17',
5784             'charnames'             => '1.22',
5785             'constant'              => '1.22',
5786             'feature'               => '1.21',
5787             'mro'                   => '1.08',
5788             'overload'              => '1.14',
5789             'threads::shared'       => '1.38',
5790             'vmsish'                => '1.03',
5791         },
5792         removed => {
5793             'Devel::DProf'          => 1,
5794             'Shell'                 => 1,
5795         }
5796     },
5797     5.015001 => {
5798         delta_from => 5.015,
5799         changed => {
5800             'B::Deparse'            => '1.06',
5801             'CGI'                   => '3.55',
5802             'CPAN::Meta'            => '2.110930001',
5803             'CPAN::Meta::Converter' => '2.110930001',
5804             'CPANPLUS'              => '0.9108',
5805             'CPANPLUS::Internals'   => '0.9108',
5806             'CPANPLUS::Shell::Default'=> '0.9108',
5807             'Carp'                  => '1.21',
5808             'Carp::Heavy'           => '1.21',
5809             'Compress::Raw::Bzip2'  => '2.037',
5810             'Compress::Raw::Zlib'   => '2.037',
5811             'Compress::Zlib'        => '2.037',
5812             'Cwd'                   => '3.37',
5813             'Env'                   => '1.03',
5814             'ExtUtils::Command::MM' => '6.58',
5815             'ExtUtils::Liblist'     => '6.58',
5816             'ExtUtils::Liblist::Kid'=> '6.58',
5817             'ExtUtils::MM'          => '6.58',
5818             'ExtUtils::MM_AIX'      => '6.58',
5819             'ExtUtils::MM_Any'      => '6.58',
5820             'ExtUtils::MM_BeOS'     => '6.58',
5821             'ExtUtils::MM_Cygwin'   => '6.58',
5822             'ExtUtils::MM_DOS'      => '6.58',
5823             'ExtUtils::MM_Darwin'   => '6.58',
5824             'ExtUtils::MM_MacOS'    => '6.58',
5825             'ExtUtils::MM_NW5'      => '6.58',
5826             'ExtUtils::MM_OS2'      => '6.58',
5827             'ExtUtils::MM_QNX'      => '6.58',
5828             'ExtUtils::MM_UWIN'     => '6.58',
5829             'ExtUtils::MM_Unix'     => '6.58',
5830             'ExtUtils::MM_VMS'      => '6.58',
5831             'ExtUtils::MM_VOS'      => '6.58',
5832             'ExtUtils::MM_Win32'    => '6.58',
5833             'ExtUtils::MM_Win95'    => '6.58',
5834             'ExtUtils::MY'          => '6.58',
5835             'ExtUtils::MakeMaker'   => '6.58',
5836             'ExtUtils::MakeMaker::Config'=> '6.58',
5837             'ExtUtils::Mkbootstrap' => '6.58',
5838             'ExtUtils::Mksymlists'  => '6.58',
5839             'ExtUtils::ParseXS'     => '3.00_01',
5840             'ExtUtils::ParseXS::Constants'=> undef,
5841             'ExtUtils::ParseXS::CountLines'=> undef,
5842             'ExtUtils::ParseXS::Utilities'=> undef,
5843             'ExtUtils::Typemaps'    => '1.00',
5844             'ExtUtils::Typemaps::InputMap'=> undef,
5845             'ExtUtils::Typemaps::OutputMap'=> undef,
5846             'ExtUtils::Typemaps::Type'=> '0.05',
5847             'ExtUtils::testlib'     => '6.58',
5848             'File::Basename'        => '2.83',
5849             'File::Find'            => '1.20',
5850             'HTTP::Tiny'            => '0.013',
5851             'I18N::Langinfo'        => '0.08_02',
5852             'IO::Compress::Adapter::Bzip2'=> '2.037',
5853             'IO::Compress::Adapter::Deflate'=> '2.037',
5854             'IO::Compress::Adapter::Identity'=> '2.037',
5855             'IO::Compress::Base'    => '2.037',
5856             'IO::Compress::Base::Common'=> '2.037',
5857             'IO::Compress::Bzip2'   => '2.037',
5858             'IO::Compress::Deflate' => '2.037',
5859             'IO::Compress::Gzip'    => '2.037',
5860             'IO::Compress::Gzip::Constants'=> '2.037',
5861             'IO::Compress::RawDeflate'=> '2.037',
5862             'IO::Compress::Zip'     => '2.037',
5863             'IO::Compress::Zip::Constants'=> '2.037',
5864             'IO::Compress::Zlib::Constants'=> '2.037',
5865             'IO::Compress::Zlib::Extra'=> '2.037',
5866             'IO::Uncompress::Adapter::Bunzip2'=> '2.037',
5867             'IO::Uncompress::Adapter::Identity'=> '2.037',
5868             'IO::Uncompress::Adapter::Inflate'=> '2.037',
5869             'IO::Uncompress::AnyInflate'=> '2.037',
5870             'IO::Uncompress::AnyUncompress'=> '2.037',
5871             'IO::Uncompress::Base'  => '2.037',
5872             'IO::Uncompress::Bunzip2'=> '2.037',
5873             'IO::Uncompress::Gunzip'=> '2.037',
5874             'IO::Uncompress::Inflate'=> '2.037',
5875             'IO::Uncompress::RawInflate'=> '2.037',
5876             'IO::Uncompress::Unzip' => '2.037',
5877             'IPC::Cmd'              => '0.72',
5878             'Locale::Codes'         => '3.17',
5879             'Locale::Codes::Constants'=> '3.17',
5880             'Locale::Codes::Country'=> '3.17',
5881             'Locale::Codes::Country_Codes'=> '3.17',
5882             'Locale::Codes::Currency'=> '3.17',
5883             'Locale::Codes::Currency_Codes'=> '3.17',
5884             'Locale::Codes::LangExt'=> '3.17',
5885             'Locale::Codes::LangExt_Codes'=> '3.17',
5886             'Locale::Codes::LangVar'=> '3.17',
5887             'Locale::Codes::LangVar_Codes'=> '3.17',
5888             'Locale::Codes::Language'=> '3.17',
5889             'Locale::Codes::Language_Codes'=> '3.17',
5890             'Locale::Codes::Script' => '3.17',
5891             'Locale::Codes::Script_Codes'=> '3.17',
5892             'Locale::Country'       => '3.17',
5893             'Locale::Currency'      => '3.17',
5894             'Locale::Language'      => '3.17',
5895             'Locale::Script'        => '3.17',
5896             'Math::BigFloat::Trace' => '0.28',
5897             'Math::BigInt::FastCalc'=> '0.29',
5898             'Math::BigInt::Trace'   => '0.28',
5899             'Math::BigRat'          => '0.2602',
5900             'Math::Complex'         => '1.58',
5901             'Math::Trig'            => '1.22',
5902             'Module::CoreList'      => '2.54',
5903             'OS2::Process'          => '1.07',
5904             'Pod::Perldoc'          => '3.15_06',
5905             'Pod::Simple'           => '3.18',
5906             'Pod::Simple::BlackBox' => '3.18',
5907             'Pod::Simple::Checker'  => '3.18',
5908             'Pod::Simple::Debug'    => '3.18',
5909             'Pod::Simple::DumpAsText'=> '3.18',
5910             'Pod::Simple::DumpAsXML'=> '3.18',
5911             'Pod::Simple::HTML'     => '3.18',
5912             'Pod::Simple::HTMLBatch'=> '3.18',
5913             'Pod::Simple::LinkSection'=> '3.18',
5914             'Pod::Simple::Methody'  => '3.18',
5915             'Pod::Simple::Progress' => '3.18',
5916             'Pod::Simple::PullParser'=> '3.18',
5917             'Pod::Simple::PullParserEndToken'=> '3.18',
5918             'Pod::Simple::PullParserStartToken'=> '3.18',
5919             'Pod::Simple::PullParserTextToken'=> '3.18',
5920             'Pod::Simple::PullParserToken'=> '3.18',
5921             'Pod::Simple::RTF'      => '3.18',
5922             'Pod::Simple::Search'   => '3.18',
5923             'Pod::Simple::SimpleTree'=> '3.18',
5924             'Pod::Simple::Text'     => '3.18',
5925             'Pod::Simple::TextContent'=> '3.18',
5926             'Pod::Simple::TiedOutFH'=> '3.18',
5927             'Pod::Simple::Transcode'=> '3.18',
5928             'Pod::Simple::TranscodeDumb'=> '3.18',
5929             'Pod::Simple::TranscodeSmart'=> '3.18',
5930             'Pod::Simple::XHTML'    => '3.18',
5931             'Pod::Simple::XMLOutStream'=> '3.18',
5932             'Storable'              => '2.31',
5933             'Sys::Syslog::Win32'    => undef,
5934             'Time::HiRes'           => '1.9724',
5935             'Unicode::Collate'      => '0.77',
5936             'Unicode::UCD'          => '0.33',
5937             'Win32API::File'        => '0.1200',
5938             'XS::APItest'           => '0.30',
5939             'attributes'            => '0.15',
5940             'bigint'                => '0.28',
5941             'bignum'                => '0.28',
5942             'charnames'             => '1.23',
5943             'diagnostics'           => '1.23',
5944             'feature'               => '1.22',
5945             'overload'              => '1.15',
5946             'perlfaq'               => '5.015000',
5947             'threads'               => '1.84',
5948             'version'               => '0.93',
5949         },
5950         removed => {
5951             'ExtUtils::MakeMaker::YAML'=> 1,
5952             'Locale::Constants'     => 1,
5953             'Sys::Syslog::win32::Win32'=> 1,
5954         }
5955     },
5956     5.015002 => {
5957         delta_from => 5.015001,
5958         changed => {
5959             'Attribute::Handlers'   => '0.92',
5960             'B'                     => '1.31',
5961             'B::Concise'            => '0.85',
5962             'B::Deparse'            => '1.07',
5963             'B::Terse'              => '1.06',
5964             'B::Xref'               => '1.03',
5965             'CPAN'                  => '1.9800',
5966             'CPAN::Exception::yaml_process_error'=> '5.5',
5967             'CPAN::Meta'            => '2.112150',
5968             'CPAN::Meta::Converter' => '2.112150',
5969             'CPAN::Meta::Feature'   => '2.112150',
5970             'CPAN::Meta::History'   => '2.112150',
5971             'CPAN::Meta::Prereqs'   => '2.112150',
5972             'CPAN::Meta::Spec'      => '2.112150',
5973             'CPAN::Meta::Validator' => '2.112150',
5974             'CPANPLUS'              => '0.9109',
5975             'CPANPLUS::Internals'   => '0.9109',
5976             'CPANPLUS::Shell::Default'=> '0.9109',
5977             'DB_File'               => '1.824',
5978             'Data::Dumper'          => '2.132',
5979             'Encode'                => '2.44',
5980             'Encode::Alias'         => '2.15',
5981             'Encode::Encoder'       => '2.02',
5982             'Encode::Guess'         => '2.05',
5983             'ExtUtils::Command::MM' => '6.59',
5984             'ExtUtils::Install'     => '1.57',
5985             'ExtUtils::Installed'   => '1.999002',
5986             'ExtUtils::Liblist'     => '6.59',
5987             'ExtUtils::Liblist::Kid'=> '6.59',
5988             'ExtUtils::MM'          => '6.59',
5989             'ExtUtils::MM_AIX'      => '6.59',
5990             'ExtUtils::MM_Any'      => '6.59',
5991             'ExtUtils::MM_BeOS'     => '6.59',
5992             'ExtUtils::MM_Cygwin'   => '6.59',
5993             'ExtUtils::MM_DOS'      => '6.59',
5994             'ExtUtils::MM_Darwin'   => '6.59',
5995             'ExtUtils::MM_MacOS'    => '6.59',
5996             'ExtUtils::MM_NW5'      => '6.59',
5997             'ExtUtils::MM_OS2'      => '6.59',
5998             'ExtUtils::MM_QNX'      => '6.59',
5999             'ExtUtils::MM_UWIN'     => '6.59',
6000             'ExtUtils::MM_Unix'     => '6.59',
6001             'ExtUtils::MM_VMS'      => '6.59',
6002             'ExtUtils::MM_VOS'      => '6.59',
6003             'ExtUtils::MM_Win32'    => '6.59',
6004             'ExtUtils::MM_Win95'    => '6.59',
6005             'ExtUtils::MY'          => '6.59',
6006             'ExtUtils::MakeMaker'   => '6.59',
6007             'ExtUtils::MakeMaker::Config'=> '6.59',
6008             'ExtUtils::Manifest'    => '1.60',
6009             'ExtUtils::Mkbootstrap' => '6.59',
6010             'ExtUtils::Mksymlists'  => '6.59',
6011             'ExtUtils::ParseXS'     => '3.03_01',
6012             'ExtUtils::Typemaps'    => '1.01',
6013             'ExtUtils::testlib'     => '6.59',
6014             'File::Spec'            => '3.34',
6015             'File::Spec::Mac'       => '3.35',
6016             'File::Spec::Unix'      => '3.34',
6017             'File::Spec::VMS'       => '3.35',
6018             'File::Spec::Win32'     => '3.35',
6019             'I18N::LangTags'        => '0.37',
6020             'IO'                    => '1.25_05',
6021             'IO::Handle'            => '1.32',
6022             'IO::Socket'            => '1.33',
6023             'IO::Socket::INET'      => '1.32',
6024             'IPC::Open3'            => '1.12',
6025             'Math::BigFloat'        => '1.995',
6026             'Math::BigFloat::Trace' => '0.29',
6027             'Math::BigInt'          => '1.996',
6028             'Math::BigInt::Trace'   => '0.29',
6029             'Module::Build'         => '0.39_01',
6030             'Module::Build::Base'   => '0.39_01',
6031             'Module::Build::Compat' => '0.39_01',
6032             'Module::Build::Config' => '0.39_01',
6033             'Module::Build::Cookbook'=> '0.39_01',
6034             'Module::Build::Dumper' => '0.39_01',
6035             'Module::Build::ModuleInfo'=> '0.39_01',
6036             'Module::Build::Notes'  => '0.39_01',
6037             'Module::Build::PPMMaker'=> '0.39_01',
6038             'Module::Build::Platform::Amiga'=> '0.39_01',
6039             'Module::Build::Platform::Default'=> '0.39_01',
6040             'Module::Build::Platform::EBCDIC'=> '0.39_01',
6041             'Module::Build::Platform::MPEiX'=> '0.39_01',
6042             'Module::Build::Platform::MacOS'=> '0.39_01',
6043             'Module::Build::Platform::RiscOS'=> '0.39_01',
6044             'Module::Build::Platform::Unix'=> '0.39_01',
6045             'Module::Build::Platform::VMS'=> '0.39_01',
6046             'Module::Build::Platform::VOS'=> '0.39_01',
6047             'Module::Build::Platform::Windows'=> '0.39_01',
6048             'Module::Build::Platform::aix'=> '0.39_01',
6049             'Module::Build::Platform::cygwin'=> '0.39_01',
6050             'Module::Build::Platform::darwin'=> '0.39_01',
6051             'Module::Build::Platform::os2'=> '0.39_01',
6052             'Module::Build::PodParser'=> '0.39_01',
6053             'Module::CoreList'      => '2.55',
6054             'Module::Load'          => '0.20',
6055             'Module::Metadata'      => '1.000005_01',
6056             'Opcode'                => '1.20',
6057             'Params::Check'         => '0.32',
6058             'PerlIO::via'           => '0.12',
6059             'Term::ANSIColor'       => '3.01',
6060             'Unicode::Collate'      => '0.78',
6061             'Unicode::Normalize'    => '1.13',
6062             'Unicode::UCD'          => '0.34',
6063             'bigint'                => '0.29',
6064             'bignum'                => '0.29',
6065             'bigrat'                => '0.29',
6066             'diagnostics'           => '1.24',
6067             'fields'                => '2.16',
6068             'inc::latest'           => '0.39_01',
6069         },
6070         removed => {
6071         }
6072     },
6073     5.015003 => {
6074         delta_from => 5.015002,
6075         changed => {
6076             'AnyDBM_File'           => '1.01',
6077             'Archive::Extract'      => '0.56',
6078             'Archive::Tar'          => '1.78',
6079             'Archive::Tar::Constant'=> '1.78',
6080             'Archive::Tar::File'    => '1.78',
6081             'Attribute::Handlers'   => '0.93',
6082             'B'                     => '1.32',
6083             'B::Concise'            => '0.86',
6084             'B::Deparse'            => '1.08',
6085             'CPAN::Meta'            => '2.112621',
6086             'CPAN::Meta::Converter' => '2.112621',
6087             'CPAN::Meta::Feature'   => '2.112621',
6088             'CPAN::Meta::History'   => '2.112621',
6089             'CPAN::Meta::Prereqs'   => '2.112621',
6090             'CPAN::Meta::Spec'      => '2.112621',
6091             'CPAN::Meta::Validator' => '2.112621',
6092             'CPAN::Meta::YAML'      => '0.004',
6093             'CPANPLUS'              => '0.9111',
6094             'CPANPLUS::Dist::Build' => '0.58',
6095             'CPANPLUS::Dist::Build::Constants'=> '0.58',
6096             'CPANPLUS::Internals'   => '0.9111',
6097             'CPANPLUS::Shell::Default'=> '0.9111',
6098             'Carp'                  => '1.23',
6099             'Carp::Heavy'           => '1.23',
6100             'Data::Dumper'          => '2.134',
6101             'Devel::PPPort'         => '3.20',
6102             'Errno'                 => '1.14',
6103             'Exporter'              => '5.65',
6104             'Exporter::Heavy'       => '5.65',
6105             'ExtUtils::ParseXS'     => '3.04_04',
6106             'ExtUtils::ParseXS::Constants'=> '3.04_04',
6107             'ExtUtils::ParseXS::CountLines'=> '3.04_04',
6108             'ExtUtils::ParseXS::Utilities'=> '3.04_04',
6109             'ExtUtils::Typemaps'    => '1.02',
6110             'File::Glob'            => '1.13',
6111             'Filter::Simple'        => '0.88',
6112             'IO'                    => '1.25_06',
6113             'IO::Handle'            => '1.33',
6114             'Locale::Codes'         => '3.18',
6115             'Locale::Codes::Constants'=> '3.18',
6116             'Locale::Codes::Country'=> '3.18',
6117             'Locale::Codes::Country_Codes'=> '3.18',
6118             'Locale::Codes::Currency'=> '3.18',
6119             'Locale::Codes::Currency_Codes'=> '3.18',
6120             'Locale::Codes::LangExt'=> '3.18',
6121             'Locale::Codes::LangExt_Codes'=> '3.18',
6122             'Locale::Codes::LangVar'=> '3.18',
6123             'Locale::Codes::LangVar_Codes'=> '3.18',
6124             'Locale::Codes::Language'=> '3.18',
6125             'Locale::Codes::Language_Codes'=> '3.18',
6126             'Locale::Codes::Script' => '3.18',
6127             'Locale::Codes::Script_Codes'=> '3.18',
6128             'Locale::Country'       => '3.18',
6129             'Locale::Currency'      => '3.18',
6130             'Locale::Language'      => '3.18',
6131             'Locale::Script'        => '3.18',
6132             'Math::BigFloat'        => '1.997',
6133             'Math::BigInt'          => '1.997',
6134             'Math::BigInt::Calc'    => '1.997',
6135             'Math::BigInt::CalcEmu' => '1.997',
6136             'Math::BigInt::FastCalc'=> '0.30',
6137             'Math::BigRat'          => '0.2603',
6138             'Module::CoreList'      => '2.56',
6139             'Module::Load::Conditional'=> '0.46',
6140             'Module::Metadata'      => '1.000007',
6141             'ODBM_File'             => '1.12',
6142             'POSIX'                 => '1.26',
6143             'Pod::Perldoc'          => '3.15_07',
6144             'Pod::Simple'           => '3.19',
6145             'Pod::Simple::BlackBox' => '3.19',
6146             'Pod::Simple::Checker'  => '3.19',
6147             'Pod::Simple::Debug'    => '3.19',
6148             'Pod::Simple::DumpAsText'=> '3.19',
6149             'Pod::Simple::DumpAsXML'=> '3.19',
6150             'Pod::Simple::HTML'     => '3.19',
6151             'Pod::Simple::HTMLBatch'=> '3.19',
6152             'Pod::Simple::LinkSection'=> '3.19',
6153             'Pod::Simple::Methody'  => '3.19',
6154             'Pod::Simple::Progress' => '3.19',
6155             'Pod::Simple::PullParser'=> '3.19',
6156             'Pod::Simple::PullParserEndToken'=> '3.19',
6157             'Pod::Simple::PullParserStartToken'=> '3.19',
6158             'Pod::Simple::PullParserTextToken'=> '3.19',
6159             'Pod::Simple::PullParserToken'=> '3.19',
6160             'Pod::Simple::RTF'      => '3.19',
6161             'Pod::Simple::Search'   => '3.19',
6162             'Pod::Simple::SimpleTree'=> '3.19',
6163             'Pod::Simple::Text'     => '3.19',
6164             'Pod::Simple::TextContent'=> '3.19',
6165             'Pod::Simple::TiedOutFH'=> '3.19',
6166             'Pod::Simple::Transcode'=> '3.19',
6167             'Pod::Simple::TranscodeDumb'=> '3.19',
6168             'Pod::Simple::TranscodeSmart'=> '3.19',
6169             'Pod::Simple::XHTML'    => '3.19',
6170             'Pod::Simple::XMLOutStream'=> '3.19',
6171             'Search::Dict'          => '1.04',
6172             'Socket'                => '1.94_01',
6173             'Storable'              => '2.32',
6174             'Text::Abbrev'          => '1.02',
6175             'Tie::Array'            => '1.05',
6176             'UNIVERSAL'             => '1.09',
6177             'Unicode::UCD'          => '0.35',
6178             'XS::APItest'           => '0.31',
6179             'XSLoader'              => '0.16',
6180             'attributes'            => '0.16',
6181             'diagnostics'           => '1.25',
6182             'open'                  => '1.09',
6183             'perlfaq'               => '5.0150034',
6184             'threads'               => '1.85',
6185             'threads::shared'       => '1.40',
6186         },
6187         removed => {
6188         }
6189     },
6190     5.015004 => {
6191         delta_from => 5.015003,
6192         changed => {
6193             'Archive::Tar'          => '1.80',
6194             'Archive::Tar::Constant'=> '1.80',
6195             'Archive::Tar::File'    => '1.80',
6196             'Digest'                => '1.17',
6197             'DynaLoader'            => '1.14',
6198             'ExtUtils::Command::MM' => '6.61_01',
6199             'ExtUtils::Liblist'     => '6.61_01',
6200             'ExtUtils::Liblist::Kid'=> '6.61_01',
6201             'ExtUtils::MM'          => '6.61_01',
6202             'ExtUtils::MM_AIX'      => '6.61_01',
6203             'ExtUtils::MM_Any'      => '6.61_01',
6204             'ExtUtils::MM_BeOS'     => '6.61_01',
6205             'ExtUtils::MM_Cygwin'   => '6.61_01',
6206             'ExtUtils::MM_DOS'      => '6.61_01',
6207             'ExtUtils::MM_Darwin'   => '6.61_01',
6208             'ExtUtils::MM_MacOS'    => '6.61_01',
6209             'ExtUtils::MM_NW5'      => '6.61_01',
6210             'ExtUtils::MM_OS2'      => '6.61_01',
6211             'ExtUtils::MM_QNX'      => '6.61_01',
6212             'ExtUtils::MM_UWIN'     => '6.61_01',
6213             'ExtUtils::MM_Unix'     => '6.61_01',
6214             'ExtUtils::MM_VMS'      => '6.61_01',
6215             'ExtUtils::MM_VOS'      => '6.61_01',
6216             'ExtUtils::MM_Win32'    => '6.61_01',
6217             'ExtUtils::MM_Win95'    => '6.61_01',
6218             'ExtUtils::MY'          => '6.61_01',
6219             'ExtUtils::MakeMaker'   => '6.61_01',
6220             'ExtUtils::MakeMaker::Config'=> '6.61_01',
6221             'ExtUtils::Mkbootstrap' => '6.61_01',
6222             'ExtUtils::Mksymlists'  => '6.61_01',
6223             'ExtUtils::ParseXS'     => '3.05',
6224             'ExtUtils::ParseXS::Constants'=> '3.05',
6225             'ExtUtils::ParseXS::CountLines'=> '3.05',
6226             'ExtUtils::ParseXS::Utilities'=> '3.05',
6227             'ExtUtils::testlib'     => '6.61_01',
6228             'File::DosGlob'         => '1.05',
6229             'Module::CoreList'      => '2.57',
6230             'Module::Load'          => '0.22',
6231             'Unicode::Collate'      => '0.80',
6232             'Unicode::Collate::Locale'=> '0.80',
6233             'Unicode::UCD'          => '0.36',
6234             'XS::APItest'           => '0.32',
6235             'XS::Typemap'           => '0.07',
6236             'attributes'            => '0.17',
6237             'base'                  => '2.18',
6238             'constant'              => '1.23',
6239             'mro'                   => '1.09',
6240             'open'                  => '1.10',
6241             'perlfaq'               => '5.0150035',
6242         },
6243         removed => {
6244         }
6245     },
6246     5.015005 => {
6247         delta_from => 5.015004,
6248         changed => {
6249             'Archive::Extract'      => '0.58',
6250             'B::Concise'            => '0.87',
6251             'B::Deparse'            => '1.09',
6252             'CGI'                   => '3.58',
6253             'CGI::Fast'             => '1.09',
6254             'CPANPLUS'              => '0.9112',
6255             'CPANPLUS::Dist::Build' => '0.60',
6256             'CPANPLUS::Dist::Build::Constants'=> '0.60',
6257             'CPANPLUS::Internals'   => '0.9112',
6258             'CPANPLUS::Shell::Default'=> '0.9112',
6259             'Compress::Raw::Bzip2'  => '2.042',
6260             'Compress::Raw::Zlib'   => '2.042',
6261             'Compress::Zlib'        => '2.042',
6262             'Digest::SHA'           => '5.63',
6263             'Errno'                 => '1.15',
6264             'ExtUtils::Command::MM' => '6.63_02',
6265             'ExtUtils::Liblist'     => '6.63_02',
6266             'ExtUtils::Liblist::Kid'=> '6.63_02',
6267             'ExtUtils::MM'          => '6.63_02',
6268             'ExtUtils::MM_AIX'      => '6.63_02',
6269             'ExtUtils::MM_Any'      => '6.63_02',
6270             'ExtUtils::MM_BeOS'     => '6.63_02',
6271             'ExtUtils::MM_Cygwin'   => '6.63_02',
6272             'ExtUtils::MM_DOS'      => '6.63_02',
6273             'ExtUtils::MM_Darwin'   => '6.63_02',
6274             'ExtUtils::MM_MacOS'    => '6.63_02',
6275             'ExtUtils::MM_NW5'      => '6.63_02',
6276             'ExtUtils::MM_OS2'      => '6.63_02',
6277             'ExtUtils::MM_QNX'      => '6.63_02',
6278             'ExtUtils::MM_UWIN'     => '6.63_02',
6279             'ExtUtils::MM_Unix'     => '6.63_02',
6280             'ExtUtils::MM_VMS'      => '6.63_02',
6281             'ExtUtils::MM_VOS'      => '6.63_02',
6282             'ExtUtils::MM_Win32'    => '6.63_02',
6283             'ExtUtils::MM_Win95'    => '6.63_02',
6284             'ExtUtils::MY'          => '6.63_02',
6285             'ExtUtils::MakeMaker'   => '6.63_02',
6286             'ExtUtils::MakeMaker::Config'=> '6.63_02',
6287             'ExtUtils::Mkbootstrap' => '6.63_02',
6288             'ExtUtils::Mksymlists'  => '6.63_02',
6289             'ExtUtils::testlib'     => '6.63_02',
6290             'File::DosGlob'         => '1.06',
6291             'File::Glob'            => '1.14',
6292             'HTTP::Tiny'            => '0.016',
6293             'IO::Compress::Adapter::Bzip2'=> '2.042',
6294             'IO::Compress::Adapter::Deflate'=> '2.042',
6295             'IO::Compress::Adapter::Identity'=> '2.042',
6296             'IO::Compress::Base'    => '2.042',
6297             'IO::Compress::Base::Common'=> '2.042',
6298             'IO::Compress::Bzip2'   => '2.042',
6299             'IO::Compress::Deflate' => '2.042',
6300             'IO::Compress::Gzip'    => '2.042',
6301             'IO::Compress::Gzip::Constants'=> '2.042',
6302             'IO::Compress::RawDeflate'=> '2.042',
6303             'IO::Compress::Zip'     => '2.042',
6304             'IO::Compress::Zip::Constants'=> '2.042',
6305             'IO::Compress::Zlib::Constants'=> '2.042',
6306             'IO::Compress::Zlib::Extra'=> '2.042',
6307             'IO::Uncompress::Adapter::Bunzip2'=> '2.042',
6308             'IO::Uncompress::Adapter::Identity'=> '2.042',
6309             'IO::Uncompress::Adapter::Inflate'=> '2.042',
6310             'IO::Uncompress::AnyInflate'=> '2.042',
6311             'IO::Uncompress::AnyUncompress'=> '2.042',
6312             'IO::Uncompress::Base'  => '2.042',
6313             'IO::Uncompress::Bunzip2'=> '2.042',
6314             'IO::Uncompress::Gunzip'=> '2.042',
6315             'IO::Uncompress::Inflate'=> '2.042',
6316             'IO::Uncompress::RawInflate'=> '2.042',
6317             'IO::Uncompress::Unzip' => '2.042',
6318             'Locale::Maketext'      => '1.20',
6319             'Locale::Maketext::Guts'=> '1.20',
6320             'Locale::Maketext::GutsLoader'=> '1.20',
6321             'Module::CoreList'      => '2.58',
6322             'Opcode'                => '1.21',
6323             'Socket'                => '1.94_02',
6324             'Storable'              => '2.33',
6325             'UNIVERSAL'             => '1.10',
6326             'Unicode::Collate'      => '0.85',
6327             'Unicode::Collate::CJK::Pinyin'=> '0.85',
6328             'Unicode::Collate::CJK::Stroke'=> '0.85',
6329             'Unicode::Collate::Locale'=> '0.85',
6330             'Unicode::UCD'          => '0.37',
6331             'XS::APItest'           => '0.33',
6332             'arybase'               => '0.01',
6333             'charnames'             => '1.24',
6334             'feature'               => '1.23',
6335             'perlfaq'               => '5.0150036',
6336             'strict'                => '1.05',
6337             'unicore::Name'         => undef,
6338         },
6339         removed => {
6340         }
6341     },
6342     5.015006 => {
6343         delta_from => 5.015005,
6344         changed => {
6345             'Archive::Tar'          => '1.82',
6346             'Archive::Tar::Constant'=> '1.82',
6347             'Archive::Tar::File'    => '1.82',
6348             'AutoLoader'            => '5.72',
6349             'B::Concise'            => '0.88',
6350             'B::Debug'              => '1.17',
6351             'B::Deparse'            => '1.10',
6352             'CPAN::Meta::YAML'      => '0.005',
6353             'CPANPLUS'              => '0.9113',
6354             'CPANPLUS::Internals'   => '0.9113',
6355             'CPANPLUS::Shell::Default'=> '0.9113',
6356             'Carp'                  => '1.24',
6357             'Compress::Raw::Bzip2'  => '2.045',
6358             'Compress::Raw::Zlib'   => '2.045',
6359             'Compress::Zlib'        => '2.045',
6360             'Cwd'                   => '3.38',
6361             'DB'                    => '1.04',
6362             'Data::Dumper'          => '2.135_01',
6363             'Digest::SHA'           => '5.70',
6364             'Dumpvalue'             => '1.17',
6365             'Exporter'              => '5.66',
6366             'Exporter::Heavy'       => '5.66',
6367             'ExtUtils::CBuilder'    => '0.280205',
6368             'ExtUtils::CBuilder::Platform::os2'=> '0.280204',
6369             'ExtUtils::Packlist'    => '1.45',
6370             'ExtUtils::ParseXS'     => '3.08',
6371             'ExtUtils::ParseXS::Constants'=> '3.08',
6372             'ExtUtils::ParseXS::CountLines'=> '3.08',
6373             'ExtUtils::ParseXS::Utilities'=> '3.08',
6374             'File::Basename'        => '2.84',
6375             'File::Glob'            => '1.15',
6376             'File::Spec::Unix'      => '3.35',
6377             'Getopt::Std'           => '1.07',
6378             'I18N::LangTags'        => '0.38',
6379             'IO::Compress::Adapter::Bzip2'=> '2.045',
6380             'IO::Compress::Adapter::Deflate'=> '2.045',
6381             'IO::Compress::Adapter::Identity'=> '2.045',
6382             'IO::Compress::Base'    => '2.046',
6383             'IO::Compress::Base::Common'=> '2.045',
6384             'IO::Compress::Bzip2'   => '2.045',
6385             'IO::Compress::Deflate' => '2.045',
6386             'IO::Compress::Gzip'    => '2.045',
6387             'IO::Compress::Gzip::Constants'=> '2.045',
6388             'IO::Compress::RawDeflate'=> '2.045',
6389             'IO::Compress::Zip'     => '2.046',
6390             'IO::Compress::Zip::Constants'=> '2.045',
6391             'IO::Compress::Zlib::Constants'=> '2.045',
6392             'IO::Compress::Zlib::Extra'=> '2.045',
6393             'IO::Dir'               => '1.09',
6394             'IO::File'              => '1.16',
6395             'IO::Uncompress::Adapter::Bunzip2'=> '2.045',
6396             'IO::Uncompress::Adapter::Identity'=> '2.045',
6397             'IO::Uncompress::Adapter::Inflate'=> '2.045',
6398             'IO::Uncompress::AnyInflate'=> '2.045',
6399             'IO::Uncompress::AnyUncompress'=> '2.045',
6400             'IO::Uncompress::Base'  => '2.046',
6401             'IO::Uncompress::Bunzip2'=> '2.045',
6402             'IO::Uncompress::Gunzip'=> '2.045',
6403             'IO::Uncompress::Inflate'=> '2.045',
6404             'IO::Uncompress::RawInflate'=> '2.045',
6405             'IO::Uncompress::Unzip' => '2.046',
6406             'Locale::Codes'         => '3.20',
6407             'Locale::Codes::Constants'=> '3.20',
6408             'Locale::Codes::Country'=> '3.20',
6409             'Locale::Codes::Country_Codes'=> '3.20',
6410             'Locale::Codes::Country_Retired'=> '3.20',
6411             'Locale::Codes::Currency'=> '3.20',
6412             'Locale::Codes::Currency_Codes'=> '3.20',
6413             'Locale::Codes::Currency_Retired'=> '3.20',
6414             'Locale::Codes::LangExt'=> '3.20',
6415             'Locale::Codes::LangExt_Codes'=> '3.20',
6416             'Locale::Codes::LangExt_Retired'=> '3.20',
6417             'Locale::Codes::LangFam'=> '3.20',
6418             'Locale::Codes::LangFam_Codes'=> '3.20',
6419             'Locale::Codes::LangFam_Retired'=> '3.20',
6420             'Locale::Codes::LangVar'=> '3.20',
6421             'Locale::Codes::LangVar_Codes'=> '3.20',
6422             'Locale::Codes::LangVar_Retired'=> '3.20',
6423             'Locale::Codes::Language'=> '3.20',
6424             'Locale::Codes::Language_Codes'=> '3.20',
6425             'Locale::Codes::Language_Retired'=> '3.20',
6426             'Locale::Codes::Script' => '3.20',
6427             'Locale::Codes::Script_Codes'=> '3.20',
6428             'Locale::Codes::Script_Retired'=> '3.20',
6429             'Locale::Country'       => '3.20',
6430             'Locale::Currency'      => '3.20',
6431             'Locale::Language'      => '3.20',
6432             'Locale::Maketext'      => '1.21',
6433             'Locale::Script'        => '3.20',
6434             'Module::CoreList'      => '2.59',
6435             'Module::Loaded'        => '0.08',
6436             'Opcode'                => '1.22',
6437             'POSIX'                 => '1.27',
6438             'Pod::Html'             => '1.12',
6439             'Pod::LaTeX'            => '0.60',
6440             'Pod::Perldoc'          => '3.15_08',
6441             'Safe'                  => '2.30',
6442             'SelfLoader'            => '1.20',
6443             'Socket'                => '1.97',
6444             'Storable'              => '2.34',
6445             'UNIVERSAL'             => '1.11',
6446             'Unicode::Collate'      => '0.87',
6447             'Unicode::Collate::Locale'=> '0.87',
6448             'XS::APItest'           => '0.34',
6449             'arybase'               => '0.02',
6450             'charnames'             => '1.27',
6451             'diagnostics'           => '1.26',
6452             'feature'               => '1.24',
6453             'if'                    => '0.0602',
6454             'overload'              => '1.16',
6455             'sigtrap'               => '1.06',
6456             'strict'                => '1.06',
6457             'threads'               => '1.86',
6458             'version'               => '0.96',
6459         },
6460         removed => {
6461         }
6462     },
6463     5.015007 => {
6464         delta_from => 5.015006,
6465         changed => {
6466             'B'                     => '1.33',
6467             'B::Deparse'            => '1.11',
6468             'CGI'                   => '3.59',
6469             'CPAN::Meta'            => '2.113640',
6470             'CPAN::Meta::Converter' => '2.113640',
6471             'CPAN::Meta::Feature'   => '2.113640',
6472             'CPAN::Meta::History'   => '2.113640',
6473             'CPAN::Meta::Prereqs'   => '2.113640',
6474             'CPAN::Meta::Requirements'=> '2.113640',
6475             'CPAN::Meta::Spec'      => '2.113640',
6476             'CPAN::Meta::Validator' => '2.113640',
6477             'CPANPLUS'              => '0.9116',
6478             'CPANPLUS::Internals'   => '0.9116',
6479             'CPANPLUS::Shell::Default'=> '0.9116',
6480             'Cwd'                   => '3.39_01',
6481             'Data::Dumper'          => '2.135_03',
6482             'Devel::InnerPackage'   => '0.4',
6483             'ExtUtils::CBuilder::Base'=> '0.280205',
6484             'ExtUtils::CBuilder::Platform::Unix'=> '0.280205',
6485             'ExtUtils::CBuilder::Platform::VMS'=> '0.280205',
6486             'ExtUtils::CBuilder::Platform::Windows'=> '0.280205',
6487             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280205',
6488             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280205',
6489             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280205',
6490             'ExtUtils::CBuilder::Platform::aix'=> '0.280205',
6491             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280205',
6492             'ExtUtils::CBuilder::Platform::darwin'=> '0.280205',
6493             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280205',
6494             'ExtUtils::CBuilder::Platform::os2'=> '0.280205',
6495             'ExtUtils::Manifest'    => '1.61',
6496             'ExtUtils::Packlist'    => '1.46',
6497             'ExtUtils::ParseXS'     => '3.12',
6498             'ExtUtils::ParseXS::Constants'=> '3.12',
6499             'ExtUtils::ParseXS::CountLines'=> '3.12',
6500             'ExtUtils::ParseXS::Utilities'=> '3.12',
6501             'ExtUtils::Typemaps'    => '1.03',
6502             'ExtUtils::Typemaps::Cmd'=> undef,
6503             'ExtUtils::Typemaps::Type'=> '0.06',
6504             'File::Glob'            => '1.16',
6505             'File::Spec'            => '3.39_01',
6506             'File::Spec::Cygwin'    => '3.39_01',
6507             'File::Spec::Epoc'      => '3.39_01',
6508             'File::Spec::Functions' => '3.39_01',
6509             'File::Spec::Mac'       => '3.39_01',
6510             'File::Spec::OS2'       => '3.39_01',
6511             'File::Spec::Unix'      => '3.39_01',
6512             'File::Spec::VMS'       => '3.39_01',
6513             'File::Spec::Win32'     => '3.39_01',
6514             'IO::Dir'               => '1.10',
6515             'IO::Pipe'              => '1.15',
6516             'IO::Poll'              => '0.09',
6517             'IO::Select'            => '1.21',
6518             'IO::Socket'            => '1.34',
6519             'IO::Socket::INET'      => '1.33',
6520             'IO::Socket::UNIX'      => '1.24',
6521             'Locale::Maketext'      => '1.22',
6522             'Math::BigInt'          => '1.998',
6523             'Module::CoreList'      => '2.60',
6524             'Module::Pluggable'     => '4.0',
6525             'POSIX'                 => '1.28',
6526             'PerlIO::scalar'        => '0.13',
6527             'Pod::Html'             => '1.13',
6528             'Pod::Perldoc'          => '3.15_15',
6529             'Pod::Perldoc::BaseTo'  => '3.15_15',
6530             'Pod::Perldoc::GetOptsOO'=> '3.15_15',
6531             'Pod::Perldoc::ToANSI'  => '3.15_15',
6532             'Pod::Perldoc::ToChecker'=> '3.15_15',
6533             'Pod::Perldoc::ToMan'   => '3.15_15',
6534             'Pod::Perldoc::ToNroff' => '3.15_15',
6535             'Pod::Perldoc::ToPod'   => '3.15_15',
6536             'Pod::Perldoc::ToRtf'   => '3.15_15',
6537             'Pod::Perldoc::ToTerm'  => '3.15_15',
6538             'Pod::Perldoc::ToText'  => '3.15_15',
6539             'Pod::Perldoc::ToTk'    => '3.15_15',
6540             'Pod::Perldoc::ToXml'   => '3.15_15',
6541             'Term::UI'              => '0.30',
6542             'Tie::File'             => '0.98',
6543             'Unicode::UCD'          => '0.39',
6544             'Version::Requirements' => '0.101021',
6545             'XS::APItest'           => '0.35',
6546             '_charnames'            => '1.28',
6547             'arybase'               => '0.03',
6548             'autouse'               => '1.07',
6549             'charnames'             => '1.28',
6550             'diagnostics'           => '1.27',
6551             'feature'               => '1.25',
6552             'overload'              => '1.17',
6553             'overloading'           => '0.02',
6554             'perlfaq'               => '5.0150038',
6555         },
6556         removed => {
6557         }
6558     },
6559     5.015008 => {
6560         delta_from => 5.015007,
6561         changed => {
6562             'B'                     => '1.34',
6563             'B::Deparse'            => '1.12',
6564             'CPAN::Meta'            => '2.120351',
6565             'CPAN::Meta::Converter' => '2.120351',
6566             'CPAN::Meta::Feature'   => '2.120351',
6567             'CPAN::Meta::History'   => '2.120351',
6568             'CPAN::Meta::Prereqs'   => '2.120351',
6569             'CPAN::Meta::Requirements'=> '2.120351',
6570             'CPAN::Meta::Spec'      => '2.120351',
6571             'CPAN::Meta::Validator' => '2.120351',
6572             'CPAN::Meta::YAML'      => '0.007',
6573             'CPANPLUS'              => '0.9118',
6574             'CPANPLUS::Dist::Build' => '0.62',
6575             'CPANPLUS::Dist::Build::Constants'=> '0.62',
6576             'CPANPLUS::Internals'   => '0.9118',
6577             'CPANPLUS::Shell::Default'=> '0.9118',
6578             'Carp'                  => '1.25',
6579             'Carp::Heavy'           => '1.25',
6580             'Compress::Raw::Bzip2'  => '2.048',
6581             'Compress::Raw::Zlib'   => '2.048',
6582             'Compress::Zlib'        => '2.048',
6583             'Cwd'                   => '3.39_02',
6584             'DB_File'               => '1.826',
6585             'Data::Dumper'          => '2.135_05',
6586             'English'               => '1.05',
6587             'ExtUtils::Install'     => '1.58',
6588             'ExtUtils::ParseXS'     => '3.16',
6589             'ExtUtils::ParseXS::Constants'=> '3.16',
6590             'ExtUtils::ParseXS::CountLines'=> '3.16',
6591             'ExtUtils::ParseXS::Utilities'=> '3.16',
6592             'ExtUtils::Typemaps'    => '3.16',
6593             'ExtUtils::Typemaps::Cmd'=> '3.16',
6594             'ExtUtils::Typemaps::InputMap'=> '3.16',
6595             'ExtUtils::Typemaps::OutputMap'=> '3.16',
6596             'ExtUtils::Typemaps::Type'=> '3.16',
6597             'File::Copy'            => '2.23',
6598             'File::Glob'            => '1.17',
6599             'File::Spec'            => '3.39_02',
6600             'File::Spec::Cygwin'    => '3.39_02',
6601             'File::Spec::Epoc'      => '3.39_02',
6602             'File::Spec::Functions' => '3.39_02',
6603             'File::Spec::Mac'       => '3.39_02',
6604             'File::Spec::OS2'       => '3.39_02',
6605             'File::Spec::Unix'      => '3.39_02',
6606             'File::Spec::VMS'       => '3.39_02',
6607             'File::Spec::Win32'     => '3.39_02',
6608             'Filter::Util::Call'    => '1.40',
6609             'IO::Compress::Adapter::Bzip2'=> '2.048',
6610             'IO::Compress::Adapter::Deflate'=> '2.048',
6611             'IO::Compress::Adapter::Identity'=> '2.048',
6612             'IO::Compress::Base'    => '2.048',
6613             'IO::Compress::Base::Common'=> '2.048',
6614             'IO::Compress::Bzip2'   => '2.048',
6615             'IO::Compress::Deflate' => '2.048',
6616             'IO::Compress::Gzip'    => '2.048',
6617             'IO::Compress::Gzip::Constants'=> '2.048',
6618             'IO::Compress::RawDeflate'=> '2.048',
6619             'IO::Compress::Zip'     => '2.048',
6620             'IO::Compress::Zip::Constants'=> '2.048',
6621             'IO::Compress::Zlib::Constants'=> '2.048',
6622             'IO::Compress::Zlib::Extra'=> '2.048',
6623             'IO::Uncompress::Adapter::Bunzip2'=> '2.048',
6624             'IO::Uncompress::Adapter::Identity'=> '2.048',
6625             'IO::Uncompress::Adapter::Inflate'=> '2.048',
6626             'IO::Uncompress::AnyInflate'=> '2.048',
6627             'IO::Uncompress::AnyUncompress'=> '2.048',
6628             'IO::Uncompress::Base'  => '2.048',
6629             'IO::Uncompress::Bunzip2'=> '2.048',
6630             'IO::Uncompress::Gunzip'=> '2.048',
6631             'IO::Uncompress::Inflate'=> '2.048',
6632             'IO::Uncompress::RawInflate'=> '2.048',
6633             'IO::Uncompress::Unzip' => '2.048',
6634             'IPC::Cmd'              => '0.76',
6635             'Math::Complex'         => '1.59',
6636             'Math::Trig'            => '1.23',
6637             'Module::Metadata'      => '1.000009',
6638             'Opcode'                => '1.23',
6639             'POSIX'                 => '1.30',
6640             'Parse::CPAN::Meta'     => '1.4402',
6641             'PerlIO::mmap'          => '0.010',
6642             'Pod::Checker'          => '1.51',
6643             'Pod::Find'             => '1.51',
6644             'Pod::Functions'        => '1.05',
6645             'Pod::Html'             => '1.14',
6646             'Pod::InputObjects'     => '1.51',
6647             'Pod::ParseUtils'       => '1.51',
6648             'Pod::Parser'           => '1.51',
6649             'Pod::PlainText'        => '2.05',
6650             'Pod::Select'           => '1.51',
6651             'Pod::Usage'            => '1.51',
6652             'Safe'                  => '2.31',
6653             'Socket'                => '1.98',
6654             'Term::Cap'             => '1.13',
6655             'Term::ReadLine'        => '1.08',
6656             'Time::HiRes'           => '1.9725',
6657             'Unicode'               => '6.1.0',
6658             'Unicode::UCD'          => '0.41',
6659             'Version::Requirements' => '0.101022',
6660             'XS::APItest'           => '0.36',
6661             'XS::Typemap'           => '0.08',
6662             '_charnames'            => '1.29',
6663             'arybase'               => '0.04',
6664             'charnames'             => '1.29',
6665             'diagnostics'           => '1.28',
6666             'feature'               => '1.26',
6667             'locale'                => '1.01',
6668             'overload'              => '1.18',
6669             'perlfaq'               => '5.0150039',
6670             're'                    => '0.19',
6671             'subs'                  => '1.01',
6672             'warnings'              => '1.13',
6673         },
6674         removed => {
6675         }
6676     },
6677     5.015009 => {
6678         delta_from => 5.015008,
6679         changed => {
6680             'B::Deparse'            => '1.13',
6681             'B::Lint'               => '1.14',
6682             'B::Lint::Debug'        => '1.14',
6683             'CPAN::Meta'            => '2.120630',
6684             'CPAN::Meta::Converter' => '2.120630',
6685             'CPAN::Meta::Feature'   => '2.120630',
6686             'CPAN::Meta::History'   => '2.120630',
6687             'CPAN::Meta::Prereqs'   => '2.120630',
6688             'CPAN::Meta::Requirements'=> '2.120630',
6689             'CPAN::Meta::Spec'      => '2.120630',
6690             'CPAN::Meta::Validator' => '2.120630',
6691             'CPANPLUS'              => '0.9121',
6692             'CPANPLUS::Internals'   => '0.9121',
6693             'CPANPLUS::Shell::Default'=> '0.9121',
6694             'Data::Dumper'          => '2.135_06',
6695             'Digest::SHA'           => '5.71',
6696             'ExtUtils::CBuilder'    => '0.280206',
6697             'ExtUtils::CBuilder::Base'=> '0.280206',
6698             'ExtUtils::CBuilder::Platform::Unix'=> '0.280206',
6699             'ExtUtils::CBuilder::Platform::VMS'=> '0.280206',
6700             'ExtUtils::CBuilder::Platform::Windows'=> '0.280206',
6701             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280206',
6702             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280206',
6703             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280206',
6704             'ExtUtils::CBuilder::Platform::aix'=> '0.280206',
6705             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280206',
6706             'ExtUtils::CBuilder::Platform::darwin'=> '0.280206',
6707             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280206',
6708             'ExtUtils::CBuilder::Platform::os2'=> '0.280206',
6709             'HTTP::Tiny'            => '0.017',
6710             'Locale::Codes'         => '3.21',
6711             'Locale::Codes::Constants'=> '3.21',
6712             'Locale::Codes::Country'=> '3.21',
6713             'Locale::Codes::Country_Codes'=> '3.21',
6714             'Locale::Codes::Country_Retired'=> '3.21',
6715             'Locale::Codes::Currency'=> '3.21',
6716             'Locale::Codes::Currency_Codes'=> '3.21',
6717             'Locale::Codes::Currency_Retired'=> '3.21',
6718             'Locale::Codes::LangExt'=> '3.21',
6719             'Locale::Codes::LangExt_Codes'=> '3.21',
6720             'Locale::Codes::LangExt_Retired'=> '3.21',
6721             'Locale::Codes::LangFam'=> '3.21',
6722             'Locale::Codes::LangFam_Codes'=> '3.21',
6723             'Locale::Codes::LangFam_Retired'=> '3.21',
6724             'Locale::Codes::LangVar'=> '3.21',
6725             'Locale::Codes::LangVar_Codes'=> '3.21',
6726             'Locale::Codes::LangVar_Retired'=> '3.21',
6727             'Locale::Codes::Language'=> '3.21',
6728             'Locale::Codes::Language_Codes'=> '3.21',
6729             'Locale::Codes::Language_Retired'=> '3.21',
6730             'Locale::Codes::Script' => '3.21',
6731             'Locale::Codes::Script_Codes'=> '3.21',
6732             'Locale::Codes::Script_Retired'=> '3.21',
6733             'Locale::Country'       => '3.21',
6734             'Locale::Currency'      => '3.21',
6735             'Locale::Language'      => '3.21',
6736             'Locale::Script'        => '3.21',
6737             'Module::CoreList'      => '2.65',
6738             'Pod::Html'             => '1.1501',
6739             'Pod::Perldoc'          => '3.17',
6740             'Pod::Perldoc::BaseTo'  => '3.17',
6741             'Pod::Perldoc::GetOptsOO'=> '3.17',
6742             'Pod::Perldoc::ToANSI'  => '3.17',
6743             'Pod::Perldoc::ToChecker'=> '3.17',
6744             'Pod::Perldoc::ToMan'   => '3.17',
6745             'Pod::Perldoc::ToNroff' => '3.17',
6746             'Pod::Perldoc::ToPod'   => '3.17',
6747             'Pod::Perldoc::ToRtf'   => '3.17',
6748             'Pod::Perldoc::ToTerm'  => '3.17',
6749             'Pod::Perldoc::ToText'  => '3.17',
6750             'Pod::Perldoc::ToTk'    => '3.17',
6751             'Pod::Perldoc::ToXml'   => '3.17',
6752             'Pod::Simple'           => '3.20',
6753             'Pod::Simple::BlackBox' => '3.20',
6754             'Pod::Simple::Checker'  => '3.20',
6755             'Pod::Simple::Debug'    => '3.20',
6756             'Pod::Simple::DumpAsText'=> '3.20',
6757             'Pod::Simple::DumpAsXML'=> '3.20',
6758             'Pod::Simple::HTML'     => '3.20',
6759             'Pod::Simple::HTMLBatch'=> '3.20',
6760             'Pod::Simple::LinkSection'=> '3.20',
6761             'Pod::Simple::Methody'  => '3.20',
6762             'Pod::Simple::Progress' => '3.20',
6763             'Pod::Simple::PullParser'=> '3.20',
6764             'Pod::Simple::PullParserEndToken'=> '3.20',
6765             'Pod::Simple::PullParserStartToken'=> '3.20',
6766             'Pod::Simple::PullParserTextToken'=> '3.20',
6767             'Pod::Simple::PullParserToken'=> '3.20',
6768             'Pod::Simple::RTF'      => '3.20',
6769             'Pod::Simple::Search'   => '3.20',
6770             'Pod::Simple::SimpleTree'=> '3.20',
6771             'Pod::Simple::Text'     => '3.20',
6772             'Pod::Simple::TextContent'=> '3.20',
6773             'Pod::Simple::TiedOutFH'=> '3.20',
6774             'Pod::Simple::Transcode'=> '3.20',
6775             'Pod::Simple::TranscodeDumb'=> '3.20',
6776             'Pod::Simple::TranscodeSmart'=> '3.20',
6777             'Pod::Simple::XHTML'    => '3.20',
6778             'Pod::Simple::XMLOutStream'=> '3.20',
6779             'Socket'                => '2.000',
6780             'Term::ReadLine'        => '1.09',
6781             'Unicode::Collate'      => '0.89',
6782             'Unicode::Collate::CJK::Korean'=> '0.88',
6783             'Unicode::Collate::Locale'=> '0.89',
6784             'Unicode::Normalize'    => '1.14',
6785             'Unicode::UCD'          => '0.42',
6786             'XS::APItest'           => '0.37',
6787             'arybase'               => '0.05',
6788             'attributes'            => '0.18',
6789             'charnames'             => '1.30',
6790             'feature'               => '1.27',
6791         },
6792         removed => {
6793         }
6794     },
6795     5.016 => {
6796         delta_from => 5.015009,
6797         changed => {
6798             'B::Concise'            => '0.89',
6799             'B::Deparse'            => '1.14',
6800             'Carp'                  => '1.26',
6801             'Carp::Heavy'           => '1.26',
6802             'IO::Socket'            => '1.35',
6803             'Module::CoreList'      => '2.66',
6804             'PerlIO::scalar'        => '0.14',
6805             'Pod::Html'             => '1.1502',
6806             'Safe'                  => '2.31_01',
6807             'Socket'                => '2.001',
6808             'Unicode::UCD'          => '0.43',
6809             'XS::APItest'           => '0.38',
6810             '_charnames'            => '1.31',
6811             'attributes'            => '0.19',
6812             'strict'                => '1.07',
6813             'version'               => '0.99',
6814         },
6815         removed => {
6816         }
6817     },
6818     5.016001 => {
6819         delta_from => 5.016,
6820         changed => {
6821             'B'                     => '1.35',
6822             'B::Deparse'            => '1.14_01',
6823             'List::Util'            => '1.25',
6824             'List::Util::PP'        => '1.25',
6825             'List::Util::XS'        => '1.25',
6826             'Module::CoreList'      => '2.70',
6827             'PerlIO::scalar'        => '0.14_01',
6828             'Scalar::Util'          => '1.25',
6829             'Scalar::Util::PP'      => '1.25',
6830             're'                    => '0.19_01',
6831         },
6832         removed => {
6833         }
6834     },
6835     5.016002 => {
6836         delta_from => 5.016001,
6837         changed => {
6838             'Module::CoreList'      => '2.76',
6839         },
6840         removed => {
6841         }
6842     },
6843     5.016003 => {
6844         delta_from => 5.016002,
6845         changed => {
6846             'Encode'                => '2.44_01',
6847             'Module::CoreList'      => '2.76_02',
6848             'XS::APItest'           => '0.39',
6849         },
6850         removed => {
6851         }
6852     },
6853     5.017 => {
6854         delta_from => 5.016,
6855         changed => {
6856             'B'                     => '1.35',
6857             'B::Concise'            => '0.90',
6858             'ExtUtils::ParseXS'     => '3.17',
6859             'ExtUtils::ParseXS::Utilities'=> '3.17',
6860             'File::DosGlob'         => '1.07',
6861             'File::Find'            => '1.21',
6862             'File::stat'            => '1.06',
6863             'Hash::Util'            => '0.12',
6864             'IO::Socket'            => '1.34',
6865             'Module::CoreList'      => '2.67',
6866             'Pod::Functions'        => '1.06',
6867             'Storable'              => '2.35',
6868             'XS::APItest'           => '0.39',
6869             'diagnostics'           => '1.29',
6870             'feature'               => '1.28',
6871             'overload'              => '1.19',
6872             'utf8'                  => '1.10',
6873         },
6874         removed => {
6875             'Version::Requirements' => 1,
6876         }
6877     },
6878     5.017001 => {
6879         delta_from => 5.017,
6880         changed => {
6881             'App::Prove'            => '3.25',
6882             'App::Prove::State'     => '3.25',
6883             'App::Prove::State::Result'=> '3.25',
6884             'App::Prove::State::Result::Test'=> '3.25',
6885             'Archive::Extract'      => '0.60',
6886             'Archive::Tar'          => '1.88',
6887             'Archive::Tar::Constant'=> '1.88',
6888             'Archive::Tar::File'    => '1.88',
6889             'B'                     => '1.36',
6890             'B::Deparse'            => '1.15',
6891             'CPAN::Meta'            => '2.120921',
6892             'CPAN::Meta::Converter' => '2.120921',
6893             'CPAN::Meta::Feature'   => '2.120921',
6894             'CPAN::Meta::History'   => '2.120921',
6895             'CPAN::Meta::Prereqs'   => '2.120921',
6896             'CPAN::Meta::Requirements'=> '2.122',
6897             'CPAN::Meta::Spec'      => '2.120921',
6898             'CPAN::Meta::Validator' => '2.120921',
6899             'CPAN::Meta::YAML'      => '0.008',
6900             'CPANPLUS'              => '0.9130',
6901             'CPANPLUS::Config::HomeEnv'=> '0.04',
6902             'CPANPLUS::Internals'   => '0.9130',
6903             'CPANPLUS::Shell::Default'=> '0.9130',
6904             'Class::Struct'         => '0.64',
6905             'Compress::Raw::Bzip2'  => '2.052',
6906             'Compress::Raw::Zlib'   => '2.054',
6907             'Compress::Zlib'        => '2.052',
6908             'Digest::MD5'           => '2.52',
6909             'DynaLoader'            => '1.15',
6910             'ExtUtils::CBuilder'    => '0.280208',
6911             'ExtUtils::CBuilder::Base'=> '0.280208',
6912             'ExtUtils::CBuilder::Platform::Unix'=> '0.280208',
6913             'ExtUtils::CBuilder::Platform::VMS'=> '0.280208',
6914             'ExtUtils::CBuilder::Platform::Windows'=> '0.280208',
6915             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280208',
6916             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280208',
6917             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280208',
6918             'ExtUtils::CBuilder::Platform::aix'=> '0.280208',
6919             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280208',
6920             'ExtUtils::CBuilder::Platform::darwin'=> '0.280208',
6921             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280208',
6922             'ExtUtils::CBuilder::Platform::os2'=> '0.280208',
6923             'Fatal'                 => '2.11',
6924             'File::DosGlob'         => '1.08',
6925             'File::Fetch'           => '0.34',
6926             'File::Spec::Unix'      => '3.39_03',
6927             'Filter::Util::Call'    => '1.45',
6928             'HTTP::Tiny'            => '0.022',
6929             'IO'                    => '1.25_07',
6930             'IO::Compress::Adapter::Bzip2'=> '2.052',
6931             'IO::Compress::Adapter::Deflate'=> '2.052',
6932             'IO::Compress::Adapter::Identity'=> '2.052',
6933             'IO::Compress::Base'    => '2.052',
6934             'IO::Compress::Base::Common'=> '2.052',
6935             'IO::Compress::Bzip2'   => '2.052',
6936             'IO::Compress::Deflate' => '2.052',
6937             'IO::Compress::Gzip'    => '2.052',
6938             'IO::Compress::Gzip::Constants'=> '2.052',
6939             'IO::Compress::RawDeflate'=> '2.052',
6940             'IO::Compress::Zip'     => '2.052',
6941             'IO::Compress::Zip::Constants'=> '2.052',
6942             'IO::Compress::Zlib::Constants'=> '2.052',
6943             'IO::Compress::Zlib::Extra'=> '2.052',
6944             'IO::Uncompress::Adapter::Bunzip2'=> '2.052',
6945             'IO::Uncompress::Adapter::Identity'=> '2.052',
6946             'IO::Uncompress::Adapter::Inflate'=> '2.052',
6947             'IO::Uncompress::AnyInflate'=> '2.052',
6948             'IO::Uncompress::AnyUncompress'=> '2.052',
6949             'IO::Uncompress::Base'  => '2.052',
6950             'IO::Uncompress::Bunzip2'=> '2.052',
6951             'IO::Uncompress::Gunzip'=> '2.052',
6952             'IO::Uncompress::Inflate'=> '2.052',
6953             'IO::Uncompress::RawInflate'=> '2.052',
6954             'IO::Uncompress::Unzip' => '2.052',
6955             'IPC::Cmd'              => '0.78',
6956             'List::Util'            => '1.25',
6957             'List::Util::XS'        => '1.25',
6958             'Locale::Codes'         => '3.22',
6959             'Locale::Codes::Constants'=> '3.22',
6960             'Locale::Codes::Country'=> '3.22',
6961             'Locale::Codes::Country_Codes'=> '3.22',
6962             'Locale::Codes::Country_Retired'=> '3.22',
6963             'Locale::Codes::Currency'=> '3.22',
6964             'Locale::Codes::Currency_Codes'=> '3.22',
6965             'Locale::Codes::Currency_Retired'=> '3.22',
6966             'Locale::Codes::LangExt'=> '3.22',
6967             'Locale::Codes::LangExt_Codes'=> '3.22',
6968             'Locale::Codes::LangExt_Retired'=> '3.22',
6969             'Locale::Codes::LangFam'=> '3.22',
6970             'Locale::Codes::LangFam_Codes'=> '3.22',
6971             'Locale::Codes::LangFam_Retired'=> '3.22',
6972             'Locale::Codes::LangVar'=> '3.22',
6973             'Locale::Codes::LangVar_Codes'=> '3.22',
6974             'Locale::Codes::LangVar_Retired'=> '3.22',
6975             'Locale::Codes::Language'=> '3.22',
6976             'Locale::Codes::Language_Codes'=> '3.22',
6977             'Locale::Codes::Language_Retired'=> '3.22',
6978             'Locale::Codes::Script' => '3.22',
6979             'Locale::Codes::Script_Codes'=> '3.22',
6980             'Locale::Codes::Script_Retired'=> '3.22',
6981             'Locale::Country'       => '3.22',
6982             'Locale::Currency'      => '3.22',
6983             'Locale::Language'      => '3.22',
6984             'Locale::Script'        => '3.22',
6985             'Memoize'               => '1.03',
6986             'Memoize::AnyDBM_File'  => '1.03',
6987             'Memoize::Expire'       => '1.03',
6988             'Memoize::ExpireFile'   => '1.03',
6989             'Memoize::ExpireTest'   => '1.03',
6990             'Memoize::NDBM_File'    => '1.03',
6991             'Memoize::SDBM_File'    => '1.03',
6992             'Memoize::Storable'     => '1.03',
6993             'Module::Build'         => '0.40',
6994             'Module::Build::Base'   => '0.40',
6995             'Module::Build::Compat' => '0.40',
6996             'Module::Build::Config' => '0.40',
6997             'Module::Build::Cookbook'=> '0.40',
6998             'Module::Build::Dumper' => '0.40',
6999             'Module::Build::ModuleInfo'=> '0.40',
7000             'Module::Build::Notes'  => '0.40',
7001             'Module::Build::PPMMaker'=> '0.40',
7002             'Module::Build::Platform::Amiga'=> '0.40',
7003             'Module::Build::Platform::Default'=> '0.40',
7004             'Module::Build::Platform::EBCDIC'=> '0.40',
7005             'Module::Build::Platform::MPEiX'=> '0.40',
7006             'Module::Build::Platform::MacOS'=> '0.40',
7007             'Module::Build::Platform::RiscOS'=> '0.40',
7008             'Module::Build::Platform::Unix'=> '0.40',
7009             'Module::Build::Platform::VMS'=> '0.40',
7010             'Module::Build::Platform::VOS'=> '0.40',
7011             'Module::Build::Platform::Windows'=> '0.40',
7012             'Module::Build::Platform::aix'=> '0.40',
7013             'Module::Build::Platform::cygwin'=> '0.40',
7014             'Module::Build::Platform::darwin'=> '0.40',
7015             'Module::Build::Platform::os2'=> '0.40',
7016             'Module::Build::PodParser'=> '0.40',
7017             'Module::CoreList'      => '2.68',
7018             'Module::Load::Conditional'=> '0.50',
7019             'Object::Accessor'      => '0.44',
7020             'POSIX'                 => '1.31',
7021             'Params::Check'         => '0.36',
7022             'Parse::CPAN::Meta'     => '1.4404',
7023             'PerlIO::mmap'          => '0.011',
7024             'PerlIO::via::QuotedPrint'=> '0.07',
7025             'Pod::Html'             => '1.16',
7026             'Pod::Man'              => '2.26',
7027             'Pod::Text'             => '3.16',
7028             'Safe'                  => '2.33_01',
7029             'Scalar::Util'          => '1.25',
7030             'Search::Dict'          => '1.07',
7031             'Storable'              => '2.36',
7032             'TAP::Base'             => '3.25',
7033             'TAP::Formatter::Base'  => '3.25',
7034             'TAP::Formatter::Color' => '3.25',
7035             'TAP::Formatter::Console'=> '3.25',
7036             'TAP::Formatter::Console::ParallelSession'=> '3.25',
7037             'TAP::Formatter::Console::Session'=> '3.25',
7038             'TAP::Formatter::File'  => '3.25',
7039             'TAP::Formatter::File::Session'=> '3.25',
7040             'TAP::Formatter::Session'=> '3.25',
7041             'TAP::Harness'          => '3.25',
7042             'TAP::Object'           => '3.25',
7043             'TAP::Parser'           => '3.25',
7044             'TAP::Parser::Aggregator'=> '3.25',
7045             'TAP::Parser::Grammar'  => '3.25',
7046             'TAP::Parser::Iterator' => '3.25',
7047             'TAP::Parser::Iterator::Array'=> '3.25',
7048             'TAP::Parser::Iterator::Process'=> '3.25',
7049             'TAP::Parser::Iterator::Stream'=> '3.25',
7050             'TAP::Parser::IteratorFactory'=> '3.25',
7051             'TAP::Parser::Multiplexer'=> '3.25',
7052             'TAP::Parser::Result'   => '3.25',
7053             'TAP::Parser::Result::Bailout'=> '3.25',
7054             'TAP::Parser::Result::Comment'=> '3.25',
7055             'TAP::Parser::Result::Plan'=> '3.25',
7056             'TAP::Parser::Result::Pragma'=> '3.25',
7057             'TAP::Parser::Result::Test'=> '3.25',
7058             'TAP::Parser::Result::Unknown'=> '3.25',
7059             'TAP::Parser::Result::Version'=> '3.25',
7060             'TAP::Parser::Result::YAML'=> '3.25',
7061             'TAP::Parser::ResultFactory'=> '3.25',
7062             'TAP::Parser::Scheduler'=> '3.25',
7063             'TAP::Parser::Scheduler::Job'=> '3.25',
7064             'TAP::Parser::Scheduler::Spinner'=> '3.25',
7065             'TAP::Parser::Source'   => '3.25',
7066             'TAP::Parser::SourceHandler'=> '3.25',
7067             'TAP::Parser::SourceHandler::Executable'=> '3.25',
7068             'TAP::Parser::SourceHandler::File'=> '3.25',
7069             'TAP::Parser::SourceHandler::Handle'=> '3.25',
7070             'TAP::Parser::SourceHandler::Perl'=> '3.25',
7071             'TAP::Parser::SourceHandler::RawTAP'=> '3.25',
7072             'TAP::Parser::Utils'    => '3.25',
7073             'TAP::Parser::YAMLish::Reader'=> '3.25',
7074             'TAP::Parser::YAMLish::Writer'=> '3.25',
7075             'Term::ANSIColor'       => '3.02',
7076             'Test::Harness'         => '3.25',
7077             'Unicode'               => '6.2.0',
7078             'Unicode::UCD'          => '0.44',
7079             'XS::APItest'           => '0.40',
7080             '_charnames'            => '1.32',
7081             'attributes'            => '0.2',
7082             'autodie'               => '2.11',
7083             'autodie::exception'    => '2.11',
7084             'autodie::exception::system'=> '2.11',
7085             'autodie::hints'        => '2.11',
7086             'bigint'                => '0.30',
7087             'charnames'             => '1.32',
7088             'feature'               => '1.29',
7089             'inc::latest'           => '0.40',
7090             'perlfaq'               => '5.0150040',
7091             're'                    => '0.20',
7092         },
7093         removed => {
7094             'List::Util::PP'        => 1,
7095             'Scalar::Util::PP'      => 1,
7096         }
7097     },
7098     5.017002 => {
7099         delta_from => 5.017001,
7100         changed => {
7101             'App::Prove'            => '3.25_01',
7102             'App::Prove::State'     => '3.25_01',
7103             'App::Prove::State::Result'=> '3.25_01',
7104             'App::Prove::State::Result::Test'=> '3.25_01',
7105             'B::Concise'            => '0.91',
7106             'Compress::Raw::Bzip2'  => '2.05201',
7107             'Compress::Raw::Zlib'   => '2.05401',
7108             'Exporter'              => '5.67',
7109             'Exporter::Heavy'       => '5.67',
7110             'Fatal'                 => '2.12',
7111             'File::Fetch'           => '0.36',
7112             'File::stat'            => '1.07',
7113             'IO'                    => '1.25_08',
7114             'IO::Socket'            => '1.35',
7115             'Module::CoreList'      => '2.69',
7116             'PerlIO::scalar'        => '0.15',
7117             'Socket'                => '2.002',
7118             'Storable'              => '2.37',
7119             'TAP::Base'             => '3.25_01',
7120             'TAP::Formatter::Base'  => '3.25_01',
7121             'TAP::Formatter::Color' => '3.25_01',
7122             'TAP::Formatter::Console'=> '3.25_01',
7123             'TAP::Formatter::Console::ParallelSession'=> '3.25_01',
7124             'TAP::Formatter::Console::Session'=> '3.25_01',
7125             'TAP::Formatter::File'  => '3.25_01',
7126             'TAP::Formatter::File::Session'=> '3.25_01',
7127             'TAP::Formatter::Session'=> '3.25_01',
7128             'TAP::Harness'          => '3.25_01',
7129             'TAP::Object'           => '3.25_01',
7130             'TAP::Parser'           => '3.25_01',
7131             'TAP::Parser::Aggregator'=> '3.25_01',
7132             'TAP::Parser::Grammar'  => '3.25_01',
7133             'TAP::Parser::Iterator' => '3.25_01',
7134             'TAP::Parser::Iterator::Array'=> '3.25_01',
7135             'TAP::Parser::Iterator::Process'=> '3.25_01',
7136             'TAP::Parser::Iterator::Stream'=> '3.25_01',
7137             'TAP::Parser::IteratorFactory'=> '3.25_01',
7138             'TAP::Parser::Multiplexer'=> '3.25_01',
7139             'TAP::Parser::Result'   => '3.25_01',
7140             'TAP::Parser::Result::Bailout'=> '3.25_01',
7141             'TAP::Parser::Result::Comment'=> '3.25_01',
7142             'TAP::Parser::Result::Plan'=> '3.25_01',
7143             'TAP::Parser::Result::Pragma'=> '3.25_01',
7144             'TAP::Parser::Result::Test'=> '3.25_01',
7145             'TAP::Parser::Result::Unknown'=> '3.25_01',
7146             'TAP::Parser::Result::Version'=> '3.25_01',
7147             'TAP::Parser::Result::YAML'=> '3.25_01',
7148             'TAP::Parser::ResultFactory'=> '3.25_01',
7149             'TAP::Parser::Scheduler'=> '3.25_01',
7150             'TAP::Parser::Scheduler::Job'=> '3.25_01',
7151             'TAP::Parser::Scheduler::Spinner'=> '3.25_01',
7152             'TAP::Parser::Source'   => '3.25_01',
7153             'TAP::Parser::SourceHandler'=> '3.25_01',
7154             'TAP::Parser::SourceHandler::Executable'=> '3.25_01',
7155             'TAP::Parser::SourceHandler::File'=> '3.25_01',
7156             'TAP::Parser::SourceHandler::Handle'=> '3.25_01',
7157             'TAP::Parser::SourceHandler::Perl'=> '3.25_01',
7158             'TAP::Parser::SourceHandler::RawTAP'=> '3.25_01',
7159             'TAP::Parser::Utils'    => '3.25_01',
7160             'TAP::Parser::YAMLish::Reader'=> '3.25_01',
7161             'TAP::Parser::YAMLish::Writer'=> '3.25_01',
7162             'Test::Harness'         => '3.25_01',
7163             'Tie::StdHandle'        => '4.3',
7164             'XS::APItest'           => '0.41',
7165             'autodie'               => '2.12',
7166             'autodie::exception'    => '2.12',
7167             'autodie::exception::system'=> '2.12',
7168             'autodie::hints'        => '2.12',
7169             'diagnostics'           => '1.30',
7170             'overload'              => '1.20',
7171             're'                    => '0.21',
7172             'vars'                  => '1.03',
7173         },
7174         removed => {
7175         }
7176     },
7177     5.017003 => {
7178         delta_from => 5.017002,
7179         changed => {
7180             'B'                     => '1.37',
7181             'B::Concise'            => '0.92',
7182             'B::Debug'              => '1.18',
7183             'B::Deparse'            => '1.16',
7184             'CGI'                   => '3.60',
7185             'Compress::Raw::Bzip2'  => '2.055',
7186             'Compress::Raw::Zlib'   => '2.056',
7187             'Compress::Zlib'        => '2.055',
7188             'Data::Dumper'          => '2.135_07',
7189             'Devel::Peek'           => '1.09',
7190             'Encode'                => '2.47',
7191             'Encode::Alias'         => '2.16',
7192             'Encode::GSM0338'       => '2.02',
7193             'Encode::Unicode::UTF7' => '2.06',
7194             'IO::Compress::Adapter::Bzip2'=> '2.055',
7195             'IO::Compress::Adapter::Deflate'=> '2.055',
7196             'IO::Compress::Adapter::Identity'=> '2.055',
7197             'IO::Compress::Base'    => '2.055',
7198             'IO::Compress::Base::Common'=> '2.055',
7199             'IO::Compress::Bzip2'   => '2.055',
7200             'IO::Compress::Deflate' => '2.055',
7201             'IO::Compress::Gzip'    => '2.055',
7202             'IO::Compress::Gzip::Constants'=> '2.055',
7203             'IO::Compress::RawDeflate'=> '2.055',
7204             'IO::Compress::Zip'     => '2.055',
7205             'IO::Compress::Zip::Constants'=> '2.055',
7206             'IO::Compress::Zlib::Constants'=> '2.055',
7207             'IO::Compress::Zlib::Extra'=> '2.055',
7208             'IO::Uncompress::Adapter::Bunzip2'=> '2.055',
7209             'IO::Uncompress::Adapter::Identity'=> '2.055',
7210             'IO::Uncompress::Adapter::Inflate'=> '2.055',
7211             'IO::Uncompress::AnyInflate'=> '2.055',
7212             'IO::Uncompress::AnyUncompress'=> '2.055',
7213             'IO::Uncompress::Base'  => '2.055',
7214             'IO::Uncompress::Bunzip2'=> '2.055',
7215             'IO::Uncompress::Gunzip'=> '2.055',
7216             'IO::Uncompress::Inflate'=> '2.055',
7217             'IO::Uncompress::RawInflate'=> '2.055',
7218             'IO::Uncompress::Unzip' => '2.055',
7219             'Module::Build'         => '0.4003',
7220             'Module::Build::Base'   => '0.4003',
7221             'Module::Build::Compat' => '0.4003',
7222             'Module::Build::Config' => '0.4003',
7223             'Module::Build::Cookbook'=> '0.4003',
7224             'Module::Build::Dumper' => '0.4003',
7225             'Module::Build::ModuleInfo'=> '0.4003',
7226             'Module::Build::Notes'  => '0.4003',
7227             'Module::Build::PPMMaker'=> '0.4003',
7228             'Module::Build::Platform::Amiga'=> '0.4003',
7229             'Module::Build::Platform::Default'=> '0.4003',
7230             'Module::Build::Platform::EBCDIC'=> '0.4003',
7231             'Module::Build::Platform::MPEiX'=> '0.4003',
7232             'Module::Build::Platform::MacOS'=> '0.4003',
7233             'Module::Build::Platform::RiscOS'=> '0.4003',
7234             'Module::Build::Platform::Unix'=> '0.4003',
7235             'Module::Build::Platform::VMS'=> '0.4003',
7236             'Module::Build::Platform::VOS'=> '0.4003',
7237             'Module::Build::Platform::Windows'=> '0.4003',
7238             'Module::Build::Platform::aix'=> '0.4003',
7239             'Module::Build::Platform::cygwin'=> '0.4003',
7240             'Module::Build::Platform::darwin'=> '0.4003',
7241             'Module::Build::Platform::os2'=> '0.4003',
7242             'Module::Build::PodParser'=> '0.4003',
7243             'Module::CoreList'      => '2.71',
7244             'Module::CoreList::TieHashDelta'=> '2.71',
7245             'Module::Load::Conditional'=> '0.54',
7246             'Module::Metadata'      => '1.000011',
7247             'Module::Pluggable'     => '4.3',
7248             'Module::Pluggable::Object'=> '4.3',
7249             'Pod::Simple'           => '3.23',
7250             'Pod::Simple::BlackBox' => '3.23',
7251             'Pod::Simple::Checker'  => '3.23',
7252             'Pod::Simple::Debug'    => '3.23',
7253             'Pod::Simple::DumpAsText'=> '3.23',
7254             'Pod::Simple::DumpAsXML'=> '3.23',
7255             'Pod::Simple::HTML'     => '3.23',
7256             'Pod::Simple::HTMLBatch'=> '3.23',
7257             'Pod::Simple::LinkSection'=> '3.23',
7258             'Pod::Simple::Methody'  => '3.23',
7259             'Pod::Simple::Progress' => '3.23',
7260             'Pod::Simple::PullParser'=> '3.23',
7261             'Pod::Simple::PullParserEndToken'=> '3.23',
7262             'Pod::Simple::PullParserStartToken'=> '3.23',
7263             'Pod::Simple::PullParserTextToken'=> '3.23',
7264             'Pod::Simple::PullParserToken'=> '3.23',
7265             'Pod::Simple::RTF'      => '3.23',
7266             'Pod::Simple::Search'   => '3.23',
7267             'Pod::Simple::SimpleTree'=> '3.23',
7268             'Pod::Simple::Text'     => '3.23',
7269             'Pod::Simple::TextContent'=> '3.23',
7270             'Pod::Simple::TiedOutFH'=> '3.23',
7271             'Pod::Simple::Transcode'=> '3.23',
7272             'Pod::Simple::TranscodeDumb'=> '3.23',
7273             'Pod::Simple::TranscodeSmart'=> '3.23',
7274             'Pod::Simple::XHTML'    => '3.23',
7275             'Pod::Simple::XMLOutStream'=> '3.23',
7276             'Socket'                => '2.004',
7277             'Storable'              => '2.38',
7278             'Sys::Syslog'           => '0.31',
7279             'Term::ReadLine'        => '1.10',
7280             'Text::Tabs'            => '2012.0818',
7281             'Text::Wrap'            => '2012.0818',
7282             'Time::Local'           => '1.2300',
7283             'Unicode::UCD'          => '0.45',
7284             'Win32'                 => '0.45',
7285             'Win32CORE'             => '0.03',
7286             'XS::APItest'           => '0.42',
7287             'inc::latest'           => '0.4003',
7288             'perlfaq'               => '5.0150041',
7289             're'                    => '0.22',
7290         },
7291         removed => {
7292         }
7293     },
7294     5.017004 => {
7295         delta_from => 5.017003,
7296         changed => {
7297             'Archive::Tar'          => '1.90',
7298             'Archive::Tar::Constant'=> '1.90',
7299             'Archive::Tar::File'    => '1.90',
7300             'B'                     => '1.38',
7301             'B::Concise'            => '0.93',
7302             'B::Deparse'            => '1.17',
7303             'B::Xref'               => '1.04',
7304             'CPANPLUS'              => '0.9131',
7305             'CPANPLUS::Internals'   => '0.9131',
7306             'CPANPLUS::Shell::Default'=> '0.9131',
7307             'DB_File'               => '1.827',
7308             'Devel::Peek'           => '1.10',
7309             'DynaLoader'            => '1.16',
7310             'Errno'                 => '1.16',
7311             'ExtUtils::ParseXS'     => '3.18',
7312             'ExtUtils::ParseXS::Constants'=> '3.18',
7313             'ExtUtils::ParseXS::CountLines'=> '3.18',
7314             'ExtUtils::ParseXS::Utilities'=> '3.18',
7315             'File::Copy'            => '2.24',
7316             'File::Find'            => '1.22',
7317             'IPC::Open3'            => '1.13',
7318             'Locale::Codes'         => '3.23',
7319             'Locale::Codes::Constants'=> '3.23',
7320             'Locale::Codes::Country'=> '3.23',
7321             'Locale::Codes::Country_Codes'=> '3.23',
7322             'Locale::Codes::Country_Retired'=> '3.23',
7323             'Locale::Codes::Currency'=> '3.23',
7324             'Locale::Codes::Currency_Codes'=> '3.23',
7325             'Locale::Codes::Currency_Retired'=> '3.23',
7326             'Locale::Codes::LangExt'=> '3.23',
7327             'Locale::Codes::LangExt_Codes'=> '3.23',
7328             'Locale::Codes::LangExt_Retired'=> '3.23',
7329             'Locale::Codes::LangFam'=> '3.23',
7330             'Locale::Codes::LangFam_Codes'=> '3.23',
7331             'Locale::Codes::LangFam_Retired'=> '3.23',
7332             'Locale::Codes::LangVar'=> '3.23',
7333             'Locale::Codes::LangVar_Codes'=> '3.23',
7334             'Locale::Codes::LangVar_Retired'=> '3.23',
7335             'Locale::Codes::Language'=> '3.23',
7336             'Locale::Codes::Language_Codes'=> '3.23',
7337             'Locale::Codes::Language_Retired'=> '3.23',
7338             'Locale::Codes::Script' => '3.23',
7339             'Locale::Codes::Script_Codes'=> '3.23',
7340             'Locale::Codes::Script_Retired'=> '3.23',
7341             'Locale::Country'       => '3.23',
7342             'Locale::Currency'      => '3.23',
7343             'Locale::Language'      => '3.23',
7344             'Locale::Script'        => '3.23',
7345             'Math::BigFloat::Trace' => '0.30',
7346             'Math::BigInt::Trace'   => '0.30',
7347             'Module::CoreList'      => '2.73',
7348             'Module::CoreList::TieHashDelta'=> '2.73',
7349             'Opcode'                => '1.24',
7350             'Socket'                => '2.006',
7351             'Storable'              => '2.39',
7352             'Sys::Syslog'           => '0.32',
7353             'Unicode::UCD'          => '0.46',
7354             'XS::APItest'           => '0.43',
7355             'bignum'                => '0.30',
7356             'bigrat'                => '0.30',
7357             'constant'              => '1.24',
7358             'feature'               => '1.30',
7359             'threads::shared'       => '1.41',
7360             'version'               => '0.9901',
7361             'warnings'              => '1.14',
7362         },
7363         removed => {
7364         }
7365     },
7366     5.017005 => {
7367         delta_from => 5.017004,
7368         changed => {
7369             'AutoLoader'            => '5.73',
7370             'B'                     => '1.39',
7371             'B::Deparse'            => '1.18',
7372             'CPANPLUS'              => '0.9133',
7373             'CPANPLUS::Internals'   => '0.9133',
7374             'CPANPLUS::Shell::Default'=> '0.9133',
7375             'Carp'                  => '1.27',
7376             'Carp::Heavy'           => '1.27',
7377             'Data::Dumper'          => '2.136',
7378             'Digest::SHA'           => '5.72',
7379             'ExtUtils::CBuilder'    => '0.280209',
7380             'ExtUtils::CBuilder::Base'=> '0.280209',
7381             'ExtUtils::CBuilder::Platform::Unix'=> '0.280209',
7382             'ExtUtils::CBuilder::Platform::VMS'=> '0.280209',
7383             'ExtUtils::CBuilder::Platform::Windows'=> '0.280209',
7384             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280209',
7385             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280209',
7386             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280209',
7387             'ExtUtils::CBuilder::Platform::aix'=> '0.280209',
7388             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280209',
7389             'ExtUtils::CBuilder::Platform::darwin'=> '0.280209',
7390             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280209',
7391             'ExtUtils::CBuilder::Platform::os2'=> '0.280209',
7392             'File::Copy'            => '2.25',
7393             'File::Glob'            => '1.18',
7394             'HTTP::Tiny'            => '0.024',
7395             'Module::CoreList'      => '2.75',
7396             'Module::CoreList::TieHashDelta'=> '2.75',
7397             'PerlIO::encoding'      => '0.16',
7398             'Unicode::Collate'      => '0.90',
7399             'Unicode::Collate::Locale'=> '0.90',
7400             'Unicode::Normalize'    => '1.15',
7401             'Win32CORE'             => '0.04',
7402             'XS::APItest'           => '0.44',
7403             'attributes'            => '0.21',
7404             'bigint'                => '0.31',
7405             'bignum'                => '0.31',
7406             'bigrat'                => '0.31',
7407             'feature'               => '1.31',
7408             'threads::shared'       => '1.42',
7409             'warnings'              => '1.15',
7410         },
7411         removed => {
7412         }
7413     },
7414     5.017006 => {
7415         delta_from => 5.017005,
7416         changed => {
7417             'B'                     => '1.40',
7418             'B::Concise'            => '0.94',
7419             'B::Deparse'            => '1.19',
7420             'B::Xref'               => '1.05',
7421             'CGI'                   => '3.63',
7422             'CGI::Util'             => '3.62',
7423             'CPAN'                  => '1.99_51',
7424             'CPANPLUS::Dist::Build' => '0.64',
7425             'CPANPLUS::Dist::Build::Constants'=> '0.64',
7426             'Carp'                  => '1.28',
7427             'Carp::Heavy'           => '1.28',
7428             'Compress::Raw::Bzip2'  => '2.058',
7429             'Compress::Raw::Zlib'   => '2.058',
7430             'Compress::Zlib'        => '2.058',
7431             'Data::Dumper'          => '2.137',
7432             'Digest::SHA'           => '5.73',
7433             'DynaLoader'            => '1.17',
7434             'Env'                   => '1.04',
7435             'Errno'                 => '1.17',
7436             'ExtUtils::Manifest'    => '1.62',
7437             'ExtUtils::Typemaps'    => '3.18',
7438             'ExtUtils::Typemaps::Cmd'=> '3.18',
7439             'ExtUtils::Typemaps::InputMap'=> '3.18',
7440             'ExtUtils::Typemaps::OutputMap'=> '3.18',
7441             'ExtUtils::Typemaps::Type'=> '3.18',
7442             'Fatal'                 => '2.13',
7443             'File::Find'            => '1.23',
7444             'Hash::Util'            => '0.13',
7445             'IO::Compress::Adapter::Bzip2'=> '2.058',
7446             'IO::Compress::Adapter::Deflate'=> '2.058',
7447             'IO::Compress::Adapter::Identity'=> '2.058',
7448             'IO::Compress::Base'    => '2.058',
7449             'IO::Compress::Base::Common'=> '2.058',
7450             'IO::Compress::Bzip2'   => '2.058',
7451             'IO::Compress::Deflate' => '2.058',
7452             'IO::Compress::Gzip'    => '2.058',
7453             'IO::Compress::Gzip::Constants'=> '2.058',
7454             'IO::Compress::RawDeflate'=> '2.058',
7455             'IO::Compress::Zip'     => '2.058',
7456             'IO::Compress::Zip::Constants'=> '2.058',
7457             'IO::Compress::Zlib::Constants'=> '2.058',
7458             'IO::Compress::Zlib::Extra'=> '2.058',
7459             'IO::Uncompress::Adapter::Bunzip2'=> '2.058',
7460             'IO::Uncompress::Adapter::Identity'=> '2.058',
7461             'IO::Uncompress::Adapter::Inflate'=> '2.058',
7462             'IO::Uncompress::AnyInflate'=> '2.058',
7463             'IO::Uncompress::AnyUncompress'=> '2.058',
7464             'IO::Uncompress::Base'  => '2.058',
7465             'IO::Uncompress::Bunzip2'=> '2.058',
7466             'IO::Uncompress::Gunzip'=> '2.058',
7467             'IO::Uncompress::Inflate'=> '2.058',
7468             'IO::Uncompress::RawInflate'=> '2.058',
7469             'IO::Uncompress::Unzip' => '2.058',
7470             'Module::CoreList'      => '2.78',
7471             'Module::CoreList::TieHashDelta'=> '2.77',
7472             'Module::Pluggable'     => '4.5',
7473             'Module::Pluggable::Object'=> '4.5',
7474             'Opcode'                => '1.25',
7475             'Sys::Hostname'         => '1.17',
7476             'Term::UI'              => '0.32',
7477             'Thread::Queue'         => '3.01',
7478             'Tie::Hash::NamedCapture'=> '0.09',
7479             'Unicode::Collate'      => '0.93',
7480             'Unicode::Collate::CJK::Korean'=> '0.93',
7481             'Unicode::Collate::Locale'=> '0.93',
7482             'Unicode::Normalize'    => '1.16',
7483             'Unicode::UCD'          => '0.47',
7484             'XS::APItest'           => '0.46',
7485             '_charnames'            => '1.33',
7486             'autodie'               => '2.13',
7487             'autodie::exception'    => '2.13',
7488             'autodie::exception::system'=> '2.13',
7489             'autodie::hints'        => '2.13',
7490             'charnames'             => '1.33',
7491             're'                    => '0.23',
7492         },
7493         removed => {
7494         }
7495     },
7496     5.017007 => {
7497         delta_from => 5.017006,
7498         changed => {
7499             'B'                     => '1.41',
7500             'CPANPLUS::Dist::Build' => '0.68',
7501             'CPANPLUS::Dist::Build::Constants'=> '0.68',
7502             'Compress::Raw::Bzip2'  => '2.059',
7503             'Compress::Raw::Zlib'   => '2.059',
7504             'Compress::Zlib'        => '2.059',
7505             'Cwd'                   => '3.39_03',
7506             'Data::Dumper'          => '2.139',
7507             'Devel::Peek'           => '1.11',
7508             'Digest::SHA'           => '5.80',
7509             'DynaLoader'            => '1.18',
7510             'English'               => '1.06',
7511             'Errno'                 => '1.18',
7512             'ExtUtils::Command::MM' => '6.64',
7513             'ExtUtils::Liblist'     => '6.64',
7514             'ExtUtils::Liblist::Kid'=> '6.64',
7515             'ExtUtils::MM'          => '6.64',
7516             'ExtUtils::MM_AIX'      => '6.64',
7517             'ExtUtils::MM_Any'      => '6.64',
7518             'ExtUtils::MM_BeOS'     => '6.64',
7519             'ExtUtils::MM_Cygwin'   => '6.64',
7520             'ExtUtils::MM_DOS'      => '6.64',
7521             'ExtUtils::MM_Darwin'   => '6.64',
7522             'ExtUtils::MM_MacOS'    => '6.64',
7523             'ExtUtils::MM_NW5'      => '6.64',
7524             'ExtUtils::MM_OS2'      => '6.64',
7525             'ExtUtils::MM_QNX'      => '6.64',
7526             'ExtUtils::MM_UWIN'     => '6.64',
7527             'ExtUtils::MM_Unix'     => '6.64',
7528             'ExtUtils::MM_VMS'      => '6.64',
7529             'ExtUtils::MM_VOS'      => '6.64',
7530             'ExtUtils::MM_Win32'    => '6.64',
7531             'ExtUtils::MM_Win95'    => '6.64',
7532             'ExtUtils::MY'          => '6.64',
7533             'ExtUtils::MakeMaker'   => '6.64',
7534             'ExtUtils::MakeMaker::Config'=> '6.64',
7535             'ExtUtils::Mkbootstrap' => '6.64',
7536             'ExtUtils::Mksymlists'  => '6.64',
7537             'ExtUtils::testlib'     => '6.64',
7538             'File::DosGlob'         => '1.09',
7539             'File::Glob'            => '1.19',
7540             'GDBM_File'             => '1.15',
7541             'IO::Compress::Adapter::Bzip2'=> '2.059',
7542             'IO::Compress::Adapter::Deflate'=> '2.059',
7543             'IO::Compress::Adapter::Identity'=> '2.059',
7544             'IO::Compress::Base'    => '2.059',
7545             'IO::Compress::Base::Common'=> '2.059',
7546             'IO::Compress::Bzip2'   => '2.059',
7547             'IO::Compress::Deflate' => '2.059',
7548             'IO::Compress::Gzip'    => '2.059',
7549             'IO::Compress::Gzip::Constants'=> '2.059',
7550             'IO::Compress::RawDeflate'=> '2.059',
7551             'IO::Compress::Zip'     => '2.059',
7552             'IO::Compress::Zip::Constants'=> '2.059',
7553             'IO::Compress::Zlib::Constants'=> '2.059',
7554             'IO::Compress::Zlib::Extra'=> '2.059',
7555             'IO::Uncompress::Adapter::Bunzip2'=> '2.059',
7556             'IO::Uncompress::Adapter::Identity'=> '2.059',
7557             'IO::Uncompress::Adapter::Inflate'=> '2.059',
7558             'IO::Uncompress::AnyInflate'=> '2.059',
7559             'IO::Uncompress::AnyUncompress'=> '2.059',
7560             'IO::Uncompress::Base'  => '2.059',
7561             'IO::Uncompress::Bunzip2'=> '2.059',
7562             'IO::Uncompress::Gunzip'=> '2.059',
7563             'IO::Uncompress::Inflate'=> '2.059',
7564             'IO::Uncompress::RawInflate'=> '2.059',
7565             'IO::Uncompress::Unzip' => '2.059',
7566             'List::Util'            => '1.26',
7567             'List::Util::XS'        => '1.26',
7568             'Locale::Codes'         => '3.24',
7569             'Locale::Codes::Constants'=> '3.24',
7570             'Locale::Codes::Country'=> '3.24',
7571             'Locale::Codes::Country_Codes'=> '3.24',
7572             'Locale::Codes::Country_Retired'=> '3.24',
7573             'Locale::Codes::Currency'=> '3.24',
7574             'Locale::Codes::Currency_Codes'=> '3.24',
7575             'Locale::Codes::Currency_Retired'=> '3.24',
7576             'Locale::Codes::LangExt'=> '3.24',
7577             'Locale::Codes::LangExt_Codes'=> '3.24',
7578             'Locale::Codes::LangExt_Retired'=> '3.24',
7579             'Locale::Codes::LangFam'=> '3.24',
7580             'Locale::Codes::LangFam_Codes'=> '3.24',
7581             'Locale::Codes::LangFam_Retired'=> '3.24',
7582             'Locale::Codes::LangVar'=> '3.24',
7583             'Locale::Codes::LangVar_Codes'=> '3.24',
7584             'Locale::Codes::LangVar_Retired'=> '3.24',
7585             'Locale::Codes::Language'=> '3.24',
7586             'Locale::Codes::Language_Codes'=> '3.24',
7587             'Locale::Codes::Language_Retired'=> '3.24',
7588             'Locale::Codes::Script' => '3.24',
7589             'Locale::Codes::Script_Codes'=> '3.24',
7590             'Locale::Codes::Script_Retired'=> '3.24',
7591             'Locale::Country'       => '3.24',
7592             'Locale::Currency'      => '3.24',
7593             'Locale::Language'      => '3.24',
7594             'Locale::Maketext'      => '1.23',
7595             'Locale::Script'        => '3.24',
7596             'Module::CoreList'      => '2.79',
7597             'Module::CoreList::TieHashDelta'=> '2.79',
7598             'POSIX'                 => '1.32',
7599             'Scalar::Util'          => '1.26',
7600             'Socket'                => '2.006_001',
7601             'Storable'              => '2.40',
7602             'Term::ReadLine'        => '1.11',
7603             'Unicode::Collate'      => '0.96',
7604             'Unicode::Collate::CJK::Stroke'=> '0.94',
7605             'Unicode::Collate::CJK::Zhuyin'=> '0.94',
7606             'Unicode::Collate::Locale'=> '0.96',
7607             'XS::APItest'           => '0.48',
7608             'XS::Typemap'           => '0.09',
7609             '_charnames'            => '1.34',
7610             'charnames'             => '1.34',
7611             'feature'               => '1.32',
7612             'mro'                   => '1.10',
7613             'sigtrap'               => '1.07',
7614             'sort'                  => '2.02',
7615         },
7616         removed => {
7617         }
7618     },
7619     5.017008 => {
7620         delta_from => 5.017007,
7621         changed => {
7622             'Archive::Extract'      => '0.62',
7623             'B'                     => '1.42',
7624             'B::Concise'            => '0.95',
7625             'Compress::Raw::Bzip2'  => '2.060',
7626             'Compress::Raw::Zlib'   => '2.060',
7627             'Compress::Zlib'        => '2.060',
7628             'Cwd'                   => '3.40',
7629             'Data::Dumper'          => '2.141',
7630             'Digest::SHA'           => '5.81',
7631             'ExtUtils::Install'     => '1.59',
7632             'File::Fetch'           => '0.38',
7633             'File::Path'            => '2.09',
7634             'File::Spec'            => '3.40',
7635             'File::Spec::Cygwin'    => '3.40',
7636             'File::Spec::Epoc'      => '3.40',
7637             'File::Spec::Functions' => '3.40',
7638             'File::Spec::Mac'       => '3.40',
7639             'File::Spec::OS2'       => '3.40',
7640             'File::Spec::Unix'      => '3.40',
7641             'File::Spec::VMS'       => '3.40',
7642             'File::Spec::Win32'     => '3.40',
7643             'HTTP::Tiny'            => '0.025',
7644             'Hash::Util'            => '0.14',
7645             'I18N::LangTags'        => '0.39',
7646             'I18N::LangTags::List'  => '0.39',
7647             'I18N::Langinfo'        => '0.09',
7648             'IO'                    => '1.26',
7649             'IO::Compress::Adapter::Bzip2'=> '2.060',
7650             'IO::Compress::Adapter::Deflate'=> '2.060',
7651             'IO::Compress::Adapter::Identity'=> '2.060',
7652             'IO::Compress::Base'    => '2.060',
7653             'IO::Compress::Base::Common'=> '2.060',
7654             'IO::Compress::Bzip2'   => '2.060',
7655             'IO::Compress::Deflate' => '2.060',
7656             'IO::Compress::Gzip'    => '2.060',
7657             'IO::Compress::Gzip::Constants'=> '2.060',
7658             'IO::Compress::RawDeflate'=> '2.060',
7659             'IO::Compress::Zip'     => '2.060',
7660             'IO::Compress::Zip::Constants'=> '2.060',
7661             'IO::Compress::Zlib::Constants'=> '2.060',
7662             'IO::Compress::Zlib::Extra'=> '2.060',
7663             'IO::Uncompress::Adapter::Bunzip2'=> '2.060',
7664             'IO::Uncompress::Adapter::Identity'=> '2.060',
7665             'IO::Uncompress::Adapter::Inflate'=> '2.060',
7666             'IO::Uncompress::AnyInflate'=> '2.060',
7667             'IO::Uncompress::AnyUncompress'=> '2.060',
7668             'IO::Uncompress::Base'  => '2.060',
7669             'IO::Uncompress::Bunzip2'=> '2.060',
7670             'IO::Uncompress::Gunzip'=> '2.060',
7671             'IO::Uncompress::Inflate'=> '2.060',
7672             'IO::Uncompress::RawInflate'=> '2.060',
7673             'IO::Uncompress::Unzip' => '2.060',
7674             'List::Util'            => '1.27',
7675             'List::Util::XS'        => '1.27',
7676             'Module::CoreList'      => '2.80',
7677             'Module::CoreList::TieHashDelta'=> '2.80',
7678             'Pod::Html'             => '1.17',
7679             'Pod::LaTeX'            => '0.61',
7680             'Pod::Man'              => '2.27',
7681             'Pod::Text'             => '3.17',
7682             'Pod::Text::Color'      => '2.07',
7683             'Pod::Text::Overstrike' => '2.05',
7684             'Pod::Text::Termcap'    => '2.07',
7685             'Safe'                  => '2.34',
7686             'Scalar::Util'          => '1.27',
7687             'Socket'                => '2.009',
7688             'Term::ANSIColor'       => '4.02',
7689             'Test'                  => '1.26',
7690             'Unicode::Collate'      => '0.97',
7691             'XS::APItest'           => '0.51',
7692             'XS::Typemap'           => '0.10',
7693             '_charnames'            => '1.35',
7694             'charnames'             => '1.35',
7695             'constant'              => '1.25',
7696             'diagnostics'           => '1.31',
7697             'threads::shared'       => '1.43',
7698             'warnings'              => '1.16',
7699         },
7700         removed => {
7701         }
7702     },
7703     5.017009 => {
7704         delta_from => 5.017008,
7705         changed => {
7706             'App::Cpan'             => '1.60_02',
7707             'App::Prove'            => '3.26',
7708             'App::Prove::State'     => '3.26',
7709             'App::Prove::State::Result'=> '3.26',
7710             'App::Prove::State::Result::Test'=> '3.26',
7711             'Archive::Extract'      => '0.68',
7712             'Attribute::Handlers'   => '0.94',
7713             'B::Lint'               => '1.17',
7714             'B::Lint::Debug'        => '1.17',
7715             'Benchmark'             => '1.14',
7716             'CPAN'                  => '2.00',
7717             'CPAN::Distribution'    => '2.00',
7718             'CPAN::FirstTime'       => '5.5304',
7719             'CPAN::Nox'             => '5.5001',
7720             'CPANPLUS'              => '0.9135',
7721             'CPANPLUS::Backend'     => '0.9135',
7722             'CPANPLUS::Backend::RV' => '0.9135',
7723             'CPANPLUS::Config'      => '0.9135',
7724             'CPANPLUS::Config::HomeEnv'=> '0.9135',
7725             'CPANPLUS::Configure'   => '0.9135',
7726             'CPANPLUS::Configure::Setup'=> '0.9135',
7727             'CPANPLUS::Dist'        => '0.9135',
7728             'CPANPLUS::Dist::Autobundle'=> '0.9135',
7729             'CPANPLUS::Dist::Base'  => '0.9135',
7730             'CPANPLUS::Dist::Build' => '0.70',
7731             'CPANPLUS::Dist::Build::Constants'=> '0.70',
7732             'CPANPLUS::Dist::MM'    => '0.9135',
7733             'CPANPLUS::Dist::Sample'=> '0.9135',
7734             'CPANPLUS::Error'       => '0.9135',
7735             'CPANPLUS::Internals'   => '0.9135',
7736             'CPANPLUS::Internals::Constants'=> '0.9135',
7737             'CPANPLUS::Internals::Constants::Report'=> '0.9135',
7738             'CPANPLUS::Internals::Extract'=> '0.9135',
7739             'CPANPLUS::Internals::Fetch'=> '0.9135',
7740             'CPANPLUS::Internals::Report'=> '0.9135',
7741             'CPANPLUS::Internals::Search'=> '0.9135',
7742             'CPANPLUS::Internals::Source'=> '0.9135',
7743             'CPANPLUS::Internals::Source::Memory'=> '0.9135',
7744             'CPANPLUS::Internals::Source::SQLite'=> '0.9135',
7745             'CPANPLUS::Internals::Source::SQLite::Tie'=> '0.9135',
7746             'CPANPLUS::Internals::Utils'=> '0.9135',
7747             'CPANPLUS::Internals::Utils::Autoflush'=> '0.9135',
7748             'CPANPLUS::Module'      => '0.9135',
7749             'CPANPLUS::Module::Author'=> '0.9135',
7750             'CPANPLUS::Module::Author::Fake'=> '0.9135',
7751             'CPANPLUS::Module::Checksums'=> '0.9135',
7752             'CPANPLUS::Module::Fake'=> '0.9135',
7753             'CPANPLUS::Module::Signature'=> '0.9135',
7754             'CPANPLUS::Selfupdate'  => '0.9135',
7755             'CPANPLUS::Shell'       => '0.9135',
7756             'CPANPLUS::Shell::Classic'=> '0.9135',
7757             'CPANPLUS::Shell::Default'=> '0.9135',
7758             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> '0.9135',
7759             'CPANPLUS::Shell::Default::Plugins::Remote'=> '0.9135',
7760             'CPANPLUS::Shell::Default::Plugins::Source'=> '0.9135',
7761             'Config'                => '5.017009',
7762             'Config::Perl::V'       => '0.17',
7763             'DBM_Filter'            => '0.05',
7764             'Data::Dumper'          => '2.142',
7765             'Digest::SHA'           => '5.82',
7766             'Encode'                => '2.48',
7767             'ExtUtils::Installed'   => '1.999003',
7768             'ExtUtils::Manifest'    => '1.63',
7769             'ExtUtils::ParseXS::Utilities'=> '3.19',
7770             'ExtUtils::Typemaps'    => '3.19',
7771             'File::CheckTree'       => '4.42',
7772             'File::DosGlob'         => '1.10',
7773             'File::Temp'            => '0.22_90',
7774             'Filter::Simple'        => '0.89',
7775             'IO'                    => '1.27',
7776             'Log::Message'          => '0.06',
7777             'Log::Message::Config'  => '0.06',
7778             'Log::Message::Handlers'=> '0.06',
7779             'Log::Message::Item'    => '0.06',
7780             'Log::Message::Simple'  => '0.10',
7781             'Math::BigInt'          => '1.999',
7782             'Module::CoreList'      => '2.82',
7783             'Module::CoreList::TieHashDelta'=> '2.82',
7784             'Module::Load'          => '0.24',
7785             'Module::Pluggable'     => '4.6',
7786             'Module::Pluggable::Object'=> '4.6',
7787             'OS2::DLL'              => '1.05',
7788             'OS2::ExtAttr'          => '0.03',
7789             'OS2::Process'          => '1.08',
7790             'Object::Accessor'      => '0.46',
7791             'PerlIO::scalar'        => '0.16',
7792             'Pod::Checker'          => '1.60',
7793             'Pod::Find'             => '1.60',
7794             'Pod::Html'             => '1.18',
7795             'Pod::InputObjects'     => '1.60',
7796             'Pod::ParseUtils'       => '1.60',
7797             'Pod::Parser'           => '1.60',
7798             'Pod::Perldoc'          => '3.19',
7799             'Pod::Perldoc::BaseTo'  => '3.19',
7800             'Pod::Perldoc::GetOptsOO'=> '3.19',
7801             'Pod::Perldoc::ToANSI'  => '3.19',
7802             'Pod::Perldoc::ToChecker'=> '3.19',
7803             'Pod::Perldoc::ToMan'   => '3.19',
7804             'Pod::Perldoc::ToNroff' => '3.19',
7805             'Pod::Perldoc::ToPod'   => '3.19',
7806             'Pod::Perldoc::ToRtf'   => '3.19',
7807             'Pod::Perldoc::ToTerm'  => '3.19',
7808             'Pod::Perldoc::ToText'  => '3.19',
7809             'Pod::Perldoc::ToTk'    => '3.19',
7810             'Pod::Perldoc::ToXml'   => '3.19',
7811             'Pod::PlainText'        => '2.06',
7812             'Pod::Select'           => '1.60',
7813             'Pod::Usage'            => '1.61',
7814             'SelfLoader'            => '1.21',
7815             'TAP::Base'             => '3.26',
7816             'TAP::Formatter::Base'  => '3.26',
7817             'TAP::Formatter::Color' => '3.26',
7818             'TAP::Formatter::Console'=> '3.26',
7819             'TAP::Formatter::Console::ParallelSession'=> '3.26',
7820             'TAP::Formatter::Console::Session'=> '3.26',
7821             'TAP::Formatter::File'  => '3.26',
7822             'TAP::Formatter::File::Session'=> '3.26',
7823             'TAP::Formatter::Session'=> '3.26',
7824             'TAP::Harness'          => '3.26',
7825             'TAP::Object'           => '3.26',
7826             'TAP::Parser'           => '3.26',
7827             'TAP::Parser::Aggregator'=> '3.26',
7828             'TAP::Parser::Grammar'  => '3.26',
7829             'TAP::Parser::Iterator' => '3.26',
7830             'TAP::Parser::Iterator::Array'=> '3.26',
7831             'TAP::Parser::Iterator::Process'=> '3.26',
7832             'TAP::Parser::Iterator::Stream'=> '3.26',
7833             'TAP::Parser::IteratorFactory'=> '3.26',
7834             'TAP::Parser::Multiplexer'=> '3.26',
7835             'TAP::Parser::Result'   => '3.26',
7836             'TAP::Parser::Result::Bailout'=> '3.26',
7837             'TAP::Parser::Result::Comment'=> '3.26',
7838             'TAP::Parser::Result::Plan'=> '3.26',
7839             'TAP::Parser::Result::Pragma'=> '3.26',
7840             'TAP::Parser::Result::Test'=> '3.26',
7841             'TAP::Parser::Result::Unknown'=> '3.26',
7842             'TAP::Parser::Result::Version'=> '3.26',
7843             'TAP::Parser::Result::YAML'=> '3.26',
7844             'TAP::Parser::ResultFactory'=> '3.26',
7845             'TAP::Parser::Scheduler'=> '3.26',
7846             'TAP::Parser::Scheduler::Job'=> '3.26',
7847             'TAP::Parser::Scheduler::Spinner'=> '3.26',
7848             'TAP::Parser::Source'   => '3.26',
7849             'TAP::Parser::SourceHandler'=> '3.26',
7850             'TAP::Parser::SourceHandler::Executable'=> '3.26',
7851             'TAP::Parser::SourceHandler::File'=> '3.26',
7852             'TAP::Parser::SourceHandler::Handle'=> '3.26',
7853             'TAP::Parser::SourceHandler::Perl'=> '3.26',
7854             'TAP::Parser::SourceHandler::RawTAP'=> '3.26',
7855             'TAP::Parser::Utils'    => '3.26',
7856             'TAP::Parser::YAMLish::Reader'=> '3.26',
7857             'TAP::Parser::YAMLish::Writer'=> '3.26',
7858             'Term::UI'              => '0.34',
7859             'Test::Harness'         => '3.26',
7860             'Text::Soundex'         => '3.04',
7861             'Thread::Queue'         => '3.02',
7862             'Unicode::UCD'          => '0.50',
7863             'Win32'                 => '0.46',
7864             'Win32API::File'        => '0.1201',
7865             '_charnames'            => '1.36',
7866             'arybase'               => '0.06',
7867             'bigint'                => '0.32',
7868             'bignum'                => '0.32',
7869             'charnames'             => '1.36',
7870             'filetest'              => '1.03',
7871             'locale'                => '1.02',
7872             'overload'              => '1.21',
7873             'warnings'              => '1.17',
7874         },
7875         removed => {
7876         }
7877     },
7878     5.017010 => {
7879         delta_from => 5.017009,
7880         changed => {
7881             'Benchmark'             => '1.15',
7882             'Config'                => '5.017009',
7883             'Data::Dumper'          => '2.145',
7884             'Digest::SHA'           => '5.84',
7885             'Encode'                => '2.49',
7886             'ExtUtils::Command::MM' => '6.65_01',
7887             'ExtUtils::Liblist'     => '6.65_01',
7888             'ExtUtils::Liblist::Kid'=> '6.65_01',
7889             'ExtUtils::MM'          => '6.65_01',
7890             'ExtUtils::MM_AIX'      => '6.65_01',
7891             'ExtUtils::MM_Any'      => '6.65_01',
7892             'ExtUtils::MM_BeOS'     => '6.65_01',
7893             'ExtUtils::MM_Cygwin'   => '6.65_01',
7894             'ExtUtils::MM_DOS'      => '6.65_01',
7895             'ExtUtils::MM_Darwin'   => '6.65_01',
7896             'ExtUtils::MM_MacOS'    => '6.65_01',
7897             'ExtUtils::MM_NW5'      => '6.65_01',
7898             'ExtUtils::MM_OS2'      => '6.65_01',
7899             'ExtUtils::MM_QNX'      => '6.65_01',
7900             'ExtUtils::MM_UWIN'     => '6.65_01',
7901             'ExtUtils::MM_Unix'     => '6.65_01',
7902             'ExtUtils::MM_VMS'      => '6.65_01',
7903             'ExtUtils::MM_VOS'      => '6.65_01',
7904             'ExtUtils::MM_Win32'    => '6.65_01',
7905             'ExtUtils::MM_Win95'    => '6.65_01',
7906             'ExtUtils::MY'          => '6.65_01',
7907             'ExtUtils::MakeMaker'   => '6.65_01',
7908             'ExtUtils::MakeMaker::Config'=> '6.65_01',
7909             'ExtUtils::Mkbootstrap' => '6.65_01',
7910             'ExtUtils::Mksymlists'  => '6.65_01',
7911             'ExtUtils::testlib'     => '6.65_01',
7912             'File::Copy'            => '2.26',
7913             'File::Temp'            => '0.23',
7914             'Getopt::Long'          => '2.39',
7915             'Hash::Util'            => '0.15',
7916             'I18N::Langinfo'        => '0.10',
7917             'IPC::Cmd'              => '0.80',
7918             'JSON::PP'              => '2.27202',
7919             'Locale::Codes'         => '3.25',
7920             'Locale::Codes::Constants'=> '3.25',
7921             'Locale::Codes::Country'=> '3.25',
7922             'Locale::Codes::Country_Codes'=> '3.25',
7923             'Locale::Codes::Country_Retired'=> '3.25',
7924             'Locale::Codes::Currency'=> '3.25',
7925             'Locale::Codes::Currency_Codes'=> '3.25',
7926             'Locale::Codes::Currency_Retired'=> '3.25',
7927             'Locale::Codes::LangExt'=> '3.25',
7928             'Locale::Codes::LangExt_Codes'=> '3.25',
7929             'Locale::Codes::LangExt_Retired'=> '3.25',
7930             'Locale::Codes::LangFam'=> '3.25',
7931             'Locale::Codes::LangFam_Codes'=> '3.25',
7932             'Locale::Codes::LangFam_Retired'=> '3.25',
7933             'Locale::Codes::LangVar'=> '3.25',
7934             'Locale::Codes::LangVar_Codes'=> '3.25',
7935             'Locale::Codes::LangVar_Retired'=> '3.25',
7936             'Locale::Codes::Language'=> '3.25',
7937             'Locale::Codes::Language_Codes'=> '3.25',
7938             'Locale::Codes::Language_Retired'=> '3.25',
7939             'Locale::Codes::Script' => '3.25',
7940             'Locale::Codes::Script_Codes'=> '3.25',
7941             'Locale::Codes::Script_Retired'=> '3.25',
7942             'Locale::Country'       => '3.25',
7943             'Locale::Currency'      => '3.25',
7944             'Locale::Language'      => '3.25',
7945             'Locale::Script'        => '3.25',
7946             'Math::BigFloat'        => '1.998',
7947             'Math::BigFloat::Trace' => '0.32',
7948             'Math::BigInt'          => '1.9991',
7949             'Math::BigInt::CalcEmu' => '1.998',
7950             'Math::BigInt::Trace'   => '0.32',
7951             'Math::BigRat'          => '0.2604',
7952             'Module::CoreList'      => '2.84',
7953             'Module::CoreList::TieHashDelta'=> '2.84',
7954             'Module::Pluggable'     => '4.7',
7955             'Net::Ping'             => '2.41',
7956             'Perl::OSType'          => '1.003',
7957             'Pod::Simple'           => '3.26',
7958             'Pod::Simple::BlackBox' => '3.26',
7959             'Pod::Simple::Checker'  => '3.26',
7960             'Pod::Simple::Debug'    => '3.26',
7961             'Pod::Simple::DumpAsText'=> '3.26',
7962             'Pod::Simple::DumpAsXML'=> '3.26',
7963             'Pod::Simple::HTML'     => '3.26',
7964             'Pod::Simple::HTMLBatch'=> '3.26',
7965             'Pod::Simple::LinkSection'=> '3.26',
7966             'Pod::Simple::Methody'  => '3.26',
7967             'Pod::Simple::Progress' => '3.26',
7968             'Pod::Simple::PullParser'=> '3.26',
7969             'Pod::Simple::PullParserEndToken'=> '3.26',
7970             'Pod::Simple::PullParserStartToken'=> '3.26',
7971             'Pod::Simple::PullParserTextToken'=> '3.26',
7972             'Pod::Simple::PullParserToken'=> '3.26',
7973             'Pod::Simple::RTF'      => '3.26',
7974             'Pod::Simple::Search'   => '3.26',
7975             'Pod::Simple::SimpleTree'=> '3.26',
7976             'Pod::Simple::Text'     => '3.26',
7977             'Pod::Simple::TextContent'=> '3.26',
7978             'Pod::Simple::TiedOutFH'=> '3.26',
7979             'Pod::Simple::Transcode'=> '3.26',
7980             'Pod::Simple::TranscodeDumb'=> '3.26',
7981             'Pod::Simple::TranscodeSmart'=> '3.26',
7982             'Pod::Simple::XHTML'    => '3.26',
7983             'Pod::Simple::XMLOutStream'=> '3.26',
7984             'Safe'                  => '2.35',
7985             'Term::ReadLine'        => '1.12',
7986             'Text::ParseWords'      => '3.28',
7987             'Tie::File'             => '0.99',
7988             'Unicode::UCD'          => '0.51',
7989             'Win32'                 => '0.47',
7990             'bigint'                => '0.33',
7991             'bignum'                => '0.33',
7992             'bigrat'                => '0.33',
7993             'constant'              => '1.27',
7994             'perlfaq'               => '5.0150042',
7995             'version'               => '0.9902',
7996         },
7997         removed => {
7998         }
7999     },
8000     5.017011 => {
8001         delta_from => 5.017010,
8002         changed => {
8003             'App::Cpan'             => '1.61',
8004             'B::Deparse'            => '1.20',
8005             'Config'                => '5.017009',
8006             'Exporter'              => '5.68',
8007             'Exporter::Heavy'       => '5.68',
8008             'ExtUtils::CBuilder'    => '0.280210',
8009             'ExtUtils::Command::MM' => '6.66',
8010             'ExtUtils::Liblist'     => '6.66',
8011             'ExtUtils::Liblist::Kid'=> '6.66',
8012             'ExtUtils::MM'          => '6.66',
8013             'ExtUtils::MM_AIX'      => '6.66',
8014             'ExtUtils::MM_Any'      => '6.66',
8015             'ExtUtils::MM_BeOS'     => '6.66',
8016             'ExtUtils::MM_Cygwin'   => '6.66',
8017             'ExtUtils::MM_DOS'      => '6.66',
8018             'ExtUtils::MM_Darwin'   => '6.66',
8019             'ExtUtils::MM_MacOS'    => '6.66',
8020             'ExtUtils::MM_NW5'      => '6.66',
8021             'ExtUtils::MM_OS2'      => '6.66',
8022             'ExtUtils::MM_QNX'      => '6.66',
8023             'ExtUtils::MM_UWIN'     => '6.66',
8024             'ExtUtils::MM_Unix'     => '6.66',
8025             'ExtUtils::MM_VMS'      => '6.66',
8026             'ExtUtils::MM_VOS'      => '6.66',
8027             'ExtUtils::MM_Win32'    => '6.66',
8028             'ExtUtils::MM_Win95'    => '6.66',
8029             'ExtUtils::MY'          => '6.66',
8030             'ExtUtils::MakeMaker'   => '6.66',
8031             'ExtUtils::MakeMaker::Config'=> '6.66',
8032             'ExtUtils::Mkbootstrap' => '6.66',
8033             'ExtUtils::Mksymlists'  => '6.66',
8034             'ExtUtils::testlib'     => '6.66',
8035             'File::Glob'            => '1.20',
8036             'IO'                    => '1.28',
8037             'Module::CoreList'      => '2.87',
8038             'Module::CoreList::TieHashDelta'=> '2.87',
8039             'Storable'              => '2.41',
8040             'bigint'                => '0.34',
8041             'mro'                   => '1.11',
8042             'overload'              => '1.22',
8043             'warnings'              => '1.18',
8044         },
8045         removed => {
8046         }
8047     },
8048     5.018000 => {
8049         delta_from => 5.017011,
8050         changed => {
8051             'Carp'                  => '1.29',
8052             'Carp::Heavy'           => '1.29',
8053             'Config'                => '5.018000',
8054             'Hash::Util'            => '0.16',
8055             'IO::Handle'            => '1.34',
8056             'IO::Socket'            => '1.36',
8057             'Module::CoreList'      => '2.89',
8058             'Module::CoreList::TieHashDelta'=> '2.89',
8059             'Pod::Simple'           => '3.28',
8060             'Pod::Simple::BlackBox' => '3.28',
8061             'Pod::Simple::Checker'  => '3.28',
8062             'Pod::Simple::Debug'    => '3.28',
8063             'Pod::Simple::DumpAsText'=> '3.28',
8064             'Pod::Simple::DumpAsXML'=> '3.28',
8065             'Pod::Simple::HTML'     => '3.28',
8066             'Pod::Simple::HTMLBatch'=> '3.28',
8067             'Pod::Simple::LinkSection'=> '3.28',
8068             'Pod::Simple::Methody'  => '3.28',
8069             'Pod::Simple::Progress' => '3.28',
8070             'Pod::Simple::PullParser'=> '3.28',
8071             'Pod::Simple::PullParserEndToken'=> '3.28',
8072             'Pod::Simple::PullParserStartToken'=> '3.28',
8073             'Pod::Simple::PullParserTextToken'=> '3.28',
8074             'Pod::Simple::PullParserToken'=> '3.28',
8075             'Pod::Simple::RTF'      => '3.28',
8076             'Pod::Simple::Search'   => '3.28',
8077             'Pod::Simple::SimpleTree'=> '3.28',
8078             'Pod::Simple::Text'     => '3.28',
8079             'Pod::Simple::TextContent'=> '3.28',
8080             'Pod::Simple::TiedOutFH'=> '3.28',
8081             'Pod::Simple::Transcode'=> '3.28',
8082             'Pod::Simple::TranscodeDumb'=> '3.28',
8083             'Pod::Simple::TranscodeSmart'=> '3.28',
8084             'Pod::Simple::XHTML'    => '3.28',
8085             'Pod::Simple::XMLOutStream'=> '3.28',
8086         },
8087         removed => {
8088         }
8089     },
8090     5.018001 => {
8091         delta_from => 5.018000,
8092         changed => {
8093             'B'                     => '1.42_01',
8094             'Config'                => '5.018001',
8095             'Digest::SHA'           => '5.84_01',
8096             'Module::CoreList'      => '2.96',
8097             'Module::CoreList::TieHashDelta'=> '2.96',
8098             'Module::CoreList::Utils'=> '2.96',
8099         },
8100         removed => {
8101            'VMS::Filespec'         => 1,
8102         }
8103     },
8104     5.018002 => {
8105         delta_from => 5.018001,
8106         changed => {
8107             'B'                     => '1.42_02',
8108             'B::Concise'            => '0.95_01',
8109             'Config'                => '5.018002',
8110             'File::Glob'            => '1.20_01',
8111             'Module::CoreList'      => '3.03',
8112             'Module::CoreList::TieHashDelta'=> '3.03',
8113             'Module::CoreList::Utils'=> '3.03',
8114         },
8115     },
8116     5.018003 => {
8117         delta_from => 5.018002,
8118         changed => {
8119             'Module::CoreList'      => '3.12',
8120             'Module::CoreList::TieHashDelta'=> '3.12',
8121             'Module::CoreList::Utils'=> '3.12',
8122         },
8123     },
8124     5.018004 => {
8125         delta_from => 5.018003,
8126         changed => {
8127             'Module::CoreList'      => '3.13',
8128             'Module::CoreList::TieHashDelta'=> '3.13',
8129             'Module::CoreList::Utils'=> '3.13',
8130         },
8131     },
8132     5.019000 => {
8133         delta_from => 5.018000,
8134         changed => {
8135             'Config'                => '5.019000',
8136             'Getopt::Std'           => '1.08',
8137             'Module::CoreList'      => '2.91',
8138             'Module::CoreList::TieHashDelta'=> '2.91',
8139             'Storable'              => '2.42',
8140             'feature'               => '1.33',
8141             'utf8'                  => '1.11',
8142         },
8143         removed => {
8144            'Archive::Extract'      => 1,
8145            'B::Lint'               => 1,
8146            'B::Lint::Debug'        => 1,
8147            'CPANPLUS'              => 1,
8148            'CPANPLUS::Backend'     => 1,
8149            'CPANPLUS::Backend::RV' => 1,
8150            'CPANPLUS::Config'      => 1,
8151            'CPANPLUS::Config::HomeEnv'=> 1,
8152            'CPANPLUS::Configure'   => 1,
8153            'CPANPLUS::Configure::Setup'=> 1,
8154            'CPANPLUS::Dist'        => 1,
8155            'CPANPLUS::Dist::Autobundle'=> 1,
8156            'CPANPLUS::Dist::Base'  => 1,
8157            'CPANPLUS::Dist::Build' => 1,
8158            'CPANPLUS::Dist::Build::Constants'=> 1,
8159            'CPANPLUS::Dist::MM'    => 1,
8160            'CPANPLUS::Dist::Sample'=> 1,
8161            'CPANPLUS::Error'       => 1,
8162            'CPANPLUS::Internals'   => 1,
8163            'CPANPLUS::Internals::Constants'=> 1,
8164            'CPANPLUS::Internals::Constants::Report'=> 1,
8165            'CPANPLUS::Internals::Extract'=> 1,
8166            'CPANPLUS::Internals::Fetch'=> 1,
8167            'CPANPLUS::Internals::Report'=> 1,
8168            'CPANPLUS::Internals::Search'=> 1,
8169            'CPANPLUS::Internals::Source'=> 1,
8170            'CPANPLUS::Internals::Source::Memory'=> 1,
8171            'CPANPLUS::Internals::Source::SQLite'=> 1,
8172            'CPANPLUS::Internals::Source::SQLite::Tie'=> 1,
8173            'CPANPLUS::Internals::Utils'=> 1,
8174            'CPANPLUS::Internals::Utils::Autoflush'=> 1,
8175            'CPANPLUS::Module'      => 1,
8176            'CPANPLUS::Module::Author'=> 1,
8177            'CPANPLUS::Module::Author::Fake'=> 1,
8178            'CPANPLUS::Module::Checksums'=> 1,
8179            'CPANPLUS::Module::Fake'=> 1,
8180            'CPANPLUS::Module::Signature'=> 1,
8181            'CPANPLUS::Selfupdate'  => 1,
8182            'CPANPLUS::Shell'       => 1,
8183            'CPANPLUS::Shell::Classic'=> 1,
8184            'CPANPLUS::Shell::Default'=> 1,
8185            'CPANPLUS::Shell::Default::Plugins::CustomSource'=> 1,
8186            'CPANPLUS::Shell::Default::Plugins::Remote'=> 1,
8187            'CPANPLUS::Shell::Default::Plugins::Source'=> 1,
8188            'Devel::InnerPackage'   => 1,
8189            'File::CheckTree'       => 1,
8190            'Log::Message'          => 1,
8191            'Log::Message::Config'  => 1,
8192            'Log::Message::Handlers'=> 1,
8193            'Log::Message::Item'    => 1,
8194            'Log::Message::Simple'  => 1,
8195            'Module::Pluggable'     => 1,
8196            'Module::Pluggable::Object'=> 1,
8197            'Object::Accessor'      => 1,
8198            'Pod::LaTeX'            => 1,
8199            'Term::UI'              => 1,
8200            'Term::UI::History'     => 1,
8201            'Text::Soundex'         => 1,
8202         }
8203     },
8204     5.019001 => {
8205         delta_from => 5.019000,
8206         changed => {
8207             'App::Prove'            => '3.28',
8208             'App::Prove::State'     => '3.28',
8209             'App::Prove::State::Result'=> '3.28',
8210             'App::Prove::State::Result::Test'=> '3.28',
8211             'Archive::Tar'          => '1.92',
8212             'Archive::Tar::Constant'=> '1.92',
8213             'Archive::Tar::File'    => '1.92',
8214             'Attribute::Handlers'   => '0.95',
8215             'B'                     => '1.43',
8216             'B::Concise'            => '0.96',
8217             'B::Deparse'            => '1.21',
8218             'B::Showlex'            => '1.04',
8219             'Benchmark'             => '1.16',
8220             'CPAN::Meta'            => '2.131560',
8221             'CPAN::Meta::Converter' => '2.131560',
8222             'CPAN::Meta::Feature'   => '2.131560',
8223             'CPAN::Meta::History'   => '2.131560',
8224             'CPAN::Meta::Prereqs'   => '2.131560',
8225             'CPAN::Meta::Spec'      => '2.131560',
8226             'CPAN::Meta::Validator' => '2.131560',
8227             'Carp'                  => '1.30',
8228             'Carp::Heavy'           => '1.30',
8229             'Compress::Raw::Bzip2'  => '2.061',
8230             'Compress::Raw::Zlib'   => '2.061',
8231             'Compress::Zlib'        => '2.061',
8232             'Config'                => '5.019001',
8233             'Config::Perl::V'       => '0.18',
8234             'Cwd'                   => '3.41',
8235             'DB'                    => '1.06',
8236             'DB_File'               => '1.828',
8237             'Data::Dumper'          => '2.146',
8238             'Encode'                => '2.51',
8239             'Encode::CN::HZ'        => '2.06',
8240             'Encode::GSM0338'       => '2.03',
8241             'Encode::Unicode::UTF7' => '2.07',
8242             'ExtUtils::CBuilder::Base'=> '0.280210',
8243             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280210',
8244             'ExtUtils::Command::MM' => '6.68',
8245             'ExtUtils::Install'     => '1.60',
8246             'ExtUtils::Liblist'     => '6.68',
8247             'ExtUtils::Liblist::Kid'=> '6.68',
8248             'ExtUtils::MM'          => '6.68',
8249             'ExtUtils::MM_AIX'      => '6.68',
8250             'ExtUtils::MM_Any'      => '6.68',
8251             'ExtUtils::MM_BeOS'     => '6.68',
8252             'ExtUtils::MM_Cygwin'   => '6.68',
8253             'ExtUtils::MM_DOS'      => '6.68',
8254             'ExtUtils::MM_Darwin'   => '6.68',
8255             'ExtUtils::MM_MacOS'    => '6.68',
8256             'ExtUtils::MM_NW5'      => '6.68',
8257             'ExtUtils::MM_OS2'      => '6.68',
8258             'ExtUtils::MM_QNX'      => '6.68',
8259             'ExtUtils::MM_UWIN'     => '6.68',
8260             'ExtUtils::MM_Unix'     => '6.68',
8261             'ExtUtils::MM_VMS'      => '6.68',
8262             'ExtUtils::MM_VOS'      => '6.68',
8263             'ExtUtils::MM_Win32'    => '6.68',
8264             'ExtUtils::MM_Win95'    => '6.68',
8265             'ExtUtils::MY'          => '6.68',
8266             'ExtUtils::MakeMaker'   => '6.68',
8267             'ExtUtils::MakeMaker::Config'=> '6.68',
8268             'ExtUtils::Mkbootstrap' => '6.68',
8269             'ExtUtils::Mksymlists'  => '6.68',
8270             'ExtUtils::ParseXS'     => '3.19',
8271             'ExtUtils::testlib'     => '6.68',
8272             'Fatal'                 => '2.19',
8273             'File::Copy'            => '2.27',
8274             'File::DosGlob'         => '1.11',
8275             'File::Fetch'           => '0.42',
8276             'File::Find'            => '1.24',
8277             'File::Spec'            => '3.41',
8278             'File::Spec::Cygwin'    => '3.41',
8279             'File::Spec::Epoc'      => '3.41',
8280             'File::Spec::Mac'       => '3.41',
8281             'File::Spec::OS2'       => '3.41',
8282             'File::Spec::Unix'      => '3.41',
8283             'File::Spec::VMS'       => '3.41',
8284             'File::Spec::Win32'     => '3.41',
8285             'File::Temp'            => '0.2301',
8286             'Filter::Simple'        => '0.90',
8287             'Filter::Util::Call'    => '1.49',
8288             'Getopt::Long'          => '2.4',
8289             'HTTP::Tiny'            => '0.031',
8290             'Hash::Util::FieldHash' => '1.11',
8291             'IO::Compress::Adapter::Bzip2'=> '2.061',
8292             'IO::Compress::Adapter::Deflate'=> '2.061',
8293             'IO::Compress::Adapter::Identity'=> '2.061',
8294             'IO::Compress::Base'    => '2.061',
8295             'IO::Compress::Base::Common'=> '2.061',
8296             'IO::Compress::Bzip2'   => '2.061',
8297             'IO::Compress::Deflate' => '2.061',
8298             'IO::Compress::Gzip'    => '2.061',
8299             'IO::Compress::Gzip::Constants'=> '2.061',
8300             'IO::Compress::RawDeflate'=> '2.061',
8301             'IO::Compress::Zip'     => '2.061',
8302             'IO::Compress::Zip::Constants'=> '2.061',
8303             'IO::Compress::Zlib::Constants'=> '2.061',
8304             'IO::Compress::Zlib::Extra'=> '2.061',
8305             'IO::Handle'            => '1.35',
8306             'IO::Uncompress::Adapter::Bunzip2'=> '2.061',
8307             'IO::Uncompress::Adapter::Identity'=> '2.061',
8308             'IO::Uncompress::Adapter::Inflate'=> '2.061',
8309             'IO::Uncompress::AnyInflate'=> '2.061',
8310             'IO::Uncompress::AnyUncompress'=> '2.061',
8311             'IO::Uncompress::Base'  => '2.061',
8312             'IO::Uncompress::Bunzip2'=> '2.061',
8313             'IO::Uncompress::Gunzip'=> '2.061',
8314             'IO::Uncompress::Inflate'=> '2.061',
8315             'IO::Uncompress::RawInflate'=> '2.061',
8316             'IO::Uncompress::Unzip' => '2.061',
8317             'IPC::Open3'            => '1.14',
8318             'Locale::Codes'         => '3.26',
8319             'Locale::Codes::Constants'=> '3.26',
8320             'Locale::Codes::Country'=> '3.26',
8321             'Locale::Codes::Country_Codes'=> '3.26',
8322             'Locale::Codes::Country_Retired'=> '3.26',
8323             'Locale::Codes::Currency'=> '3.26',
8324             'Locale::Codes::Currency_Codes'=> '3.26',
8325             'Locale::Codes::Currency_Retired'=> '3.26',
8326             'Locale::Codes::LangExt'=> '3.26',
8327             'Locale::Codes::LangExt_Codes'=> '3.26',
8328             'Locale::Codes::LangExt_Retired'=> '3.26',
8329             'Locale::Codes::LangFam'=> '3.26',
8330             'Locale::Codes::LangFam_Codes'=> '3.26',
8331             'Locale::Codes::LangFam_Retired'=> '3.26',
8332             'Locale::Codes::LangVar'=> '3.26',
8333             'Locale::Codes::LangVar_Codes'=> '3.26',
8334             'Locale::Codes::LangVar_Retired'=> '3.26',
8335             'Locale::Codes::Language'=> '3.26',
8336             'Locale::Codes::Language_Codes'=> '3.26',
8337             'Locale::Codes::Language_Retired'=> '3.26',
8338             'Locale::Codes::Script' => '3.26',
8339             'Locale::Codes::Script_Codes'=> '3.26',
8340             'Locale::Codes::Script_Retired'=> '3.26',
8341             'Locale::Country'       => '3.26',
8342             'Locale::Currency'      => '3.26',
8343             'Locale::Language'      => '3.26',
8344             'Locale::Maketext'      => '1.24',
8345             'Locale::Script'        => '3.26',
8346             'Math::BigFloat'        => '1.999',
8347             'Math::BigInt'          => '1.9992',
8348             'Math::BigInt::Calc'    => '1.998',
8349             'Math::BigInt::CalcEmu' => '1.9991',
8350             'Math::BigRat'          => '0.2606',
8351             'Module::Build'         => '0.4005',
8352             'Module::Build::Base'   => '0.4005',
8353             'Module::Build::Compat' => '0.4005',
8354             'Module::Build::Config' => '0.4005',
8355             'Module::Build::Cookbook'=> '0.4005',
8356             'Module::Build::Dumper' => '0.4005',
8357             'Module::Build::ModuleInfo'=> '0.4005',
8358             'Module::Build::Notes'  => '0.4005',
8359             'Module::Build::PPMMaker'=> '0.4005',
8360             'Module::Build::Platform::Amiga'=> '0.4005',
8361             'Module::Build::Platform::Default'=> '0.4005',
8362             'Module::Build::Platform::EBCDIC'=> '0.4005',
8363             'Module::Build::Platform::MPEiX'=> '0.4005',
8364             'Module::Build::Platform::MacOS'=> '0.4005',
8365             'Module::Build::Platform::RiscOS'=> '0.4005',
8366             'Module::Build::Platform::Unix'=> '0.4005',
8367             'Module::Build::Platform::VMS'=> '0.4005',
8368             'Module::Build::Platform::VOS'=> '0.4005',
8369             'Module::Build::Platform::Windows'=> '0.4005',
8370             'Module::Build::Platform::aix'=> '0.4005',
8371             'Module::Build::Platform::cygwin'=> '0.4005',
8372             'Module::Build::Platform::darwin'=> '0.4005',
8373             'Module::Build::Platform::os2'=> '0.4005',
8374             'Module::Build::PodParser'=> '0.4005',
8375             'Module::CoreList'      => '2.92',
8376             'Module::CoreList::TieHashDelta'=> '2.92',
8377             'Module::CoreList::Utils'=> '2.92',
8378             'Module::Metadata'      => '1.000014',
8379             'Net::Ping'             => '2.42',
8380             'OS2::Process'          => '1.09',
8381             'POSIX'                 => '1.33',
8382             'Pod::Find'             => '1.61',
8383             'Pod::Html'             => '1.19',
8384             'Pod::InputObjects'     => '1.61',
8385             'Pod::ParseUtils'       => '1.61',
8386             'Pod::Parser'           => '1.61',
8387             'Pod::Perldoc'          => '3.20',
8388             'Pod::Perldoc::BaseTo'  => '3.20',
8389             'Pod::Perldoc::GetOptsOO'=> '3.20',
8390             'Pod::Perldoc::ToANSI'  => '3.20',
8391             'Pod::Perldoc::ToChecker'=> '3.20',
8392             'Pod::Perldoc::ToMan'   => '3.20',
8393             'Pod::Perldoc::ToNroff' => '3.20',
8394             'Pod::Perldoc::ToPod'   => '3.20',
8395             'Pod::Perldoc::ToRtf'   => '3.20',
8396             'Pod::Perldoc::ToTerm'  => '3.20',
8397             'Pod::Perldoc::ToText'  => '3.20',
8398             'Pod::Perldoc::ToTk'    => '3.20',
8399             'Pod::Perldoc::ToXml'   => '3.20',
8400             'Pod::Select'           => '1.61',
8401             'Pod::Usage'            => '1.63',
8402             'Safe'                  => '2.36',
8403             'Storable'              => '2.43',
8404             'Sys::Hostname'         => '1.18',
8405             'Sys::Syslog'           => '0.33',
8406             'TAP::Base'             => '3.28',
8407             'TAP::Formatter::Base'  => '3.28',
8408             'TAP::Formatter::Color' => '3.28',
8409             'TAP::Formatter::Console'=> '3.28',
8410             'TAP::Formatter::Console::ParallelSession'=> '3.28',
8411             'TAP::Formatter::Console::Session'=> '3.28',
8412             'TAP::Formatter::File'  => '3.28',
8413             'TAP::Formatter::File::Session'=> '3.28',
8414             'TAP::Formatter::Session'=> '3.28',
8415             'TAP::Harness'          => '3.28',
8416             'TAP::Object'           => '3.28',
8417             'TAP::Parser'           => '3.28',
8418             'TAP::Parser::Aggregator'=> '3.28',
8419             'TAP::Parser::Grammar'  => '3.28',
8420             'TAP::Parser::Iterator' => '3.28',
8421             'TAP::Parser::Iterator::Array'=> '3.28',
8422             'TAP::Parser::Iterator::Process'=> '3.28',
8423             'TAP::Parser::Iterator::Stream'=> '3.28',
8424             'TAP::Parser::IteratorFactory'=> '3.28',
8425             'TAP::Parser::Multiplexer'=> '3.28',
8426             'TAP::Parser::Result'   => '3.28',
8427             'TAP::Parser::Result::Bailout'=> '3.28',
8428             'TAP::Parser::Result::Comment'=> '3.28',
8429             'TAP::Parser::Result::Plan'=> '3.28',
8430             'TAP::Parser::Result::Pragma'=> '3.28',
8431             'TAP::Parser::Result::Test'=> '3.28',
8432             'TAP::Parser::Result::Unknown'=> '3.28',
8433             'TAP::Parser::Result::Version'=> '3.28',
8434             'TAP::Parser::Result::YAML'=> '3.28',
8435             'TAP::Parser::ResultFactory'=> '3.28',
8436             'TAP::Parser::Scheduler'=> '3.28',
8437             'TAP::Parser::Scheduler::Job'=> '3.28',
8438             'TAP::Parser::Scheduler::Spinner'=> '3.28',
8439             'TAP::Parser::Source'   => '3.28',
8440             'TAP::Parser::SourceHandler'=> '3.28',
8441             'TAP::Parser::SourceHandler::Executable'=> '3.28',
8442             'TAP::Parser::SourceHandler::File'=> '3.28',
8443             'TAP::Parser::SourceHandler::Handle'=> '3.28',
8444             'TAP::Parser::SourceHandler::Perl'=> '3.28',
8445             'TAP::Parser::SourceHandler::RawTAP'=> '3.28',
8446             'TAP::Parser::Utils'    => '3.28',
8447             'TAP::Parser::YAMLish::Reader'=> '3.28',
8448             'TAP::Parser::YAMLish::Writer'=> '3.28',
8449             'Term::ReadLine'        => '1.13',
8450             'Test::Harness'         => '3.28',
8451             'Text::Tabs'            => '2013.0523',
8452             'Text::Wrap'            => '2013.0523',
8453             'Thread'                => '3.04',
8454             'Tie::File'             => '1.00',
8455             'Time::Piece'           => '1.2002',
8456             'Unicode::Collate'      => '0.98',
8457             'Unicode::UCD'          => '0.53',
8458             'XS::APItest'           => '0.53',
8459             '_charnames'            => '1.37',
8460             'autodie'               => '2.19',
8461             'autodie::exception'    => '2.19',
8462             'autodie::exception::system'=> '2.19',
8463             'autodie::hints'        => '2.19',
8464             'autodie::skip'         => '2.19',
8465             'bigint'                => '0.35',
8466             'charnames'             => '1.38',
8467             'encoding'              => '2.12',
8468             'inc::latest'           => '0.4005',
8469             'mro'                   => '1.12',
8470             'perlfaq'               => '5.0150043',
8471             're'                    => '0.25',
8472             'threads'               => '1.87',
8473             'threads::shared'       => '1.44',
8474             'utf8'                  => '1.12',
8475         },
8476         removed => {
8477         }
8478     },
8479     5.019002 => {
8480         delta_from => 5.019001,
8481         changed => {
8482             'B'                     => '1.44',
8483             'B::Concise'            => '0.98',
8484             'B::Deparse'            => '1.22',
8485             'Benchmark'             => '1.17',
8486             'Class::Struct'         => '0.65',
8487             'Config'                => '5.019002',
8488             'DB'                    => '1.07',
8489             'DBM_Filter'            => '0.06',
8490             'DBM_Filter::compress'  => '0.03',
8491             'DBM_Filter::encode'    => '0.03',
8492             'DBM_Filter::int32'     => '0.03',
8493             'DBM_Filter::null'      => '0.03',
8494             'DBM_Filter::utf8'      => '0.03',
8495             'DB_File'               => '1.829',
8496             'Data::Dumper'          => '2.147',
8497             'Devel::Peek'           => '1.12',
8498             'Digest::MD5'           => '2.53',
8499             'Digest::SHA'           => '5.85',
8500             'English'               => '1.07',
8501             'Errno'                 => '1.19',
8502             'ExtUtils::Embed'       => '1.31',
8503             'ExtUtils::Miniperl'    => '1',
8504             'ExtUtils::ParseXS'     => '3.21',
8505             'ExtUtils::ParseXS::Constants'=> '3.21',
8506             'ExtUtils::ParseXS::CountLines'=> '3.21',
8507             'ExtUtils::ParseXS::Eval'=> '3.19',
8508             'ExtUtils::ParseXS::Utilities'=> '3.21',
8509             'ExtUtils::Typemaps'    => '3.21',
8510             'ExtUtils::Typemaps::Cmd'=> '3.21',
8511             'ExtUtils::Typemaps::InputMap'=> '3.21',
8512             'ExtUtils::Typemaps::OutputMap'=> '3.21',
8513             'ExtUtils::Typemaps::Type'=> '3.21',
8514             'ExtUtils::XSSymSet'    => '1.3',
8515             'Fatal'                 => '2.20',
8516             'File::Basename'        => '2.85',
8517             'File::Spec::VMS'       => '3.43',
8518             'File::Spec::Win32'     => '3.42',
8519             'Getopt::Long'          => '2.41',
8520             'Getopt::Std'           => '1.09',
8521             'HTTP::Tiny'            => '0.034',
8522             'Hash::Util::FieldHash' => '1.12',
8523             'I18N::Langinfo'        => '0.11',
8524             'IO::Socket::INET'      => '1.34',
8525             'IO::Socket::UNIX'      => '1.25',
8526             'IPC::Cmd'              => '0.82',
8527             'MIME::Base64'          => '3.14',
8528             'Module::CoreList'      => '2.94',
8529             'Module::CoreList::TieHashDelta'=> '2.94',
8530             'Module::CoreList::Utils'=> '2.94',
8531             'POSIX'                 => '1.34',
8532             'Params::Check'         => '0.38',
8533             'Parse::CPAN::Meta'     => '1.4405',
8534             'Pod::Functions'        => '1.07',
8535             'Pod::Html'             => '1.2',
8536             'Safe'                  => '2.37',
8537             'Socket'                => '2.010',
8538             'Storable'              => '2.45',
8539             'Text::ParseWords'      => '3.29',
8540             'Tie::Array'            => '1.06',
8541             'Tie::Hash'             => '1.05',
8542             'Tie::Scalar'           => '1.03',
8543             'Time::Piece'           => '1.21',
8544             'Time::Seconds'         => '1.21',
8545             'XS::APItest'           => '0.54',
8546             'autodie'               => '2.20',
8547             'autodie::exception'    => '2.20',
8548             'autodie::exception::system'=> '2.20',
8549             'autodie::hints'        => '2.20',
8550             'autodie::skip'         => '2.20',
8551             'base'                  => '2.19',
8552             'deprecate'             => '0.03',
8553             'if'                    => '0.0603',
8554             'integer'               => '1.01',
8555             'strict'                => '1.08',
8556             'subs'                  => '1.02',
8557             'vmsish'                => '1.04',
8558         },
8559         removed => {
8560         }
8561     },
8562     5.019003 => {
8563         delta_from => 5.019002,
8564         changed => {
8565             'B'                     => '1.45',
8566             'CPAN::Meta'            => '2.132140',
8567             'CPAN::Meta::Converter' => '2.132140',
8568             'CPAN::Meta::Feature'   => '2.132140',
8569             'CPAN::Meta::History'   => '2.132140',
8570             'CPAN::Meta::Prereqs'   => '2.132140',
8571             'CPAN::Meta::Spec'      => '2.132140',
8572             'CPAN::Meta::Validator' => '2.132140',
8573             'Carp'                  => '1.31',
8574             'Carp::Heavy'           => '1.31',
8575             'Compress::Raw::Bzip2'  => '2.062',
8576             'Compress::Raw::Zlib'   => '2.062',
8577             'Compress::Zlib'        => '2.062',
8578             'Config'                => '5.019003',
8579             'Config::Perl::V'       => '0.19',
8580             'Cwd'                   => '3.44',
8581             'Data::Dumper'          => '2.148',
8582             'Devel::PPPort'         => '3.21',
8583             'Devel::Peek'           => '1.13',
8584             'DynaLoader'            => '1.19',
8585             'Encode'                => '2.52',
8586             'Encode::Alias'         => '2.17',
8587             'Encode::Encoding'      => '2.06',
8588             'Encode::GSM0338'       => '2.04',
8589             'Encode::MIME::Header'  => '2.14',
8590             'Encode::Unicode'       => '2.08',
8591             'English'               => '1.08',
8592             'Exporter'              => '5.69',
8593             'Exporter::Heavy'       => '5.69',
8594             'ExtUtils::Command::MM' => '6.72',
8595             'ExtUtils::Liblist'     => '6.72',
8596             'ExtUtils::Liblist::Kid'=> '6.72',
8597             'ExtUtils::MM'          => '6.72',
8598             'ExtUtils::MM_AIX'      => '6.72',
8599             'ExtUtils::MM_Any'      => '6.72',
8600             'ExtUtils::MM_BeOS'     => '6.72',
8601             'ExtUtils::MM_Cygwin'   => '6.72',
8602             'ExtUtils::MM_DOS'      => '6.72',
8603             'ExtUtils::MM_Darwin'   => '6.72',
8604             'ExtUtils::MM_MacOS'    => '6.72',
8605             'ExtUtils::MM_NW5'      => '6.72',
8606             'ExtUtils::MM_OS2'      => '6.72',
8607             'ExtUtils::MM_QNX'      => '6.72',
8608             'ExtUtils::MM_UWIN'     => '6.72',
8609             'ExtUtils::MM_Unix'     => '6.72',
8610             'ExtUtils::MM_VMS'      => '6.72',
8611             'ExtUtils::MM_VOS'      => '6.72',
8612             'ExtUtils::MM_Win32'    => '6.72',
8613             'ExtUtils::MM_Win95'    => '6.72',
8614             'ExtUtils::MY'          => '6.72',
8615             'ExtUtils::MakeMaker'   => '6.72',
8616             'ExtUtils::MakeMaker::Config'=> '6.72',
8617             'ExtUtils::Mkbootstrap' => '6.72',
8618             'ExtUtils::Mksymlists'  => '6.72',
8619             'ExtUtils::ParseXS::Eval'=> '3.21',
8620             'ExtUtils::testlib'     => '6.72',
8621             'File::Spec'            => '3.44',
8622             'File::Spec::Cygwin'    => '3.44',
8623             'File::Spec::Epoc'      => '3.44',
8624             'File::Spec::Functions' => '3.44',
8625             'File::Spec::Mac'       => '3.44',
8626             'File::Spec::OS2'       => '3.44',
8627             'File::Spec::Unix'      => '3.44',
8628             'File::Spec::VMS'       => '3.44',
8629             'File::Spec::Win32'     => '3.44',
8630             'Getopt::Std'           => '1.10',
8631             'IO::Compress::Adapter::Bzip2'=> '2.062',
8632             'IO::Compress::Adapter::Deflate'=> '2.062',
8633             'IO::Compress::Adapter::Identity'=> '2.062',
8634             'IO::Compress::Base'    => '2.062',
8635             'IO::Compress::Base::Common'=> '2.062',
8636             'IO::Compress::Bzip2'   => '2.062',
8637             'IO::Compress::Deflate' => '2.062',
8638             'IO::Compress::Gzip'    => '2.062',
8639             'IO::Compress::Gzip::Constants'=> '2.062',
8640             'IO::Compress::RawDeflate'=> '2.062',
8641             'IO::Compress::Zip'     => '2.062',
8642             'IO::Compress::Zip::Constants'=> '2.062',
8643             'IO::Compress::Zlib::Constants'=> '2.062',
8644             'IO::Compress::Zlib::Extra'=> '2.062',
8645             'IO::Uncompress::Adapter::Bunzip2'=> '2.062',
8646             'IO::Uncompress::Adapter::Identity'=> '2.062',
8647             'IO::Uncompress::Adapter::Inflate'=> '2.062',
8648             'IO::Uncompress::AnyInflate'=> '2.062',
8649             'IO::Uncompress::AnyUncompress'=> '2.062',
8650             'IO::Uncompress::Base'  => '2.062',
8651             'IO::Uncompress::Bunzip2'=> '2.062',
8652             'IO::Uncompress::Gunzip'=> '2.062',
8653             'IO::Uncompress::Inflate'=> '2.062',
8654             'IO::Uncompress::RawInflate'=> '2.062',
8655             'IO::Uncompress::Unzip' => '2.062',
8656             'IPC::Cmd'              => '0.84',
8657             'IPC::Msg'              => '2.04',
8658             'IPC::Open3'            => '1.15',
8659             'IPC::Semaphore'        => '2.04',
8660             'IPC::SharedMem'        => '2.04',
8661             'IPC::SysV'             => '2.04',
8662             'List::Util'            => '1.31',
8663             'List::Util::XS'        => '1.31',
8664             'Math::BigFloat::Trace' => '0.36',
8665             'Math::BigInt::Trace'   => '0.36',
8666             'Module::Build'         => '0.4007',
8667             'Module::Build::Base'   => '0.4007',
8668             'Module::Build::Compat' => '0.4007',
8669             'Module::Build::Config' => '0.4007',
8670             'Module::Build::Cookbook'=> '0.4007',
8671             'Module::Build::Dumper' => '0.4007',
8672             'Module::Build::ModuleInfo'=> '0.4007',
8673             'Module::Build::Notes'  => '0.4007',
8674             'Module::Build::PPMMaker'=> '0.4007',
8675             'Module::Build::Platform::Default'=> '0.4007',
8676             'Module::Build::Platform::MacOS'=> '0.4007',
8677             'Module::Build::Platform::Unix'=> '0.4007',
8678             'Module::Build::Platform::VMS'=> '0.4007',
8679             'Module::Build::Platform::VOS'=> '0.4007',
8680             'Module::Build::Platform::Windows'=> '0.4007',
8681             'Module::Build::Platform::aix'=> '0.4007',
8682             'Module::Build::Platform::cygwin'=> '0.4007',
8683             'Module::Build::Platform::darwin'=> '0.4007',
8684             'Module::Build::Platform::os2'=> '0.4007',
8685             'Module::Build::PodParser'=> '0.4007',
8686             'Module::CoreList'      => '2.97',
8687             'Module::CoreList::TieHashDelta'=> '2.97',
8688             'Module::CoreList::Utils'=> '2.97',
8689             'Net::Cmd'              => '2.30',
8690             'Net::Config'           => '1.12',
8691             'Net::Domain'           => '2.22',
8692             'Net::FTP'              => '2.78',
8693             'Net::FTP::dataconn'    => '0.12',
8694             'Net::NNTP'             => '2.25',
8695             'Net::Netrc'            => '2.14',
8696             'Net::POP3'             => '2.30',
8697             'Net::SMTP'             => '2.32',
8698             'PerlIO'                => '1.08',
8699             'Pod::Functions'        => '1.08',
8700             'Scalar::Util'          => '1.31',
8701             'Socket'                => '2.011',
8702             'Storable'              => '2.46',
8703             'Time::HiRes'           => '1.9726',
8704             'Time::Piece'           => '1.22',
8705             'Time::Seconds'         => '1.22',
8706             'XS::APItest'           => '0.55',
8707             'bigint'                => '0.36',
8708             'bignum'                => '0.36',
8709             'bigrat'                => '0.36',
8710             'constant'              => '1.28',
8711             'diagnostics'           => '1.32',
8712             'inc::latest'           => '0.4007',
8713             'mro'                   => '1.13',
8714             'parent'                => '0.226',
8715             'utf8'                  => '1.13',
8716             'version'               => '0.9903',
8717         },
8718         removed => {
8719            'Module::Build::Platform::Amiga'=> 1,
8720            'Module::Build::Platform::EBCDIC'=> 1,
8721            'Module::Build::Platform::MPEiX'=> 1,
8722            'Module::Build::Platform::RiscOS'=> 1,
8723         }
8724     },
8725     5.019004 => {
8726         delta_from => 5.019003,
8727         changed => {
8728             'B'                     => '1.46',
8729             'B::Concise'            => '0.99',
8730             'B::Deparse'            => '1.23',
8731             'CPAN'                  => '2.03',
8732             'CPAN::Meta'            => '2.132620',
8733             'CPAN::Meta::Converter' => '2.132620',
8734             'CPAN::Meta::Feature'   => '2.132620',
8735             'CPAN::Meta::History'   => '2.132620',
8736             'CPAN::Meta::Prereqs'   => '2.132620',
8737             'CPAN::Meta::Requirements'=> '2.123',
8738             'CPAN::Meta::Spec'      => '2.132620',
8739             'CPAN::Meta::Validator' => '2.132620',
8740             'Carp'                  => '1.32',
8741             'Carp::Heavy'           => '1.32',
8742             'Config'                => '5.019004',
8743             'Data::Dumper'          => '2.149',
8744             'Devel::Peek'           => '1.14',
8745             'DynaLoader'            => '1.20',
8746             'Encode'                => '2.55',
8747             'Encode::Alias'         => '2.18',
8748             'Encode::CN::HZ'        => '2.07',
8749             'Encode::Encoder'       => '2.03',
8750             'Encode::Encoding'      => '2.07',
8751             'Encode::GSM0338'       => '2.05',
8752             'Encode::Guess'         => '2.06',
8753             'Encode::JP::JIS7'      => '2.05',
8754             'Encode::KR::2022_KR'   => '2.03',
8755             'Encode::MIME::Header'  => '2.15',
8756             'Encode::MIME::Header::ISO_2022_JP'=> '1.04',
8757             'Encode::Unicode'       => '2.09',
8758             'Encode::Unicode::UTF7' => '2.08',
8759             'Errno'                 => '1.20',
8760             'Exporter'              => '5.70',
8761             'Exporter::Heavy'       => '5.70',
8762             'ExtUtils::CBuilder'    => '0.280212',
8763             'ExtUtils::CBuilder::Base'=> '0.280212',
8764             'ExtUtils::CBuilder::Platform::Unix'=> '0.280212',
8765             'ExtUtils::CBuilder::Platform::VMS'=> '0.280212',
8766             'ExtUtils::CBuilder::Platform::Windows'=> '0.280212',
8767             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280212',
8768             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280212',
8769             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280212',
8770             'ExtUtils::CBuilder::Platform::aix'=> '0.280212',
8771             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280212',
8772             'ExtUtils::CBuilder::Platform::darwin'=> '0.280212',
8773             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280212',
8774             'ExtUtils::CBuilder::Platform::os2'=> '0.280212',
8775             'ExtUtils::Command'     => '1.18',
8776             'ExtUtils::Command::MM' => '6.76',
8777             'ExtUtils::Liblist'     => '6.76',
8778             'ExtUtils::Liblist::Kid'=> '6.76',
8779             'ExtUtils::MM'          => '6.76',
8780             'ExtUtils::MM_AIX'      => '6.76',
8781             'ExtUtils::MM_Any'      => '6.76',
8782             'ExtUtils::MM_BeOS'     => '6.76',
8783             'ExtUtils::MM_Cygwin'   => '6.76',
8784             'ExtUtils::MM_DOS'      => '6.76',
8785             'ExtUtils::MM_Darwin'   => '6.76',
8786             'ExtUtils::MM_MacOS'    => '6.76',
8787             'ExtUtils::MM_NW5'      => '6.76',
8788             'ExtUtils::MM_OS2'      => '6.76',
8789             'ExtUtils::MM_QNX'      => '6.76',
8790             'ExtUtils::MM_UWIN'     => '6.76',
8791             'ExtUtils::MM_Unix'     => '6.76',
8792             'ExtUtils::MM_VMS'      => '6.76',
8793             'ExtUtils::MM_VOS'      => '6.76',
8794             'ExtUtils::MM_Win32'    => '6.76',
8795             'ExtUtils::MM_Win95'    => '6.76',
8796             'ExtUtils::MY'          => '6.76',
8797             'ExtUtils::MakeMaker'   => '6.76',
8798             'ExtUtils::MakeMaker::Config'=> '6.76',
8799             'ExtUtils::Mkbootstrap' => '6.76',
8800             'ExtUtils::Mksymlists'  => '6.76',
8801             'ExtUtils::ParseXS'     => '3.23',
8802             'ExtUtils::ParseXS::Constants'=> '3.23',
8803             'ExtUtils::ParseXS::CountLines'=> '3.23',
8804             'ExtUtils::ParseXS::Eval'=> '3.23',
8805             'ExtUtils::ParseXS::Utilities'=> '3.23',
8806             'ExtUtils::Typemaps'    => '3.23',
8807             'ExtUtils::Typemaps::Cmd'=> '3.23',
8808             'ExtUtils::Typemaps::InputMap'=> '3.23',
8809             'ExtUtils::Typemaps::OutputMap'=> '3.23',
8810             'ExtUtils::Typemaps::Type'=> '3.23',
8811             'ExtUtils::testlib'     => '6.76',
8812             'Fatal'                 => '2.21',
8813             'File::Copy'            => '2.28',
8814             'File::Find'            => '1.25',
8815             'File::Glob'            => '1.21',
8816             'FileCache'             => '1.09',
8817             'HTTP::Tiny'            => '0.035',
8818             'Hash::Util::FieldHash' => '1.13',
8819             'I18N::LangTags'        => '0.40',
8820             'IO'                    => '1.29',
8821             'IO::Socket'            => '1.37',
8822             'IPC::Open3'            => '1.16',
8823             'JSON::PP'              => '2.27202_01',
8824             'List::Util'            => '1.32',
8825             'List::Util::XS'        => '1.32',
8826             'Locale::Codes'         => '3.27',
8827             'Locale::Codes::Constants'=> '3.27',
8828             'Locale::Codes::Country'=> '3.27',
8829             'Locale::Codes::Country_Codes'=> '3.27',
8830             'Locale::Codes::Country_Retired'=> '3.27',
8831             'Locale::Codes::Currency'=> '3.27',
8832             'Locale::Codes::Currency_Codes'=> '3.27',
8833             'Locale::Codes::Currency_Retired'=> '3.27',
8834             'Locale::Codes::LangExt'=> '3.27',
8835             'Locale::Codes::LangExt_Codes'=> '3.27',
8836             'Locale::Codes::LangExt_Retired'=> '3.27',
8837             'Locale::Codes::LangFam'=> '3.27',
8838             'Locale::Codes::LangFam_Codes'=> '3.27',
8839             'Locale::Codes::LangFam_Retired'=> '3.27',
8840             'Locale::Codes::LangVar'=> '3.27',
8841             'Locale::Codes::LangVar_Codes'=> '3.27',
8842             'Locale::Codes::LangVar_Retired'=> '3.27',
8843             'Locale::Codes::Language'=> '3.27',
8844             'Locale::Codes::Language_Codes'=> '3.27',
8845             'Locale::Codes::Language_Retired'=> '3.27',
8846             'Locale::Codes::Script' => '3.27',
8847             'Locale::Codes::Script_Codes'=> '3.27',
8848             'Locale::Codes::Script_Retired'=> '3.27',
8849             'Locale::Country'       => '3.27',
8850             'Locale::Currency'      => '3.27',
8851             'Locale::Language'      => '3.27',
8852             'Locale::Script'        => '3.27',
8853             'Math::BigFloat'        => '1.9991',
8854             'Math::BigInt'          => '1.9993',
8855             'Math::BigInt::FastCalc'=> '0.31',
8856             'Module::CoreList'      => '2.99',
8857             'Module::CoreList::TieHashDelta'=> '2.99',
8858             'Module::CoreList::Utils'=> '2.99',
8859             'Module::Load::Conditional'=> '0.58',
8860             'Module::Metadata'      => '1.000018',
8861             'Opcode'                => '1.26',
8862             'POSIX'                 => '1.35',
8863             'Parse::CPAN::Meta'     => '1.4407',
8864             'Perl::OSType'          => '1.005',
8865             'Pod::Html'             => '1.21',
8866             'Scalar::Util'          => '1.32',
8867             'Socket'                => '2.012',
8868             'Storable'              => '2.47',
8869             'Term::ReadLine'        => '1.14',
8870             'Test::Builder'         => '0.98_06',
8871             'Test::Builder::Module' => '0.98_06',
8872             'Test::More'            => '0.98_06',
8873             'Test::Simple'          => '0.98_06',
8874             'Time::Piece'           => '1.23',
8875             'Time::Seconds'         => '1.23',
8876             'Unicode::Collate'      => '0.99',
8877             'Unicode::UCD'          => '0.54',
8878             'XS::APItest'           => '0.56',
8879             'XS::Typemap'           => '0.11',
8880             '_charnames'            => '1.39',
8881             'autodie'               => '2.21',
8882             'autodie::exception'    => '2.21',
8883             'autodie::exception::system'=> '2.21',
8884             'autodie::hints'        => '2.21',
8885             'autodie::skip'         => '2.21',
8886             'charnames'             => '1.39',
8887             'diagnostics'           => '1.33',
8888             'mro'                   => '1.14',
8889             'parent'                => '0.228',
8890             'perlfaq'               => '5.0150044',
8891             're'                    => '0.26',
8892             'version'               => '0.9904',
8893             'warnings'              => '1.19',
8894         },
8895         removed => {
8896         }
8897     },
8898     5.019005 => {
8899         delta_from => 5.019004,
8900         changed => {
8901             'App::Prove'            => '3.29',
8902             'App::Prove::State'     => '3.29',
8903             'App::Prove::State::Result'=> '3.29',
8904             'App::Prove::State::Result::Test'=> '3.29',
8905             'CPAN::Meta'            => '2.132830',
8906             'CPAN::Meta::Converter' => '2.132830',
8907             'CPAN::Meta::Feature'   => '2.132830',
8908             'CPAN::Meta::History'   => '2.132830',
8909             'CPAN::Meta::Prereqs'   => '2.132830',
8910             'CPAN::Meta::Requirements'=> '2.125',
8911             'CPAN::Meta::Spec'      => '2.132830',
8912             'CPAN::Meta::Validator' => '2.132830',
8913             'CPAN::Meta::YAML'      => '0.010',
8914             'Config'                => '5.019005',
8915             'Cwd'                   => '3.45',
8916             'ExtUtils::Command::MM' => '6.80',
8917             'ExtUtils::Install'     => '1.61',
8918             'ExtUtils::Liblist'     => '6.80',
8919             'ExtUtils::Liblist::Kid'=> '6.80',
8920             'ExtUtils::MM'          => '6.80',
8921             'ExtUtils::MM_AIX'      => '6.80',
8922             'ExtUtils::MM_Any'      => '6.80',
8923             'ExtUtils::MM_BeOS'     => '6.80',
8924             'ExtUtils::MM_Cygwin'   => '6.80',
8925             'ExtUtils::MM_DOS'      => '6.80',
8926             'ExtUtils::MM_Darwin'   => '6.80',
8927             'ExtUtils::MM_MacOS'    => '6.80',
8928             'ExtUtils::MM_NW5'      => '6.80',
8929             'ExtUtils::MM_OS2'      => '6.80',
8930             'ExtUtils::MM_QNX'      => '6.80',
8931             'ExtUtils::MM_UWIN'     => '6.80',
8932             'ExtUtils::MM_Unix'     => '6.80',
8933             'ExtUtils::MM_VMS'      => '6.80',
8934             'ExtUtils::MM_VOS'      => '6.80',
8935             'ExtUtils::MM_Win32'    => '6.80',
8936             'ExtUtils::MM_Win95'    => '6.80',
8937             'ExtUtils::MY'          => '6.80',
8938             'ExtUtils::MakeMaker'   => '6.80',
8939             'ExtUtils::MakeMaker::Config'=> '6.80',
8940             'ExtUtils::Mkbootstrap' => '6.80',
8941             'ExtUtils::Mksymlists'  => '6.80',
8942             'ExtUtils::testlib'     => '6.80',
8943             'Fatal'                 => '2.22',
8944             'File::Fetch'           => '0.44',
8945             'File::Glob'            => '1.22',
8946             'File::Spec'            => '3.45',
8947             'File::Spec::Cygwin'    => '3.45',
8948             'File::Spec::Epoc'      => '3.45',
8949             'File::Spec::Functions' => '3.45',
8950             'File::Spec::Mac'       => '3.45',
8951             'File::Spec::OS2'       => '3.45',
8952             'File::Spec::Unix'      => '3.45',
8953             'File::Spec::VMS'       => '3.45',
8954             'File::Spec::Win32'     => '3.45',
8955             'File::Temp'            => '0.2304',
8956             'Getopt::Long'          => '2.42',
8957             'HTTP::Tiny'            => '0.036',
8958             'IPC::Cmd'              => '0.84_01',
8959             'JSON::PP'              => '2.27203',
8960             'List::Util'            => '1.35',
8961             'List::Util::XS'        => '1.35',
8962             'Module::CoreList'      => '3.00',
8963             'Module::CoreList::TieHashDelta'=> '3.00',
8964             'Module::CoreList::Utils'=> '3.00',
8965             'Module::Metadata'      => '1.000019',
8966             'Parse::CPAN::Meta'     => '1.4409',
8967             'Perl::OSType'          => '1.006',
8968             'PerlIO::scalar'        => '0.17',
8969             'Pod::Man'              => '2.28',
8970             'Pod::Text'             => '3.18',
8971             'Pod::Text::Termcap'    => '2.08',
8972             'Scalar::Util'          => '1.35',
8973             'TAP::Base'             => '3.29',
8974             'TAP::Formatter::Base'  => '3.29',
8975             'TAP::Formatter::Color' => '3.29',
8976             'TAP::Formatter::Console'=> '3.29',
8977             'TAP::Formatter::Console::ParallelSession'=> '3.29',
8978             'TAP::Formatter::Console::Session'=> '3.29',
8979             'TAP::Formatter::File'  => '3.29',
8980             'TAP::Formatter::File::Session'=> '3.29',
8981             'TAP::Formatter::Session'=> '3.29',
8982             'TAP::Harness'          => '3.29',
8983             'TAP::Harness::Env'     => '3.29',
8984             'TAP::Object'           => '3.29',
8985             'TAP::Parser'           => '3.29',
8986             'TAP::Parser::Aggregator'=> '3.29',
8987             'TAP::Parser::Grammar'  => '3.29',
8988             'TAP::Parser::Iterator' => '3.29',
8989             'TAP::Parser::Iterator::Array'=> '3.29',
8990             'TAP::Parser::Iterator::Process'=> '3.29',
8991             'TAP::Parser::Iterator::Stream'=> '3.29',
8992             'TAP::Parser::IteratorFactory'=> '3.29',
8993             'TAP::Parser::Multiplexer'=> '3.29',
8994             'TAP::Parser::Result'   => '3.29',
8995             'TAP::Parser::Result::Bailout'=> '3.29',
8996             'TAP::Parser::Result::Comment'=> '3.29',
8997             'TAP::Parser::Result::Plan'=> '3.29',
8998             'TAP::Parser::Result::Pragma'=> '3.29',
8999             'TAP::Parser::Result::Test'=> '3.29',
9000             'TAP::Parser::Result::Unknown'=> '3.29',
9001             'TAP::Parser::Result::Version'=> '3.29',
9002             'TAP::Parser::Result::YAML'=> '3.29',
9003             'TAP::Parser::ResultFactory'=> '3.29',
9004             'TAP::Parser::Scheduler'=> '3.29',
9005             'TAP::Parser::Scheduler::Job'=> '3.29',
9006             'TAP::Parser::Scheduler::Spinner'=> '3.29',
9007             'TAP::Parser::Source'   => '3.29',
9008             'TAP::Parser::SourceHandler'=> '3.29',
9009             'TAP::Parser::SourceHandler::Executable'=> '3.29',
9010             'TAP::Parser::SourceHandler::File'=> '3.29',
9011             'TAP::Parser::SourceHandler::Handle'=> '3.29',
9012             'TAP::Parser::SourceHandler::Perl'=> '3.29',
9013             'TAP::Parser::SourceHandler::RawTAP'=> '3.29',
9014             'TAP::Parser::YAMLish::Reader'=> '3.29',
9015             'TAP::Parser::YAMLish::Writer'=> '3.29',
9016             'Test::Builder'         => '0.99',
9017             'Test::Builder::Module' => '0.99',
9018             'Test::Builder::Tester' => '1.23_002',
9019             'Test::Builder::Tester::Color'=> '1.23_002',
9020             'Test::Harness'         => '3.29',
9021             'Test::More'            => '0.99',
9022             'Test::Simple'          => '0.99',
9023             'Unicode'               => '6.3.0',
9024             'Unicode::Normalize'    => '1.17',
9025             'Unicode::UCD'          => '0.55',
9026             'attributes'            => '0.22',
9027             'autodie'               => '2.22',
9028             'autodie::exception'    => '2.22',
9029             'autodie::exception::system'=> '2.22',
9030             'autodie::hints'        => '2.22',
9031             'autodie::skip'         => '2.22',
9032             'feature'               => '1.34',
9033             'threads'               => '1.89',
9034             'warnings'              => '1.20',
9035         },
9036         removed => {
9037             'TAP::Parser::Utils'    => 1,
9038         }
9039     },
9040     5.019006 => {
9041         delta_from => 5.019005,
9042         changed => {
9043             'App::Prove'            => '3.30',
9044             'App::Prove::State'     => '3.30',
9045             'App::Prove::State::Result'=> '3.30',
9046             'App::Prove::State::Result::Test'=> '3.30',
9047             'Archive::Tar'          => '1.96',
9048             'Archive::Tar::Constant'=> '1.96',
9049             'Archive::Tar::File'    => '1.96',
9050             'AutoLoader'            => '5.74',
9051             'B'                     => '1.47',
9052             'B::Concise'            => '0.991',
9053             'B::Debug'              => '1.19',
9054             'B::Deparse'            => '1.24',
9055             'Benchmark'             => '1.18',
9056             'Compress::Raw::Bzip2'  => '2.063',
9057             'Compress::Raw::Zlib'   => '2.063',
9058             'Compress::Zlib'        => '2.063',
9059             'Config'                => '5.019006',
9060             'DB_File'               => '1.831',
9061             'Devel::Peek'           => '1.15',
9062             'DynaLoader'            => '1.21',
9063             'Errno'                 => '1.20_01',
9064             'ExtUtils::Command::MM' => '6.82',
9065             'ExtUtils::Liblist'     => '6.82',
9066             'ExtUtils::Liblist::Kid'=> '6.82',
9067             'ExtUtils::MM'          => '6.82',
9068             'ExtUtils::MM_AIX'      => '6.82',
9069             'ExtUtils::MM_Any'      => '6.82',
9070             'ExtUtils::MM_BeOS'     => '6.82',
9071             'ExtUtils::MM_Cygwin'   => '6.82',
9072             'ExtUtils::MM_DOS'      => '6.82',
9073             'ExtUtils::MM_Darwin'   => '6.82',
9074             'ExtUtils::MM_MacOS'    => '6.82',
9075             'ExtUtils::MM_NW5'      => '6.82',
9076             'ExtUtils::MM_OS2'      => '6.82',
9077             'ExtUtils::MM_QNX'      => '6.82',
9078             'ExtUtils::MM_UWIN'     => '6.82',
9079             'ExtUtils::MM_Unix'     => '6.82',
9080             'ExtUtils::MM_VMS'      => '6.82',
9081             'ExtUtils::MM_VOS'      => '6.82',
9082             'ExtUtils::MM_Win32'    => '6.82',
9083             'ExtUtils::MM_Win95'    => '6.82',
9084             'ExtUtils::MY'          => '6.82',
9085             'ExtUtils::MakeMaker'   => '6.82',
9086             'ExtUtils::MakeMaker::Config'=> '6.82',
9087             'ExtUtils::Mkbootstrap' => '6.82',
9088             'ExtUtils::Mksymlists'  => '6.82',
9089             'ExtUtils::testlib'     => '6.82',
9090             'File::DosGlob'         => '1.12',
9091             'File::Find'            => '1.26',
9092             'File::Glob'            => '1.23',
9093             'HTTP::Tiny'            => '0.038',
9094             'IO'                    => '1.30',
9095             'IO::Compress::Adapter::Bzip2'=> '2.063',
9096             'IO::Compress::Adapter::Deflate'=> '2.063',
9097             'IO::Compress::Adapter::Identity'=> '2.063',
9098             'IO::Compress::Base'    => '2.063',
9099             'IO::Compress::Base::Common'=> '2.063',
9100             'IO::Compress::Bzip2'   => '2.063',
9101             'IO::Compress::Deflate' => '2.063',
9102             'IO::Compress::Gzip'    => '2.063',
9103             'IO::Compress::Gzip::Constants'=> '2.063',
9104             'IO::Compress::RawDeflate'=> '2.063',
9105             'IO::Compress::Zip'     => '2.063',
9106             'IO::Compress::Zip::Constants'=> '2.063',
9107             'IO::Compress::Zlib::Constants'=> '2.063',
9108             'IO::Compress::Zlib::Extra'=> '2.063',
9109             'IO::Select'            => '1.22',
9110             'IO::Uncompress::Adapter::Bunzip2'=> '2.063',
9111             'IO::Uncompress::Adapter::Identity'=> '2.063',
9112             'IO::Uncompress::Adapter::Inflate'=> '2.063',
9113             'IO::Uncompress::AnyInflate'=> '2.063',
9114             'IO::Uncompress::AnyUncompress'=> '2.063',
9115             'IO::Uncompress::Base'  => '2.063',
9116             'IO::Uncompress::Bunzip2'=> '2.063',
9117             'IO::Uncompress::Gunzip'=> '2.063',
9118             'IO::Uncompress::Inflate'=> '2.063',
9119             'IO::Uncompress::RawInflate'=> '2.063',
9120             'IO::Uncompress::Unzip' => '2.063',
9121             'IPC::Cmd'              => '0.90',
9122             'Locale::Maketext'      => '1.25',
9123             'Module::Build'         => '0.4202',
9124             'Module::Build::Base'   => '0.4202',
9125             'Module::Build::Compat' => '0.4202',
9126             'Module::Build::Config' => '0.4202',
9127             'Module::Build::Cookbook'=> '0.4202',
9128             'Module::Build::Dumper' => '0.4202',
9129             'Module::Build::ModuleInfo'=> '0.4202',
9130             'Module::Build::Notes'  => '0.4202',
9131             'Module::Build::PPMMaker'=> '0.4202',
9132             'Module::Build::Platform::Default'=> '0.4202',
9133             'Module::Build::Platform::MacOS'=> '0.4202',
9134             'Module::Build::Platform::Unix'=> '0.4202',
9135             'Module::Build::Platform::VMS'=> '0.4202',
9136             'Module::Build::Platform::VOS'=> '0.4202',
9137             'Module::Build::Platform::Windows'=> '0.4202',
9138             'Module::Build::Platform::aix'=> '0.4202',
9139             'Module::Build::Platform::cygwin'=> '0.4202',
9140             'Module::Build::Platform::darwin'=> '0.4202',
9141             'Module::Build::Platform::os2'=> '0.4202',
9142             'Module::Build::PodParser'=> '0.4202',
9143             'Module::CoreList'      => '3.01',
9144             'Module::CoreList::TieHashDelta'=> '3.01',
9145             'Module::CoreList::Utils'=> '3.01',
9146             'Opcode'                => '1.27',
9147             'POSIX'                 => '1.36',
9148             'Package::Constants'    => '0.04',
9149             'PerlIO::scalar'        => '0.18',
9150             'PerlIO::via'           => '0.13',
9151             'SDBM_File'             => '1.10',
9152             'Socket'                => '2.013',
9153             'TAP::Base'             => '3.30',
9154             'TAP::Formatter::Base'  => '3.30',
9155             'TAP::Formatter::Color' => '3.30',
9156             'TAP::Formatter::Console'=> '3.30',
9157             'TAP::Formatter::Console::ParallelSession'=> '3.30',
9158             'TAP::Formatter::Console::Session'=> '3.30',
9159             'TAP::Formatter::File'  => '3.30',
9160             'TAP::Formatter::File::Session'=> '3.30',
9161             'TAP::Formatter::Session'=> '3.30',
9162             'TAP::Harness'          => '3.30',
9163             'TAP::Harness::Env'     => '3.30',
9164             'TAP::Object'           => '3.30',
9165             'TAP::Parser'           => '3.30',
9166             'TAP::Parser::Aggregator'=> '3.30',
9167             'TAP::Parser::Grammar'  => '3.30',
9168             'TAP::Parser::Iterator' => '3.30',
9169             'TAP::Parser::Iterator::Array'=> '3.30',
9170             'TAP::Parser::Iterator::Process'=> '3.30',
9171             'TAP::Parser::Iterator::Stream'=> '3.30',
9172             'TAP::Parser::IteratorFactory'=> '3.30',
9173             'TAP::Parser::Multiplexer'=> '3.30',
9174             'TAP::Parser::Result'   => '3.30',
9175             'TAP::Parser::Result::Bailout'=> '3.30',
9176             'TAP::Parser::Result::Comment'=> '3.30',
9177             'TAP::Parser::Result::Plan'=> '3.30',
9178             'TAP::Parser::Result::Pragma'=> '3.30',
9179             'TAP::Parser::Result::Test'=> '3.30',
9180             'TAP::Parser::Result::Unknown'=> '3.30',
9181             'TAP::Parser::Result::Version'=> '3.30',
9182             'TAP::Parser::Result::YAML'=> '3.30',
9183             'TAP::Parser::ResultFactory'=> '3.30',
9184             'TAP::Parser::Scheduler'=> '3.30',
9185             'TAP::Parser::Scheduler::Job'=> '3.30',
9186             'TAP::Parser::Scheduler::Spinner'=> '3.30',
9187             'TAP::Parser::Source'   => '3.30',
9188             'TAP::Parser::SourceHandler'=> '3.30',
9189             'TAP::Parser::SourceHandler::Executable'=> '3.30',
9190             'TAP::Parser::SourceHandler::File'=> '3.30',
9191             'TAP::Parser::SourceHandler::Handle'=> '3.30',
9192             'TAP::Parser::SourceHandler::Perl'=> '3.30',
9193             'TAP::Parser::SourceHandler::RawTAP'=> '3.30',
9194             'TAP::Parser::YAMLish::Reader'=> '3.30',
9195             'TAP::Parser::YAMLish::Writer'=> '3.30',
9196             'Term::Cap'             => '1.15',
9197             'Test::Builder'         => '1.001002',
9198             'Test::Builder::Module' => '1.001002',
9199             'Test::Harness'         => '3.30',
9200             'Test::More'            => '1.001002',
9201             'Test::Simple'          => '1.001002',
9202             'Tie::StdHandle'        => '4.4',
9203             'Unicode::Collate'      => '1.02',
9204             'Unicode::Collate::CJK::Korean'=> '1.02',
9205             'Unicode::Collate::Locale'=> '1.02',
9206             'XS::APItest'           => '0.57',
9207             'XS::Typemap'           => '0.12',
9208             'arybase'               => '0.07',
9209             'bignum'                => '0.37',
9210             'constant'              => '1.29',
9211             'fields'                => '2.17',
9212             'inc::latest'           => '0.4202',
9213             'threads'               => '1.90',
9214             'threads::shared'       => '1.45',
9215         },
9216         removed => {
9217         }
9218     },
9219     5.019007 => {
9220         delta_from => 5.019006,
9221         changed => {
9222             'CGI'                   => '3.64',
9223             'CGI::Apache'           => '1.02',
9224             'CGI::Carp'             => '3.64',
9225             'CGI::Cookie'           => '1.31',
9226             'CGI::Fast'             => '1.10',
9227             'CGI::Pretty'           => '3.64',
9228             'CGI::Push'             => '1.06',
9229             'CGI::Switch'           => '1.02',
9230             'CGI::Util'             => '3.64',
9231             'CPAN::Meta'            => '2.133380',
9232             'CPAN::Meta::Converter' => '2.133380',
9233             'CPAN::Meta::Feature'   => '2.133380',
9234             'CPAN::Meta::History'   => '2.133380',
9235             'CPAN::Meta::Prereqs'   => '2.133380',
9236             'CPAN::Meta::Spec'      => '2.133380',
9237             'CPAN::Meta::Validator' => '2.133380',
9238             'Config'                => '5.019007',
9239             'Data::Dumper'          => '2.150',
9240             'DynaLoader'            => '1.22',
9241             'ExtUtils::Command::MM' => '6.84',
9242             'ExtUtils::Liblist'     => '6.84',
9243             'ExtUtils::Liblist::Kid'=> '6.84',
9244             'ExtUtils::MM'          => '6.84',
9245             'ExtUtils::MM_AIX'      => '6.84',
9246             'ExtUtils::MM_Any'      => '6.84',
9247             'ExtUtils::MM_BeOS'     => '6.84',
9248             'ExtUtils::MM_Cygwin'   => '6.84',
9249             'ExtUtils::MM_DOS'      => '6.84',
9250             'ExtUtils::MM_Darwin'   => '6.84',
9251             'ExtUtils::MM_MacOS'    => '6.84',
9252             'ExtUtils::MM_NW5'      => '6.84',
9253             'ExtUtils::MM_OS2'      => '6.84',
9254             'ExtUtils::MM_QNX'      => '6.84',
9255             'ExtUtils::MM_UWIN'     => '6.84',
9256             'ExtUtils::MM_Unix'     => '6.84',
9257             'ExtUtils::MM_VMS'      => '6.84',
9258             'ExtUtils::MM_VOS'      => '6.84',
9259             'ExtUtils::MM_Win32'    => '6.84',
9260             'ExtUtils::MM_Win95'    => '6.84',
9261             'ExtUtils::MY'          => '6.84',
9262             'ExtUtils::MakeMaker'   => '6.84',
9263             'ExtUtils::MakeMaker::Config'=> '6.84',
9264             'ExtUtils::Mkbootstrap' => '6.84',
9265             'ExtUtils::Mksymlists'  => '6.84',
9266             'ExtUtils::testlib'     => '6.84',
9267             'File::Fetch'           => '0.46',
9268             'HTTP::Tiny'            => '0.039',
9269             'Locale::Codes'         => '3.28',
9270             'Locale::Codes::Constants'=> '3.28',
9271             'Locale::Codes::Country'=> '3.28',
9272             'Locale::Codes::Country_Codes'=> '3.28',
9273             'Locale::Codes::Country_Retired'=> '3.28',
9274             'Locale::Codes::Currency'=> '3.28',
9275             'Locale::Codes::Currency_Codes'=> '3.28',
9276             'Locale::Codes::Currency_Retired'=> '3.28',
9277             'Locale::Codes::LangExt'=> '3.28',
9278             'Locale::Codes::LangExt_Codes'=> '3.28',
9279             'Locale::Codes::LangExt_Retired'=> '3.28',
9280             'Locale::Codes::LangFam'=> '3.28',
9281             'Locale::Codes::LangFam_Codes'=> '3.28',
9282             'Locale::Codes::LangFam_Retired'=> '3.28',
9283             'Locale::Codes::LangVar'=> '3.28',
9284             'Locale::Codes::LangVar_Codes'=> '3.28',
9285             'Locale::Codes::LangVar_Retired'=> '3.28',
9286             'Locale::Codes::Language'=> '3.28',
9287             'Locale::Codes::Language_Codes'=> '3.28',
9288             'Locale::Codes::Language_Retired'=> '3.28',
9289             'Locale::Codes::Script' => '3.28',
9290             'Locale::Codes::Script_Codes'=> '3.28',
9291             'Locale::Codes::Script_Retired'=> '3.28',
9292             'Locale::Country'       => '3.28',
9293             'Locale::Currency'      => '3.28',
9294             'Locale::Language'      => '3.28',
9295             'Locale::Script'        => '3.28',
9296             'Module::Build'         => '0.4203',
9297             'Module::Build::Base'   => '0.4203',
9298             'Module::Build::Compat' => '0.4203',
9299             'Module::Build::Config' => '0.4203',
9300             'Module::Build::Cookbook'=> '0.4203',
9301             'Module::Build::Dumper' => '0.4203',
9302             'Module::Build::ModuleInfo'=> '0.4203',
9303             'Module::Build::Notes'  => '0.4203',
9304             'Module::Build::PPMMaker'=> '0.4203',
9305             'Module::Build::Platform::Default'=> '0.4203',
9306             'Module::Build::Platform::MacOS'=> '0.4203',
9307             'Module::Build::Platform::Unix'=> '0.4203',
9308             'Module::Build::Platform::VMS'=> '0.4203',
9309             'Module::Build::Platform::VOS'=> '0.4203',
9310             'Module::Build::Platform::Windows'=> '0.4203',
9311             'Module::Build::Platform::aix'=> '0.4203',
9312             'Module::Build::Platform::cygwin'=> '0.4203',
9313             'Module::Build::Platform::darwin'=> '0.4203',
9314             'Module::Build::Platform::os2'=> '0.4203',
9315             'Module::Build::PodParser'=> '0.4203',
9316             'Module::CoreList'      => '3.02',
9317             'Module::CoreList::TieHashDelta'=> '3.02',
9318             'Module::CoreList::Utils'=> '3.02',
9319             'POSIX'                 => '1.37',
9320             'PerlIO::encoding'      => '0.17',
9321             'PerlIO::via'           => '0.14',
9322             'SDBM_File'             => '1.11',
9323             'Storable'              => '2.48',
9324             'Time::Piece'           => '1.24',
9325             'Time::Seconds'         => '1.24',
9326             'Unicode::Collate'      => '1.04',
9327             'Win32'                 => '0.48',
9328             'XS::APItest'           => '0.58',
9329             'base'                  => '2.20',
9330             'constant'              => '1.30',
9331             'inc::latest'           => '0.4203',
9332             'threads'               => '1.91',
9333         },
9334         removed => {
9335         }
9336     },
9337     5.019008 => {
9338         delta_from => 5.019007,
9339         changed => {
9340             'Config'                => '5.019008',
9341             'DynaLoader'            => '1.24',
9342             'Encode'                => '2.57',
9343             'Errno'                 => '1.20_02',
9344             'ExtUtils::CBuilder'    => '0.280213',
9345             'ExtUtils::CBuilder::Base'=> '0.280213',
9346             'ExtUtils::CBuilder::Platform::Unix'=> '0.280213',
9347             'ExtUtils::CBuilder::Platform::VMS'=> '0.280213',
9348             'ExtUtils::CBuilder::Platform::Windows'=> '0.280213',
9349             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280213',
9350             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280213',
9351             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280213',
9352             'ExtUtils::CBuilder::Platform::aix'=> '0.280213',
9353             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280213',
9354             'ExtUtils::CBuilder::Platform::darwin'=> '0.280213',
9355             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280213',
9356             'ExtUtils::CBuilder::Platform::os2'=> '0.280213',
9357             'ExtUtils::Command::MM' => '6.86',
9358             'ExtUtils::Liblist'     => '6.86',
9359             'ExtUtils::Liblist::Kid'=> '6.86',
9360             'ExtUtils::MM'          => '6.86',
9361             'ExtUtils::MM_AIX'      => '6.86',
9362             'ExtUtils::MM_Any'      => '6.86',
9363             'ExtUtils::MM_BeOS'     => '6.86',
9364             'ExtUtils::MM_Cygwin'   => '6.86',
9365             'ExtUtils::MM_DOS'      => '6.86',
9366             'ExtUtils::MM_Darwin'   => '6.86',
9367             'ExtUtils::MM_MacOS'    => '6.86',
9368             'ExtUtils::MM_NW5'      => '6.86',
9369             'ExtUtils::MM_OS2'      => '6.86',
9370             'ExtUtils::MM_QNX'      => '6.86',
9371             'ExtUtils::MM_UWIN'     => '6.86',
9372             'ExtUtils::MM_Unix'     => '6.86',
9373             'ExtUtils::MM_VMS'      => '6.86',
9374             'ExtUtils::MM_VOS'      => '6.86',
9375             'ExtUtils::MM_Win32'    => '6.86',
9376             'ExtUtils::MM_Win95'    => '6.86',
9377             'ExtUtils::MY'          => '6.86',
9378             'ExtUtils::MakeMaker'   => '6.86',
9379             'ExtUtils::MakeMaker::Config'=> '6.86',
9380             'ExtUtils::Mkbootstrap' => '6.86',
9381             'ExtUtils::Mksymlists'  => '6.86',
9382             'ExtUtils::testlib'     => '6.86',
9383             'File::Copy'            => '2.29',
9384             'Hash::Util::FieldHash' => '1.14',
9385             'IO::Socket::IP'        => '0.26',
9386             'IO::Socket::UNIX'      => '1.26',
9387             'List::Util'            => '1.36',
9388             'List::Util::XS'        => '1.36',
9389             'Module::Build'         => '0.4204',
9390             'Module::Build::Base'   => '0.4204',
9391             'Module::Build::Compat' => '0.4204',
9392             'Module::Build::Config' => '0.4204',
9393             'Module::Build::Cookbook'=> '0.4204',
9394             'Module::Build::Dumper' => '0.4204',
9395             'Module::Build::ModuleInfo'=> '0.4204',
9396             'Module::Build::Notes'  => '0.4204',
9397             'Module::Build::PPMMaker'=> '0.4204',
9398             'Module::Build::Platform::Default'=> '0.4204',
9399             'Module::Build::Platform::MacOS'=> '0.4204',
9400             'Module::Build::Platform::Unix'=> '0.4204',
9401             'Module::Build::Platform::VMS'=> '0.4204',
9402             'Module::Build::Platform::VOS'=> '0.4204',
9403             'Module::Build::Platform::Windows'=> '0.4204',
9404             'Module::Build::Platform::aix'=> '0.4204',
9405             'Module::Build::Platform::cygwin'=> '0.4204',
9406             'Module::Build::Platform::darwin'=> '0.4204',
9407             'Module::Build::Platform::os2'=> '0.4204',
9408             'Module::Build::PodParser'=> '0.4204',
9409             'Module::CoreList'      => '3.04',
9410             'Module::CoreList::TieHashDelta'=> '3.04',
9411             'Module::CoreList::Utils'=> '3.04',
9412             'Module::Load'          => '0.28',
9413             'Module::Load::Conditional'=> '0.60',
9414             'Net::Config'           => '1.13',
9415             'Net::FTP::A'           => '1.19',
9416             'POSIX'                 => '1.38_01',
9417             'Perl::OSType'          => '1.007',
9418             'PerlIO::encoding'      => '0.18',
9419             'Pod::Perldoc'          => '3.21',
9420             'Pod::Perldoc::BaseTo'  => '3.21',
9421             'Pod::Perldoc::GetOptsOO'=> '3.21',
9422             'Pod::Perldoc::ToANSI'  => '3.21',
9423             'Pod::Perldoc::ToChecker'=> '3.21',
9424             'Pod::Perldoc::ToMan'   => '3.21',
9425             'Pod::Perldoc::ToNroff' => '3.21',
9426             'Pod::Perldoc::ToPod'   => '3.21',
9427             'Pod::Perldoc::ToRtf'   => '3.21',
9428             'Pod::Perldoc::ToTerm'  => '3.21',
9429             'Pod::Perldoc::ToText'  => '3.21',
9430             'Pod::Perldoc::ToTk'    => '3.21',
9431             'Pod::Perldoc::ToXml'   => '3.21',
9432             'Scalar::Util'          => '1.36',
9433             'Time::Piece'           => '1.27',
9434             'Time::Seconds'         => '1.27',
9435             'Unicode::UCD'          => '0.57',
9436             'XS::APItest'           => '0.59',
9437             'XSLoader'              => '0.17',
9438             'base'                  => '2.21',
9439             'constant'              => '1.31',
9440             'inc::latest'           => '0.4204',
9441             'threads::shared'       => '1.46',
9442             'version'               => '0.9907',
9443             'version::regex'        => '0.9907',
9444             'version::vpp'          => '0.9907',
9445             'warnings'              => '1.21',
9446         },
9447         removed => {
9448         }
9449     },
9450     5.019009 => {
9451         delta_from => 5.019008,
9452         changed => {
9453             'B'                     => '1.48',
9454             'B::Concise'            => '0.992',
9455             'B::Deparse'            => '1.25',
9456             'CGI'                   => '3.65',
9457             'CPAN::Meta::YAML'      => '0.011',
9458             'Compress::Raw::Bzip2'  => '2.064',
9459             'Compress::Raw::Zlib'   => '2.065',
9460             'Compress::Zlib'        => '2.064',
9461             'Config'                => '5.019009',
9462             'Config::Perl::V'       => '0.20',
9463             'Cwd'                   => '3.47',
9464             'Devel::Peek'           => '1.16',
9465             'Digest::SHA'           => '5.87',
9466             'DynaLoader'            => '1.25',
9467             'English'               => '1.09',
9468             'ExtUtils::CBuilder'    => '0.280216',
9469             'ExtUtils::CBuilder::Base'=> '0.280216',
9470             'ExtUtils::CBuilder::Platform::Unix'=> '0.280216',
9471             'ExtUtils::CBuilder::Platform::VMS'=> '0.280216',
9472             'ExtUtils::CBuilder::Platform::Windows'=> '0.280216',
9473             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280216',
9474             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280216',
9475             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280216',
9476             'ExtUtils::CBuilder::Platform::aix'=> '0.280216',
9477             'ExtUtils::CBuilder::Platform::android'=> '0.280216',
9478             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280216',
9479             'ExtUtils::CBuilder::Platform::darwin'=> '0.280216',
9480             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280216',
9481             'ExtUtils::CBuilder::Platform::os2'=> '0.280216',
9482             'ExtUtils::Command::MM' => '6.88',
9483             'ExtUtils::Embed'       => '1.32',
9484             'ExtUtils::Install'     => '1.62',
9485             'ExtUtils::Installed'   => '1.999004',
9486             'ExtUtils::Liblist'     => '6.88',
9487             'ExtUtils::Liblist::Kid'=> '6.88',
9488             'ExtUtils::MM'          => '6.88',
9489             'ExtUtils::MM_AIX'      => '6.88',
9490             'ExtUtils::MM_Any'      => '6.88',
9491             'ExtUtils::MM_BeOS'     => '6.88',
9492             'ExtUtils::MM_Cygwin'   => '6.88',
9493             'ExtUtils::MM_DOS'      => '6.88',
9494             'ExtUtils::MM_Darwin'   => '6.88',
9495             'ExtUtils::MM_MacOS'    => '6.88',
9496             'ExtUtils::MM_NW5'      => '6.88',
9497             'ExtUtils::MM_OS2'      => '6.88',
9498             'ExtUtils::MM_QNX'      => '6.88',
9499             'ExtUtils::MM_UWIN'     => '6.88',
9500             'ExtUtils::MM_Unix'     => '6.88',
9501             'ExtUtils::MM_VMS'      => '6.88',
9502             'ExtUtils::MM_VOS'      => '6.88',
9503             'ExtUtils::MM_Win32'    => '6.88',
9504             'ExtUtils::MM_Win95'    => '6.88',
9505             'ExtUtils::MY'          => '6.88',
9506             'ExtUtils::MakeMaker'   => '6.88',
9507             'ExtUtils::MakeMaker::Config'=> '6.88',
9508             'ExtUtils::Mkbootstrap' => '6.88',
9509             'ExtUtils::Mksymlists'  => '6.88',
9510             'ExtUtils::Packlist'    => '1.47',
9511             'ExtUtils::testlib'     => '6.88',
9512             'Fatal'                 => '2.23',
9513             'File::Fetch'           => '0.48',
9514             'File::Spec'            => '3.47',
9515             'File::Spec::Cygwin'    => '3.47',
9516             'File::Spec::Epoc'      => '3.47',
9517             'File::Spec::Functions' => '3.47',
9518             'File::Spec::Mac'       => '3.47',
9519             'File::Spec::OS2'       => '3.47',
9520             'File::Spec::Unix'      => '3.47',
9521             'File::Spec::VMS'       => '3.47',
9522             'File::Spec::Win32'     => '3.47',
9523             'HTTP::Tiny'            => '0.042',
9524             'IO::Compress::Adapter::Bzip2'=> '2.064',
9525             'IO::Compress::Adapter::Deflate'=> '2.064',
9526             'IO::Compress::Adapter::Identity'=> '2.064',
9527             'IO::Compress::Base'    => '2.064',
9528             'IO::Compress::Base::Common'=> '2.064',
9529             'IO::Compress::Bzip2'   => '2.064',
9530             'IO::Compress::Deflate' => '2.064',
9531             'IO::Compress::Gzip'    => '2.064',
9532             'IO::Compress::Gzip::Constants'=> '2.064',
9533             'IO::Compress::RawDeflate'=> '2.064',
9534             'IO::Compress::Zip'     => '2.064',
9535             'IO::Compress::Zip::Constants'=> '2.064',
9536             'IO::Compress::Zlib::Constants'=> '2.064',
9537             'IO::Compress::Zlib::Extra'=> '2.064',
9538             'IO::Socket::INET'      => '1.35',
9539             'IO::Socket::IP'        => '0.28',
9540             'IO::Uncompress::Adapter::Bunzip2'=> '2.064',
9541             'IO::Uncompress::Adapter::Identity'=> '2.064',
9542             'IO::Uncompress::Adapter::Inflate'=> '2.064',
9543             'IO::Uncompress::AnyInflate'=> '2.064',
9544             'IO::Uncompress::AnyUncompress'=> '2.064',
9545             'IO::Uncompress::Base'  => '2.064',
9546             'IO::Uncompress::Bunzip2'=> '2.064',
9547             'IO::Uncompress::Gunzip'=> '2.064',
9548             'IO::Uncompress::Inflate'=> '2.064',
9549             'IO::Uncompress::RawInflate'=> '2.064',
9550             'IO::Uncompress::Unzip' => '2.064',
9551             'IPC::Cmd'              => '0.92',
9552             'List::Util'            => '1.38',
9553             'List::Util::XS'        => '1.38',
9554             'Locale::Codes'         => '3.29',
9555             'Locale::Codes::Constants'=> '3.29',
9556             'Locale::Codes::Country'=> '3.29',
9557             'Locale::Codes::Country_Codes'=> '3.29',
9558             'Locale::Codes::Country_Retired'=> '3.29',
9559             'Locale::Codes::Currency'=> '3.29',
9560             'Locale::Codes::Currency_Codes'=> '3.29',
9561             'Locale::Codes::Currency_Retired'=> '3.29',
9562             'Locale::Codes::LangExt'=> '3.29',
9563             'Locale::Codes::LangExt_Codes'=> '3.29',
9564             'Locale::Codes::LangExt_Retired'=> '3.29',
9565             'Locale::Codes::LangFam'=> '3.29',
9566             'Locale::Codes::LangFam_Codes'=> '3.29',
9567             'Locale::Codes::LangFam_Retired'=> '3.29',
9568             'Locale::Codes::LangVar'=> '3.29',
9569             'Locale::Codes::LangVar_Codes'=> '3.29',
9570             'Locale::Codes::LangVar_Retired'=> '3.29',
9571             'Locale::Codes::Language'=> '3.29',
9572             'Locale::Codes::Language_Codes'=> '3.29',
9573             'Locale::Codes::Language_Retired'=> '3.29',
9574             'Locale::Codes::Script' => '3.29',
9575             'Locale::Codes::Script_Codes'=> '3.29',
9576             'Locale::Codes::Script_Retired'=> '3.29',
9577             'Locale::Country'       => '3.29',
9578             'Locale::Currency'      => '3.29',
9579             'Locale::Language'      => '3.29',
9580             'Locale::Script'        => '3.29',
9581             'Module::Build'         => '0.4205',
9582             'Module::Build::Base'   => '0.4205',
9583             'Module::Build::Compat' => '0.4205',
9584             'Module::Build::Config' => '0.4205',
9585             'Module::Build::Cookbook'=> '0.4205',
9586             'Module::Build::Dumper' => '0.4205',
9587             'Module::Build::ModuleInfo'=> '0.4205',
9588             'Module::Build::Notes'  => '0.4205',
9589             'Module::Build::PPMMaker'=> '0.4205',
9590             'Module::Build::Platform::Default'=> '0.4205',
9591             'Module::Build::Platform::MacOS'=> '0.4205',
9592             'Module::Build::Platform::Unix'=> '0.4205',
9593             'Module::Build::Platform::VMS'=> '0.4205',
9594             'Module::Build::Platform::VOS'=> '0.4205',
9595             'Module::Build::Platform::Windows'=> '0.4205',
9596             'Module::Build::Platform::aix'=> '0.4205',
9597             'Module::Build::Platform::cygwin'=> '0.4205',
9598             'Module::Build::Platform::darwin'=> '0.4205',
9599             'Module::Build::Platform::os2'=> '0.4205',
9600             'Module::Build::PodParser'=> '0.4205',
9601             'Module::CoreList'      => '3.06',
9602             'Module::CoreList::TieHashDelta'=> '3.06',
9603             'Module::CoreList::Utils'=> '3.06',
9604             'Module::Load'          => '0.30',
9605             'Module::Load::Conditional'=> '0.62',
9606             'Net::Domain'           => '2.23',
9607             'Net::FTP'              => '2.79',
9608             'Net::NNTP'             => '2.26',
9609             'Net::POP3'             => '2.31',
9610             'Net::Ping'             => '2.43',
9611             'Net::SMTP'             => '2.33',
9612             'POSIX'                 => '1.38_02',
9613             'Parse::CPAN::Meta'     => '1.4413',
9614             'Pod::Escapes'          => '1.06',
9615             'Pod::Find'             => '1.62',
9616             'Pod::InputObjects'     => '1.62',
9617             'Pod::ParseUtils'       => '1.62',
9618             'Pod::Parser'           => '1.62',
9619             'Pod::Select'           => '1.62',
9620             'Scalar::Util'          => '1.38',
9621             'autodie'               => '2.23',
9622             'autodie::exception'    => '2.23',
9623             'autodie::exception::system'=> '2.23',
9624             'autodie::hints'        => '2.23',
9625             'autodie::skip'         => '2.23',
9626             'diagnostics'           => '1.34',
9627             'feature'               => '1.35',
9628             'inc::latest'           => '0.4205',
9629             'locale'                => '1.03',
9630             'mro'                   => '1.15',
9631             'threads'               => '1.92',
9632             'version'               => '0.9908',
9633             'version::regex'        => '0.9908',
9634             'version::vpp'          => '0.9908',
9635             'warnings'              => '1.22',
9636         },
9637         removed => {
9638         }
9639     },
9640     5.01901 => {
9641         delta_from => 5.019009,
9642         changed => {
9643             'App::Cpan'             => '1.62',
9644             'Attribute::Handlers'   => '0.96',
9645             'B::Deparse'            => '1.26',
9646             'CPAN'                  => '2.04',
9647             'CPAN::Bundle'          => '5.5001',
9648             'CPAN::Complete'        => '5.5001',
9649             'CPAN::Distribution'    => '2.01',
9650             'CPAN::Distroprefs'     => '6.0001',
9651             'CPAN::FirstTime'       => '5.5305',
9652             'CPAN::Meta'            => '2.140640',
9653             'CPAN::Meta::Converter' => '2.140640',
9654             'CPAN::Meta::Feature'   => '2.140640',
9655             'CPAN::Meta::History'   => '2.140640',
9656             'CPAN::Meta::Prereqs'   => '2.140640',
9657             'CPAN::Meta::Spec'      => '2.140640',
9658             'CPAN::Meta::Validator' => '2.140640',
9659             'CPAN::Meta::YAML'      => '0.012',
9660             'CPAN::Queue'           => '5.5002',
9661             'CPAN::Shell'           => '5.5003',
9662             'CPAN::Tarzip'          => '5.5012',
9663             'CPAN::Version'         => '5.5003',
9664             'Carp'                  => '1.33',
9665             'Carp::Heavy'           => '1.33',
9666             'Config'                => '5.019010',
9667             'Data::Dumper'          => '2.151',
9668             'Devel::PPPort'         => '3.22',
9669             'Digest::SHA'           => '5.88',
9670             'ExtUtils::Command::MM' => '6.92',
9671             'ExtUtils::Install'     => '1.63',
9672             'ExtUtils::Installed'   => '1.999005',
9673             'ExtUtils::Liblist'     => '6.92',
9674             'ExtUtils::Liblist::Kid'=> '6.92',
9675             'ExtUtils::MM'          => '6.92',
9676             'ExtUtils::MM_AIX'      => '6.92',
9677             'ExtUtils::MM_Any'      => '6.92',
9678             'ExtUtils::MM_BeOS'     => '6.92',
9679             'ExtUtils::MM_Cygwin'   => '6.92',
9680             'ExtUtils::MM_DOS'      => '6.92',
9681             'ExtUtils::MM_Darwin'   => '6.92',
9682             'ExtUtils::MM_MacOS'    => '6.92',
9683             'ExtUtils::MM_NW5'      => '6.92',
9684             'ExtUtils::MM_OS2'      => '6.92',
9685             'ExtUtils::MM_QNX'      => '6.92',
9686             'ExtUtils::MM_UWIN'     => '6.92',
9687             'ExtUtils::MM_Unix'     => '6.92',
9688             'ExtUtils::MM_VMS'      => '6.92',
9689             'ExtUtils::MM_VOS'      => '6.92',
9690             'ExtUtils::MM_Win32'    => '6.92',
9691             'ExtUtils::MM_Win95'    => '6.92',
9692             'ExtUtils::MY'          => '6.92',
9693             'ExtUtils::MakeMaker'   => '6.92',
9694             'ExtUtils::MakeMaker::Config'=> '6.92',
9695             'ExtUtils::Mkbootstrap' => '6.92',
9696             'ExtUtils::Mksymlists'  => '6.92',
9697             'ExtUtils::Packlist'    => '1.48',
9698             'ExtUtils::ParseXS'     => '3.24',
9699             'ExtUtils::ParseXS::Constants'=> '3.24',
9700             'ExtUtils::ParseXS::CountLines'=> '3.24',
9701             'ExtUtils::ParseXS::Eval'=> '3.24',
9702             'ExtUtils::ParseXS::Utilities'=> '3.24',
9703             'ExtUtils::Typemaps'    => '3.24',
9704             'ExtUtils::Typemaps::Cmd'=> '3.24',
9705             'ExtUtils::Typemaps::InputMap'=> '3.24',
9706             'ExtUtils::Typemaps::OutputMap'=> '3.24',
9707             'ExtUtils::Typemaps::Type'=> '3.24',
9708             'ExtUtils::testlib'     => '6.92',
9709             'File::Find'            => '1.27',
9710             'Filter::Simple'        => '0.91',
9711             'HTTP::Tiny'            => '0.043',
9712             'Hash::Util::FieldHash' => '1.15',
9713             'IO'                    => '1.31',
9714             'IO::Socket::IP'        => '0.29',
9715             'Locale::Codes'         => '3.30',
9716             'Locale::Codes::Constants'=> '3.30',
9717             'Locale::Codes::Country'=> '3.30',
9718             'Locale::Codes::Country_Codes'=> '3.30',
9719             'Locale::Codes::Country_Retired'=> '3.30',
9720             'Locale::Codes::Currency'=> '3.30',
9721             'Locale::Codes::Currency_Codes'=> '3.30',
9722             'Locale::Codes::Currency_Retired'=> '3.30',
9723             'Locale::Codes::LangExt'=> '3.30',
9724             'Locale::Codes::LangExt_Codes'=> '3.30',
9725             'Locale::Codes::LangExt_Retired'=> '3.30',
9726             'Locale::Codes::LangFam'=> '3.30',
9727             'Locale::Codes::LangFam_Codes'=> '3.30',
9728             'Locale::Codes::LangFam_Retired'=> '3.30',
9729             'Locale::Codes::LangVar'=> '3.30',
9730             'Locale::Codes::LangVar_Codes'=> '3.30',
9731             'Locale::Codes::LangVar_Retired'=> '3.30',
9732             'Locale::Codes::Language'=> '3.30',
9733             'Locale::Codes::Language_Codes'=> '3.30',
9734             'Locale::Codes::Language_Retired'=> '3.30',
9735             'Locale::Codes::Script' => '3.30',
9736             'Locale::Codes::Script_Codes'=> '3.30',
9737             'Locale::Codes::Script_Retired'=> '3.30',
9738             'Locale::Country'       => '3.30',
9739             'Locale::Currency'      => '3.30',
9740             'Locale::Language'      => '3.30',
9741             'Locale::Script'        => '3.30',
9742             'Module::CoreList'      => '3.09',
9743             'Module::CoreList::TieHashDelta'=> '3.09',
9744             'Module::CoreList::Utils'=> '3.09',
9745             'Module::Load'          => '0.32',
9746             'POSIX'                 => '1.38_03',
9747             'Parse::CPAN::Meta'     => '1.4414',
9748             'Pod::Perldoc'          => '3.23',
9749             'Pod::Perldoc::BaseTo'  => '3.23',
9750             'Pod::Perldoc::GetOptsOO'=> '3.23',
9751             'Pod::Perldoc::ToANSI'  => '3.23',
9752             'Pod::Perldoc::ToChecker'=> '3.23',
9753             'Pod::Perldoc::ToMan'   => '3.23',
9754             'Pod::Perldoc::ToNroff' => '3.23',
9755             'Pod::Perldoc::ToPod'   => '3.23',
9756             'Pod::Perldoc::ToRtf'   => '3.23',
9757             'Pod::Perldoc::ToTerm'  => '3.23',
9758             'Pod::Perldoc::ToText'  => '3.23',
9759             'Pod::Perldoc::ToTk'    => '3.23',
9760             'Pod::Perldoc::ToXml'   => '3.23',
9761             'Thread::Queue'         => '3.05',
9762             'XS::APItest'           => '0.60',
9763             'XS::Typemap'           => '0.13',
9764             'autouse'               => '1.08',
9765             'base'                  => '2.22',
9766             'charnames'             => '1.40',
9767             'feature'               => '1.36',
9768             'mro'                   => '1.16',
9769             'threads'               => '1.93',
9770             'warnings'              => '1.23',
9771             'warnings::register'    => '1.03',
9772         },
9773         removed => {
9774         }
9775     },
9776     5.019011 => {
9777         delta_from => 5.01901,
9778         changed => {
9779             'CPAN'                  => '2.05',
9780             'CPAN::Distribution'    => '2.02',
9781             'CPAN::FirstTime'       => '5.5306',
9782             'CPAN::Shell'           => '5.5004',
9783             'Carp'                  => '1.3301',
9784             'Carp::Heavy'           => '1.3301',
9785             'Config'                => '5.019011',
9786             'ExtUtils::Command::MM' => '6.94',
9787             'ExtUtils::Install'     => '1.67',
9788             'ExtUtils::Liblist'     => '6.94',
9789             'ExtUtils::Liblist::Kid'=> '6.94',
9790             'ExtUtils::MM'          => '6.94',
9791             'ExtUtils::MM_AIX'      => '6.94',
9792             'ExtUtils::MM_Any'      => '6.94',
9793             'ExtUtils::MM_BeOS'     => '6.94',
9794             'ExtUtils::MM_Cygwin'   => '6.94',
9795             'ExtUtils::MM_DOS'      => '6.94',
9796             'ExtUtils::MM_Darwin'   => '6.94',
9797             'ExtUtils::MM_MacOS'    => '6.94',
9798             'ExtUtils::MM_NW5'      => '6.94',
9799             'ExtUtils::MM_OS2'      => '6.94',
9800             'ExtUtils::MM_QNX'      => '6.94',
9801             'ExtUtils::MM_UWIN'     => '6.94',
9802             'ExtUtils::MM_Unix'     => '6.94',
9803             'ExtUtils::MM_VMS'      => '6.94',
9804             'ExtUtils::MM_VOS'      => '6.94',
9805             'ExtUtils::MM_Win32'    => '6.94',
9806             'ExtUtils::MM_Win95'    => '6.94',
9807             'ExtUtils::MY'          => '6.94',
9808             'ExtUtils::MakeMaker'   => '6.94',
9809             'ExtUtils::MakeMaker::Config'=> '6.94',
9810             'ExtUtils::Mkbootstrap' => '6.94',
9811             'ExtUtils::Mksymlists'  => '6.94',
9812             'ExtUtils::testlib'     => '6.94',
9813             'Module::CoreList'      => '3.10',
9814             'Module::CoreList::TieHashDelta'=> '3.10',
9815             'Module::CoreList::Utils'=> '3.10',
9816             'PerlIO'                => '1.09',
9817             'Storable'              => '2.49',
9818             'Win32'                 => '0.49',
9819             'experimental'          => '0.007',
9820         },
9821         removed => {
9822         }
9823     },
9824     5.020000 => {
9825         delta_from => 5.019011,
9826         changed => {
9827             'Config'                => '5.02',
9828             'Devel::PPPort'         => '3.21',
9829             'Encode'                => '2.60',
9830             'Errno'                 => '1.20_03',
9831             'ExtUtils::Command::MM' => '6.98',
9832             'ExtUtils::Liblist'     => '6.98',
9833             'ExtUtils::Liblist::Kid'=> '6.98',
9834             'ExtUtils::MM'          => '6.98',
9835             'ExtUtils::MM_AIX'      => '6.98',
9836             'ExtUtils::MM_Any'      => '6.98',
9837             'ExtUtils::MM_BeOS'     => '6.98',
9838             'ExtUtils::MM_Cygwin'   => '6.98',
9839             'ExtUtils::MM_DOS'      => '6.98',
9840             'ExtUtils::MM_Darwin'   => '6.98',
9841             'ExtUtils::MM_MacOS'    => '6.98',
9842             'ExtUtils::MM_NW5'      => '6.98',
9843             'ExtUtils::MM_OS2'      => '6.98',
9844             'ExtUtils::MM_QNX'      => '6.98',
9845             'ExtUtils::MM_UWIN'     => '6.98',
9846             'ExtUtils::MM_Unix'     => '6.98',
9847             'ExtUtils::MM_VMS'      => '6.98',
9848             'ExtUtils::MM_VOS'      => '6.98',
9849             'ExtUtils::MM_Win32'    => '6.98',
9850             'ExtUtils::MM_Win95'    => '6.98',
9851             'ExtUtils::MY'          => '6.98',
9852             'ExtUtils::MakeMaker'   => '6.98',
9853             'ExtUtils::MakeMaker::Config'=> '6.98',
9854             'ExtUtils::Miniperl'    => '1.01',
9855             'ExtUtils::Mkbootstrap' => '6.98',
9856             'ExtUtils::Mksymlists'  => '6.98',
9857             'ExtUtils::testlib'     => '6.98',
9858             'Pod::Functions::Functions'=> '1.08',
9859         },
9860         removed => {
9861         }
9862     },
9863     5.021000 => {
9864         delta_from => 5.020000,
9865         changed => {
9866             'Module::CoreList'      => '5.021001',
9867             'Module::CoreList::TieHashDelta'=> '5.021001',
9868             'Module::CoreList::Utils'=> '5.021001',
9869             'feature'               => '1.37',
9870         },
9871         removed => {
9872             'CGI'                   => 1,
9873             'CGI::Apache'           => 1,
9874             'CGI::Carp'             => 1,
9875             'CGI::Cookie'           => 1,
9876             'CGI::Fast'             => 1,
9877             'CGI::Pretty'           => 1,
9878             'CGI::Push'             => 1,
9879             'CGI::Switch'           => 1,
9880             'CGI::Util'             => 1,
9881             'Module::Build'         => 1,
9882             'Module::Build::Base'   => 1,
9883             'Module::Build::Compat' => 1,
9884             'Module::Build::Config' => 1,
9885             'Module::Build::ConfigData'=> 1,
9886             'Module::Build::Cookbook'=> 1,
9887             'Module::Build::Dumper' => 1,
9888             'Module::Build::ModuleInfo'=> 1,
9889             'Module::Build::Notes'  => 1,
9890             'Module::Build::PPMMaker'=> 1,
9891             'Module::Build::Platform::Default'=> 1,
9892             'Module::Build::Platform::MacOS'=> 1,
9893             'Module::Build::Platform::Unix'=> 1,
9894             'Module::Build::Platform::VMS'=> 1,
9895             'Module::Build::Platform::VOS'=> 1,
9896             'Module::Build::Platform::Windows'=> 1,
9897             'Module::Build::Platform::aix'=> 1,
9898             'Module::Build::Platform::cygwin'=> 1,
9899             'Module::Build::Platform::darwin'=> 1,
9900             'Module::Build::Platform::os2'=> 1,
9901             'Module::Build::PodParser'=> 1,
9902             'Module::Build::Version'=> 1,
9903             'Module::Build::YAML'   => 1,
9904             'Package::Constants'    => 1,
9905             'Simple'                => 1,
9906             'inc::latest'           => 1,
9907         }
9908     },
9909     5.021001 => {
9910         delta_from => 5.021000,
9911         changed => {
9912             'App::Prove'            => '3.32',
9913             'App::Prove::State'     => '3.32',
9914             'App::Prove::State::Result'=> '3.32',
9915             'App::Prove::State::Result::Test'=> '3.32',
9916             'Archive::Tar'          => '2.00',
9917             'Archive::Tar::Constant'=> '2.00',
9918             'Archive::Tar::File'    => '2.00',
9919             'B'                     => '1.49',
9920             'B::Deparse'            => '1.27',
9921             'Benchmark'             => '1.19',
9922             'CPAN::Meta'            => '2.141520',
9923             'CPAN::Meta::Converter' => '2.141520',
9924             'CPAN::Meta::Feature'   => '2.141520',
9925             'CPAN::Meta::History'   => '2.141520',
9926             'CPAN::Meta::Prereqs'   => '2.141520',
9927             'CPAN::Meta::Spec'      => '2.141520',
9928             'CPAN::Meta::Validator' => '2.141520',
9929             'Carp'                  => '1.34',
9930             'Carp::Heavy'           => '1.34',
9931             'Config'                => '5.021001',
9932             'Cwd'                   => '3.48',
9933             'Data::Dumper'          => '2.152',
9934             'Devel::PPPort'         => '3.24',
9935             'Devel::Peek'           => '1.17',
9936             'Digest::SHA'           => '5.92',
9937             'DynaLoader'            => '1.26',
9938             'Encode'                => '2.62',
9939             'Errno'                 => '1.20_04',
9940             'Exporter'              => '5.71',
9941             'Exporter::Heavy'       => '5.71',
9942             'ExtUtils::Install'     => '1.68',
9943             'ExtUtils::Miniperl'    => '1.02',
9944             'ExtUtils::ParseXS'     => '3.25',
9945             'ExtUtils::ParseXS::Constants'=> '3.25',
9946             'ExtUtils::ParseXS::CountLines'=> '3.25',
9947             'ExtUtils::ParseXS::Eval'=> '3.25',
9948             'ExtUtils::ParseXS::Utilities'=> '3.25',
9949             'ExtUtils::Typemaps'    => '3.25',
9950             'ExtUtils::Typemaps::Cmd'=> '3.25',
9951             'ExtUtils::Typemaps::InputMap'=> '3.25',
9952             'ExtUtils::Typemaps::OutputMap'=> '3.25',
9953             'ExtUtils::Typemaps::Type'=> '3.25',
9954             'Fatal'                 => '2.25',
9955             'File::Spec'            => '3.48',
9956             'File::Spec::Cygwin'    => '3.48',
9957             'File::Spec::Epoc'      => '3.48',
9958             'File::Spec::Functions' => '3.48',
9959             'File::Spec::Mac'       => '3.48',
9960             'File::Spec::OS2'       => '3.48',
9961             'File::Spec::Unix'      => '3.48',
9962             'File::Spec::VMS'       => '3.48',
9963             'File::Spec::Win32'     => '3.48',
9964             'Hash::Util'            => '0.17',
9965             'IO'                    => '1.32',
9966             'List::Util'            => '1.39',
9967             'List::Util::XS'        => '1.39',
9968             'Locale::Codes'         => '3.31',
9969             'Locale::Codes::Constants'=> '3.31',
9970             'Locale::Codes::Country'=> '3.31',
9971             'Locale::Codes::Country_Codes'=> '3.31',
9972             'Locale::Codes::Country_Retired'=> '3.31',
9973             'Locale::Codes::Currency'=> '3.31',
9974             'Locale::Codes::Currency_Codes'=> '3.31',
9975             'Locale::Codes::Currency_Retired'=> '3.31',
9976             'Locale::Codes::LangExt'=> '3.31',
9977             'Locale::Codes::LangExt_Codes'=> '3.31',
9978             'Locale::Codes::LangExt_Retired'=> '3.31',
9979             'Locale::Codes::LangFam'=> '3.31',
9980             'Locale::Codes::LangFam_Codes'=> '3.31',
9981             'Locale::Codes::LangFam_Retired'=> '3.31',
9982             'Locale::Codes::LangVar'=> '3.31',
9983             'Locale::Codes::LangVar_Codes'=> '3.31',
9984             'Locale::Codes::LangVar_Retired'=> '3.31',
9985             'Locale::Codes::Language'=> '3.31',
9986             'Locale::Codes::Language_Codes'=> '3.31',
9987             'Locale::Codes::Language_Retired'=> '3.31',
9988             'Locale::Codes::Script' => '3.31',
9989             'Locale::Codes::Script_Codes'=> '3.31',
9990             'Locale::Codes::Script_Retired'=> '3.31',
9991             'Locale::Country'       => '3.31',
9992             'Locale::Currency'      => '3.31',
9993             'Locale::Language'      => '3.31',
9994             'Locale::Script'        => '3.31',
9995             'Math::BigFloat'        => '1.9994',
9996             'Math::BigInt'          => '1.9995',
9997             'Math::BigInt::Calc'    => '1.9994',
9998             'Math::BigInt::CalcEmu' => '1.9994',
9999             'Math::BigRat'          => '0.2608',
10000             'Module::CoreList'      => '5.021001_01',
10001             'Module::CoreList::TieHashDelta'=> '5.021001_01',
10002             'Module::CoreList::Utils'=> '5.021001_01',
10003             'Module::Metadata'      => '1.000024',
10004             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
10005             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
10006             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
10007             'NDBM_File'             => '1.13',
10008             'Net::Config'           => '1.14',
10009             'Net::SMTP'             => '2.34',
10010             'Net::Time'             => '2.11',
10011             'OS2::Process'          => '1.10',
10012             'POSIX'                 => '1.40',
10013             'PerlIO::encoding'      => '0.19',
10014             'PerlIO::mmap'          => '0.013',
10015             'PerlIO::scalar'        => '0.19',
10016             'PerlIO::via'           => '0.15',
10017             'Pod::Html'             => '1.22',
10018             'Scalar::Util'          => '1.39',
10019             'SelfLoader'            => '1.22',
10020             'Socket'                => '2.014',
10021             'Storable'              => '2.51',
10022             'TAP::Base'             => '3.32',
10023             'TAP::Formatter::Base'  => '3.32',
10024             'TAP::Formatter::Color' => '3.32',
10025             'TAP::Formatter::Console'=> '3.32',
10026             'TAP::Formatter::Console::ParallelSession'=> '3.32',
10027             'TAP::Formatter::Console::Session'=> '3.32',
10028             'TAP::Formatter::File'  => '3.32',
10029             'TAP::Formatter::File::Session'=> '3.32',
10030             'TAP::Formatter::Session'=> '3.32',
10031             'TAP::Harness'          => '3.32',
10032             'TAP::Harness::Env'     => '3.32',
10033             'TAP::Object'           => '3.32',
10034             'TAP::Parser'           => '3.32',
10035             'TAP::Parser::Aggregator'=> '3.32',
10036             'TAP::Parser::Grammar'  => '3.32',
10037             'TAP::Parser::Iterator' => '3.32',
10038             'TAP::Parser::Iterator::Array'=> '3.32',
10039             'TAP::Parser::Iterator::Process'=> '3.32',
10040             'TAP::Parser::Iterator::Stream'=> '3.32',
10041             'TAP::Parser::IteratorFactory'=> '3.32',
10042             'TAP::Parser::Multiplexer'=> '3.32',
10043             'TAP::Parser::Result'   => '3.32',
10044             'TAP::Parser::Result::Bailout'=> '3.32',
10045             'TAP::Parser::Result::Comment'=> '3.32',
10046             'TAP::Parser::Result::Plan'=> '3.32',
10047             'TAP::Parser::Result::Pragma'=> '3.32',
10048             'TAP::Parser::Result::Test'=> '3.32',
10049             'TAP::Parser::Result::Unknown'=> '3.32',
10050             'TAP::Parser::Result::Version'=> '3.32',
10051             'TAP::Parser::Result::YAML'=> '3.32',
10052             'TAP::Parser::ResultFactory'=> '3.32',
10053             'TAP::Parser::Scheduler'=> '3.32',
10054             'TAP::Parser::Scheduler::Job'=> '3.32',
10055             'TAP::Parser::Scheduler::Spinner'=> '3.32',
10056             'TAP::Parser::Source'   => '3.32',
10057             'TAP::Parser::SourceHandler'=> '3.32',
10058             'TAP::Parser::SourceHandler::Executable'=> '3.32',
10059             'TAP::Parser::SourceHandler::File'=> '3.32',
10060             'TAP::Parser::SourceHandler::Handle'=> '3.32',
10061             'TAP::Parser::SourceHandler::Perl'=> '3.32',
10062             'TAP::Parser::SourceHandler::RawTAP'=> '3.32',
10063             'TAP::Parser::YAMLish::Reader'=> '3.32',
10064             'TAP::Parser::YAMLish::Writer'=> '3.32',
10065             'Term::ANSIColor'       => '4.03',
10066             'Test::Builder'         => '1.001003',
10067             'Test::Builder::Module' => '1.001003',
10068             'Test::Builder::Tester' => '1.23_003',
10069             'Test::Harness'         => '3.32',
10070             'Test::More'            => '1.001003',
10071             'Test::Simple'          => '1.001003',
10072             'Tie::File'             => '1.01',
10073             'Unicode'               => '7.0.0',
10074             'Unicode::Collate'      => '1.07',
10075             'Unicode::Normalize'    => '1.18',
10076             'Unicode::UCD'          => '0.58',
10077             'XS::APItest'           => '0.61',
10078             '_charnames'            => '1.41',
10079             'autodie'               => '2.25',
10080             'autodie::Scope::Guard' => '2.25',
10081             'autodie::Scope::GuardStack'=> '2.25',
10082             'autodie::ScopeUtil'    => '2.25',
10083             'autodie::exception'    => '2.25',
10084             'autodie::exception::system'=> '2.25',
10085             'autodie::hints'        => '2.25',
10086             'autodie::skip'         => '2.25',
10087             'charnames'             => '1.41',
10088             'locale'                => '1.04',
10089             'threads'               => '1.94',
10090             'utf8'                  => '1.14',
10091             'warnings'              => '1.24',
10092         },
10093         removed => {
10094         }
10095     },
10096     5.021002 => {
10097         delta_from => 5.021001,
10098         changed => {
10099             'B'                     => '1.50',
10100             'Config'                => '5.021002',
10101             'Cwd'                   => '3.49',
10102             'Devel::Peek'           => '1.18',
10103             'ExtUtils::Manifest'    => '1.64',
10104             'File::Copy'            => '2.30',
10105             'File::Spec'            => '3.49',
10106             'File::Spec::Cygwin'    => '3.49',
10107             'File::Spec::Epoc'      => '3.49',
10108             'File::Spec::Functions' => '3.49',
10109             'File::Spec::Mac'       => '3.49',
10110             'File::Spec::OS2'       => '3.49',
10111             'File::Spec::Unix'      => '3.49',
10112             'File::Spec::VMS'       => '3.49',
10113             'File::Spec::Win32'     => '3.49',
10114             'Filter::Simple'        => '0.92',
10115             'Hash::Util'            => '0.18',
10116             'IO'                    => '1.33',
10117             'IO::Socket::IP'        => '0.31',
10118             'IPC::Open3'            => '1.17',
10119             'Math::BigFloat'        => '1.9996',
10120             'Math::BigInt'          => '1.9996',
10121             'Math::BigInt::Calc'    => '1.9996',
10122             'Math::BigInt::CalcEmu' => '1.9996',
10123             'Module::CoreList'      => '5.021002',
10124             'Module::CoreList::TieHashDelta'=> '5.021002',
10125             'Module::CoreList::Utils'=> '5.021002',
10126             'POSIX'                 => '1.41',
10127             'Pod::Usage'            => '1.64',
10128             'XS::APItest'           => '0.62',
10129             'arybase'               => '0.08',
10130             'experimental'          => '0.008',
10131             'threads'               => '1.95',
10132             'warnings'              => '1.26',
10133         },
10134         removed => {
10135         }
10136     },
10137     5.021003 => {
10138         delta_from => 5.021002,
10139         changed => {
10140             'B::Debug'              => '1.21',
10141             'CPAN::Meta'            => '2.142060',
10142             'CPAN::Meta::Converter' => '2.142060',
10143             'CPAN::Meta::Feature'   => '2.142060',
10144             'CPAN::Meta::History'   => '2.142060',
10145             'CPAN::Meta::Merge'     => '2.142060',
10146             'CPAN::Meta::Prereqs'   => '2.142060',
10147             'CPAN::Meta::Requirements'=> '2.126',
10148             'CPAN::Meta::Spec'      => '2.142060',
10149             'CPAN::Meta::Validator' => '2.142060',
10150             'Config'                => '5.021003',
10151             'Config::Perl::V'       => '0.22',
10152             'ExtUtils::CBuilder'    => '0.280217',
10153             'ExtUtils::CBuilder::Base'=> '0.280217',
10154             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10155             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10156             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10157             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10158             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10159             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10160             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10161             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10162             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10163             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10164             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10165             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10166             'ExtUtils::Manifest'    => '1.65',
10167             'HTTP::Tiny'            => '0.047',
10168             'IPC::Open3'            => '1.18',
10169             'Module::CoreList'      => '5.021003',
10170             'Module::CoreList::TieHashDelta'=> '5.021003',
10171             'Module::CoreList::Utils'=> '5.021003',
10172             'Opcode'                => '1.28',
10173             'POSIX'                 => '1.42',
10174             'Safe'                  => '2.38',
10175             'Socket'                => '2.015',
10176             'Sys::Hostname'         => '1.19',
10177             'UNIVERSAL'             => '1.12',
10178             'XS::APItest'           => '0.63',
10179             'perlfaq'               => '5.0150045',
10180         },
10181         removed => {
10182         }
10183     },
10184     5.020001 => {
10185         delta_from => 5.020000,
10186         changed => {
10187             'Config'                => '5.020001',
10188             'Config::Perl::V'       => '0.22',
10189             'Cwd'                   => '3.48',
10190             'Exporter'              => '5.71',
10191             'Exporter::Heavy'       => '5.71',
10192             'ExtUtils::CBuilder'    => '0.280217',
10193             'ExtUtils::CBuilder::Base'=> '0.280217',
10194             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10195             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10196             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10197             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10198             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10199             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10200             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10201             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10202             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10203             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10204             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10205             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10206             'File::Copy'            => '2.30',
10207             'File::Spec'            => '3.48',
10208             'File::Spec::Cygwin'    => '3.48',
10209             'File::Spec::Epoc'      => '3.48',
10210             'File::Spec::Functions' => '3.48',
10211             'File::Spec::Mac'       => '3.48',
10212             'File::Spec::OS2'       => '3.48',
10213             'File::Spec::Unix'      => '3.48',
10214             'File::Spec::VMS'       => '3.48',
10215             'File::Spec::Win32'     => '3.48',
10216             'Module::CoreList'      => '5.020001',
10217             'Module::CoreList::TieHashDelta'=> '5.020001',
10218             'Module::CoreList::Utils'=> '5.020001',
10219             'PerlIO::via'           => '0.15',
10220             'Unicode::UCD'          => '0.58',
10221             'XS::APItest'           => '0.60_01',
10222             'utf8'                  => '1.13_01',
10223             'version'               => '0.9909',
10224             'version::regex'        => '0.9909',
10225             'version::vpp'          => '0.9909',
10226         },
10227         removed => {
10228         }
10229     },
10230     5.021004 => {
10231         delta_from => 5.021003,
10232         changed => {
10233             'App::Prove'            => '3.33',
10234             'App::Prove::State'     => '3.33',
10235             'App::Prove::State::Result'=> '3.33',
10236             'App::Prove::State::Result::Test'=> '3.33',
10237             'Archive::Tar'          => '2.02',
10238             'Archive::Tar::Constant'=> '2.02',
10239             'Archive::Tar::File'    => '2.02',
10240             'Attribute::Handlers'   => '0.97',
10241             'B'                     => '1.51',
10242             'B::Concise'            => '0.993',
10243             'B::Deparse'            => '1.28',
10244             'B::Op_private'         => '5.021004',
10245             'CPAN::Meta::Requirements'=> '2.128',
10246             'Config'                => '5.021004',
10247             'Cwd'                   => '3.50',
10248             'Data::Dumper'          => '2.154',
10249             'ExtUtils::CBuilder'    => '0.280219',
10250             'ExtUtils::CBuilder::Base'=> '0.280219',
10251             'ExtUtils::CBuilder::Platform::Unix'=> '0.280219',
10252             'ExtUtils::CBuilder::Platform::VMS'=> '0.280219',
10253             'ExtUtils::CBuilder::Platform::Windows'=> '0.280219',
10254             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280219',
10255             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280219',
10256             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280219',
10257             'ExtUtils::CBuilder::Platform::aix'=> '0.280219',
10258             'ExtUtils::CBuilder::Platform::android'=> '0.280219',
10259             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280219',
10260             'ExtUtils::CBuilder::Platform::darwin'=> '0.280219',
10261             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280219',
10262             'ExtUtils::CBuilder::Platform::os2'=> '0.280219',
10263             'ExtUtils::Install'     => '2.04',
10264             'ExtUtils::Installed'   => '2.04',
10265             'ExtUtils::Liblist::Kid'=> '6.98_01',
10266             'ExtUtils::Manifest'    => '1.68',
10267             'ExtUtils::Packlist'    => '2.04',
10268             'File::Find'            => '1.28',
10269             'File::Spec'            => '3.50',
10270             'File::Spec::Cygwin'    => '3.50',
10271             'File::Spec::Epoc'      => '3.50',
10272             'File::Spec::Functions' => '3.50',
10273             'File::Spec::Mac'       => '3.50',
10274             'File::Spec::OS2'       => '3.50',
10275             'File::Spec::Unix'      => '3.50',
10276             'File::Spec::VMS'       => '3.50',
10277             'File::Spec::Win32'     => '3.50',
10278             'Getopt::Std'           => '1.11',
10279             'HTTP::Tiny'            => '0.049',
10280             'IO'                    => '1.34',
10281             'IO::Socket::IP'        => '0.32',
10282             'List::Util'            => '1.41',
10283             'List::Util::XS'        => '1.41',
10284             'Locale::Codes'         => '3.32',
10285             'Locale::Codes::Constants'=> '3.32',
10286             'Locale::Codes::Country'=> '3.32',
10287             'Locale::Codes::Country_Codes'=> '3.32',
10288             'Locale::Codes::Country_Retired'=> '3.32',
10289             'Locale::Codes::Currency'=> '3.32',
10290             'Locale::Codes::Currency_Codes'=> '3.32',
10291             'Locale::Codes::Currency_Retired'=> '3.32',
10292             'Locale::Codes::LangExt'=> '3.32',
10293             'Locale::Codes::LangExt_Codes'=> '3.32',
10294             'Locale::Codes::LangExt_Retired'=> '3.32',
10295             'Locale::Codes::LangFam'=> '3.32',
10296             'Locale::Codes::LangFam_Codes'=> '3.32',
10297             'Locale::Codes::LangFam_Retired'=> '3.32',
10298             'Locale::Codes::LangVar'=> '3.32',
10299             'Locale::Codes::LangVar_Codes'=> '3.32',
10300             'Locale::Codes::LangVar_Retired'=> '3.32',
10301             'Locale::Codes::Language'=> '3.32',
10302             'Locale::Codes::Language_Codes'=> '3.32',
10303             'Locale::Codes::Language_Retired'=> '3.32',
10304             'Locale::Codes::Script' => '3.32',
10305             'Locale::Codes::Script_Codes'=> '3.32',
10306             'Locale::Codes::Script_Retired'=> '3.32',
10307             'Locale::Country'       => '3.32',
10308             'Locale::Currency'      => '3.32',
10309             'Locale::Language'      => '3.32',
10310             'Locale::Script'        => '3.32',
10311             'Math::BigFloat'        => '1.9997',
10312             'Math::BigInt'          => '1.9997',
10313             'Math::BigInt::Calc'    => '1.9997',
10314             'Math::BigInt::CalcEmu' => '1.9997',
10315             'Module::CoreList'      => '5.20140920',
10316             'Module::CoreList::TieHashDelta'=> '5.20140920',
10317             'Module::CoreList::Utils'=> '5.20140920',
10318             'POSIX'                 => '1.43',
10319             'Pod::Perldoc'          => '3.24',
10320             'Pod::Perldoc::BaseTo'  => '3.24',
10321             'Pod::Perldoc::GetOptsOO'=> '3.24',
10322             'Pod::Perldoc::ToANSI'  => '3.24',
10323             'Pod::Perldoc::ToChecker'=> '3.24',
10324             'Pod::Perldoc::ToMan'   => '3.24',
10325             'Pod::Perldoc::ToNroff' => '3.24',
10326             'Pod::Perldoc::ToPod'   => '3.24',
10327             'Pod::Perldoc::ToRtf'   => '3.24',
10328             'Pod::Perldoc::ToTerm'  => '3.24',
10329             'Pod::Perldoc::ToText'  => '3.24',
10330             'Pod::Perldoc::ToTk'    => '3.24',
10331             'Pod::Perldoc::ToXml'   => '3.24',
10332             'Scalar::Util'          => '1.41',
10333             'Sub::Util'             => '1.41',
10334             'TAP::Base'             => '3.33',
10335             'TAP::Formatter::Base'  => '3.33',
10336             'TAP::Formatter::Color' => '3.33',
10337             'TAP::Formatter::Console'=> '3.33',
10338             'TAP::Formatter::Console::ParallelSession'=> '3.33',
10339             'TAP::Formatter::Console::Session'=> '3.33',
10340             'TAP::Formatter::File'  => '3.33',
10341             'TAP::Formatter::File::Session'=> '3.33',
10342             'TAP::Formatter::Session'=> '3.33',
10343             'TAP::Harness'          => '3.33',
10344             'TAP::Harness::Env'     => '3.33',
10345             'TAP::Object'           => '3.33',
10346             'TAP::Parser'           => '3.33',
10347             'TAP::Parser::Aggregator'=> '3.33',
10348             'TAP::Parser::Grammar'  => '3.33',
10349             'TAP::Parser::Iterator' => '3.33',
10350             'TAP::Parser::Iterator::Array'=> '3.33',
10351             'TAP::Parser::Iterator::Process'=> '3.33',
10352             'TAP::Parser::Iterator::Stream'=> '3.33',
10353             'TAP::Parser::IteratorFactory'=> '3.33',
10354             'TAP::Parser::Multiplexer'=> '3.33',
10355             'TAP::Parser::Result'   => '3.33',
10356             'TAP::Parser::Result::Bailout'=> '3.33',
10357             'TAP::Parser::Result::Comment'=> '3.33',
10358             'TAP::Parser::Result::Plan'=> '3.33',
10359             'TAP::Parser::Result::Pragma'=> '3.33',
10360             'TAP::Parser::Result::Test'=> '3.33',
10361             'TAP::Parser::Result::Unknown'=> '3.33',
10362             'TAP::Parser::Result::Version'=> '3.33',
10363             'TAP::Parser::Result::YAML'=> '3.33',
10364             'TAP::Parser::ResultFactory'=> '3.33',
10365             'TAP::Parser::Scheduler'=> '3.33',
10366             'TAP::Parser::Scheduler::Job'=> '3.33',
10367             'TAP::Parser::Scheduler::Spinner'=> '3.33',
10368             'TAP::Parser::Source'   => '3.33',
10369             'TAP::Parser::SourceHandler'=> '3.33',
10370             'TAP::Parser::SourceHandler::Executable'=> '3.33',
10371             'TAP::Parser::SourceHandler::File'=> '3.33',
10372             'TAP::Parser::SourceHandler::Handle'=> '3.33',
10373             'TAP::Parser::SourceHandler::Perl'=> '3.33',
10374             'TAP::Parser::SourceHandler::RawTAP'=> '3.33',
10375             'TAP::Parser::YAMLish::Reader'=> '3.33',
10376             'TAP::Parser::YAMLish::Writer'=> '3.33',
10377             'Term::ReadLine'        => '1.15',
10378             'Test::Builder'         => '1.001006',
10379             'Test::Builder::Module' => '1.001006',
10380             'Test::Builder::Tester' => '1.24',
10381             'Test::Builder::Tester::Color'=> '1.24',
10382             'Test::Harness'         => '3.33',
10383             'Test::More'            => '1.001006',
10384             'Test::Simple'          => '1.001006',
10385             'Time::Piece'           => '1.29',
10386             'Time::Seconds'         => '1.29',
10387             'XS::APItest'           => '0.64',
10388             '_charnames'            => '1.42',
10389             'attributes'            => '0.23',
10390             'bigint'                => '0.37',
10391             'bignum'                => '0.38',
10392             'bigrat'                => '0.37',
10393             'constant'              => '1.32',
10394             'experimental'          => '0.010',
10395             'overload'              => '1.23',
10396             'threads'               => '1.96',
10397             'version'               => '0.9909',
10398             'version::regex'        => '0.9909',
10399             'version::vpp'          => '0.9909',
10400         },
10401         removed => {
10402         }
10403     },
10404     5.021005 => {
10405         delta_from => 5.021004,
10406         changed => {
10407             'B'                     => '1.52',
10408             'B::Concise'            => '0.994',
10409             'B::Debug'              => '1.22',
10410             'B::Deparse'            => '1.29',
10411             'B::Op_private'         => '5.021005',
10412             'CPAN::Meta'            => '2.142690',
10413             'CPAN::Meta::Converter' => '2.142690',
10414             'CPAN::Meta::Feature'   => '2.142690',
10415             'CPAN::Meta::History'   => '2.142690',
10416             'CPAN::Meta::Merge'     => '2.142690',
10417             'CPAN::Meta::Prereqs'   => '2.142690',
10418             'CPAN::Meta::Spec'      => '2.142690',
10419             'CPAN::Meta::Validator' => '2.142690',
10420             'Compress::Raw::Bzip2'  => '2.066',
10421             'Compress::Raw::Zlib'   => '2.066',
10422             'Compress::Zlib'        => '2.066',
10423             'Config'                => '5.021005',
10424             'Cwd'                   => '3.51',
10425             'DynaLoader'            => '1.27',
10426             'Errno'                 => '1.21',
10427             'ExtUtils::CBuilder'    => '0.280220',
10428             'ExtUtils::CBuilder::Base'=> '0.280220',
10429             'ExtUtils::CBuilder::Platform::Unix'=> '0.280220',
10430             'ExtUtils::CBuilder::Platform::VMS'=> '0.280220',
10431             'ExtUtils::CBuilder::Platform::Windows'=> '0.280220',
10432             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280220',
10433             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280220',
10434             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280220',
10435             'ExtUtils::CBuilder::Platform::aix'=> '0.280220',
10436             'ExtUtils::CBuilder::Platform::android'=> '0.280220',
10437             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280220',
10438             'ExtUtils::CBuilder::Platform::darwin'=> '0.280220',
10439             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280220',
10440             'ExtUtils::CBuilder::Platform::os2'=> '0.280220',
10441             'ExtUtils::Miniperl'    => '1.03',
10442             'Fcntl'                 => '1.13',
10443             'File::Find'            => '1.29',
10444             'File::Spec'            => '3.51',
10445             'File::Spec::Cygwin'    => '3.51',
10446             'File::Spec::Epoc'      => '3.51',
10447             'File::Spec::Functions' => '3.51',
10448             'File::Spec::Mac'       => '3.51',
10449             'File::Spec::OS2'       => '3.51',
10450             'File::Spec::Unix'      => '3.51',
10451             'File::Spec::VMS'       => '3.51',
10452             'File::Spec::Win32'     => '3.51',
10453             'HTTP::Tiny'            => '0.050',
10454             'IO::Compress::Adapter::Bzip2'=> '2.066',
10455             'IO::Compress::Adapter::Deflate'=> '2.066',
10456             'IO::Compress::Adapter::Identity'=> '2.066',
10457             'IO::Compress::Base'    => '2.066',
10458             'IO::Compress::Base::Common'=> '2.066',
10459             'IO::Compress::Bzip2'   => '2.066',
10460             'IO::Compress::Deflate' => '2.066',
10461             'IO::Compress::Gzip'    => '2.066',
10462             'IO::Compress::Gzip::Constants'=> '2.066',
10463             'IO::Compress::RawDeflate'=> '2.066',
10464             'IO::Compress::Zip'     => '2.066',
10465             'IO::Compress::Zip::Constants'=> '2.066',
10466             'IO::Compress::Zlib::Constants'=> '2.066',
10467             'IO::Compress::Zlib::Extra'=> '2.066',
10468             'IO::Uncompress::Adapter::Bunzip2'=> '2.066',
10469             'IO::Uncompress::Adapter::Identity'=> '2.066',
10470             'IO::Uncompress::Adapter::Inflate'=> '2.066',
10471             'IO::Uncompress::AnyInflate'=> '2.066',
10472             'IO::Uncompress::AnyUncompress'=> '2.066',
10473             'IO::Uncompress::Base'  => '2.066',
10474             'IO::Uncompress::Bunzip2'=> '2.066',
10475             'IO::Uncompress::Gunzip'=> '2.066',
10476             'IO::Uncompress::Inflate'=> '2.066',
10477             'IO::Uncompress::RawInflate'=> '2.066',
10478             'IO::Uncompress::Unzip' => '2.066',
10479             'JSON::PP'              => '2.27300',
10480             'Module::CoreList'      => '5.20141020',
10481             'Module::CoreList::TieHashDelta'=> '5.20141020',
10482             'Module::CoreList::Utils'=> '5.20141020',
10483             'Net::Cmd'              => '3.02',
10484             'Net::Config'           => '3.02',
10485             'Net::Domain'           => '3.02',
10486             'Net::FTP'              => '3.02',
10487             'Net::FTP::A'           => '3.02',
10488             'Net::FTP::E'           => '3.02',
10489             'Net::FTP::I'           => '3.02',
10490             'Net::FTP::L'           => '3.02',
10491             'Net::FTP::dataconn'    => '3.02',
10492             'Net::NNTP'             => '3.02',
10493             'Net::Netrc'            => '3.02',
10494             'Net::POP3'             => '3.02',
10495             'Net::SMTP'             => '3.02',
10496             'Net::Time'             => '3.02',
10497             'Opcode'                => '1.29',
10498             'POSIX'                 => '1.45',
10499             'Socket'                => '2.016',
10500             'Test::Builder'         => '1.001008',
10501             'Test::Builder::Module' => '1.001008',
10502             'Test::More'            => '1.001008',
10503             'Test::Simple'          => '1.001008',
10504             'XS::APItest'           => '0.65',
10505             'XSLoader'              => '0.18',
10506             'attributes'            => '0.24',
10507             'experimental'          => '0.012',
10508             'feature'               => '1.38',
10509             'perlfaq'               => '5.0150046',
10510             're'                    => '0.27',
10511             'threads::shared'       => '1.47',
10512             'warnings'              => '1.28',
10513             'warnings::register'    => '1.04',
10514         },
10515         removed => {
10516         }
10517     },
10518     5.021006 => {
10519         delta_from => 5.021005,
10520         changed => {
10521             'App::Prove'            => '3.34',
10522             'App::Prove::State'     => '3.34',
10523             'App::Prove::State::Result'=> '3.34',
10524             'App::Prove::State::Result::Test'=> '3.34',
10525             'B'                     => '1.53',
10526             'B::Concise'            => '0.995',
10527             'B::Deparse'            => '1.30',
10528             'B::Op_private'         => '5.021006',
10529             'CPAN::Meta'            => '2.143240',
10530             'CPAN::Meta::Converter' => '2.143240',
10531             'CPAN::Meta::Feature'   => '2.143240',
10532             'CPAN::Meta::History'   => '2.143240',
10533             'CPAN::Meta::Merge'     => '2.143240',
10534             'CPAN::Meta::Prereqs'   => '2.143240',
10535             'CPAN::Meta::Requirements'=> '2.130',
10536             'CPAN::Meta::Spec'      => '2.143240',
10537             'CPAN::Meta::Validator' => '2.143240',
10538             'Config'                => '5.021006',
10539             'Devel::Peek'           => '1.19',
10540             'Digest::SHA'           => '5.93',
10541             'DynaLoader'            => '1.28',
10542             'Encode'                => '2.64',
10543             'Exporter'              => '5.72',
10544             'Exporter::Heavy'       => '5.72',
10545             'ExtUtils::Command::MM' => '7.02',
10546             'ExtUtils::Liblist'     => '7.02',
10547             'ExtUtils::Liblist::Kid'=> '7.02',
10548             'ExtUtils::MM'          => '7.02',
10549             'ExtUtils::MM_AIX'      => '7.02',
10550             'ExtUtils::MM_Any'      => '7.02',
10551             'ExtUtils::MM_BeOS'     => '7.02',
10552             'ExtUtils::MM_Cygwin'   => '7.02',
10553             'ExtUtils::MM_DOS'      => '7.02',
10554             'ExtUtils::MM_Darwin'   => '7.02',
10555             'ExtUtils::MM_MacOS'    => '7.02',
10556             'ExtUtils::MM_NW5'      => '7.02',
10557             'ExtUtils::MM_OS2'      => '7.02',
10558             'ExtUtils::MM_QNX'      => '7.02',
10559             'ExtUtils::MM_UWIN'     => '7.02',
10560             'ExtUtils::MM_Unix'     => '7.02',
10561             'ExtUtils::MM_VMS'      => '7.02',
10562             'ExtUtils::MM_VOS'      => '7.02',
10563             'ExtUtils::MM_Win32'    => '7.02',
10564             'ExtUtils::MM_Win95'    => '7.02',
10565             'ExtUtils::MY'          => '7.02',
10566             'ExtUtils::MakeMaker'   => '7.02',
10567             'ExtUtils::MakeMaker::Config'=> '7.02',
10568             'ExtUtils::MakeMaker::Locale'=> '7.02',
10569             'ExtUtils::MakeMaker::version'=> '7.02',
10570             'ExtUtils::MakeMaker::version::regex'=> '7.02',
10571             'ExtUtils::MakeMaker::version::vpp'=> '7.02',
10572             'ExtUtils::Manifest'    => '1.69',
10573             'ExtUtils::Mkbootstrap' => '7.02',
10574             'ExtUtils::Mksymlists'  => '7.02',
10575             'ExtUtils::ParseXS'     => '3.26',
10576             'ExtUtils::ParseXS::Constants'=> '3.26',
10577             'ExtUtils::ParseXS::CountLines'=> '3.26',
10578             'ExtUtils::ParseXS::Eval'=> '3.26',
10579             'ExtUtils::ParseXS::Utilities'=> '3.26',
10580             'ExtUtils::testlib'     => '7.02',
10581             'File::Spec::VMS'       => '3.52',
10582             'HTTP::Tiny'            => '0.051',
10583             'I18N::Langinfo'        => '0.12',
10584             'IO::Socket'            => '1.38',
10585             'Module::CoreList'      => '5.20141120',
10586             'Module::CoreList::TieHashDelta'=> '5.20141120',
10587             'Module::CoreList::Utils'=> '5.20141120',
10588             'POSIX'                 => '1.46',
10589             'PerlIO::encoding'      => '0.20',
10590             'PerlIO::scalar'        => '0.20',
10591             'TAP::Base'             => '3.34',
10592             'TAP::Formatter::Base'  => '3.34',
10593             'TAP::Formatter::Color' => '3.34',
10594             'TAP::Formatter::Console'=> '3.34',
10595             'TAP::Formatter::Console::ParallelSession'=> '3.34',
10596             'TAP::Formatter::Console::Session'=> '3.34',
10597             'TAP::Formatter::File'  => '3.34',
10598             'TAP::Formatter::File::Session'=> '3.34',
10599             'TAP::Formatter::Session'=> '3.34',
10600             'TAP::Harness'          => '3.34',
10601             'TAP::Harness::Env'     => '3.34',
10602             'TAP::Object'           => '3.34',
10603             'TAP::Parser'           => '3.34',
10604             'TAP::Parser::Aggregator'=> '3.34',
10605             'TAP::Parser::Grammar'  => '3.34',
10606             'TAP::Parser::Iterator' => '3.34',
10607             'TAP::Parser::Iterator::Array'=> '3.34',
10608             'TAP::Parser::Iterator::Process'=> '3.34',
10609             'TAP::Parser::Iterator::Stream'=> '3.34',
10610             'TAP::Parser::IteratorFactory'=> '3.34',
10611             'TAP::Parser::Multiplexer'=> '3.34',
10612             'TAP::Parser::Result'   => '3.34',
10613             'TAP::Parser::Result::Bailout'=> '3.34',
10614             'TAP::Parser::Result::Comment'=> '3.34',
10615             'TAP::Parser::Result::Plan'=> '3.34',
10616             'TAP::Parser::Result::Pragma'=> '3.34',
10617             'TAP::Parser::Result::Test'=> '3.34',
10618             'TAP::Parser::Result::Unknown'=> '3.34',
10619             'TAP::Parser::Result::Version'=> '3.34',
10620             'TAP::Parser::Result::YAML'=> '3.34',
10621             'TAP::Parser::ResultFactory'=> '3.34',
10622             'TAP::Parser::Scheduler'=> '3.34',
10623             'TAP::Parser::Scheduler::Job'=> '3.34',
10624             'TAP::Parser::Scheduler::Spinner'=> '3.34',
10625             'TAP::Parser::Source'   => '3.34',
10626             'TAP::Parser::SourceHandler'=> '3.34',
10627             'TAP::Parser::SourceHandler::Executable'=> '3.34',
10628             'TAP::Parser::SourceHandler::File'=> '3.34',
10629             'TAP::Parser::SourceHandler::Handle'=> '3.34',
10630             'TAP::Parser::SourceHandler::Perl'=> '3.34',
10631             'TAP::Parser::SourceHandler::RawTAP'=> '3.34',
10632             'TAP::Parser::YAMLish::Reader'=> '3.34',
10633             'TAP::Parser::YAMLish::Writer'=> '3.34',
10634             'Test::Builder'         => '1.301001_075',
10635             'Test::Builder::Module' => '1.301001_075',
10636             'Test::Builder::Tester' => '1.301001_075',
10637             'Test::Builder::Tester::Color'=> '1.301001_075',
10638             'Test::Harness'         => '3.34',
10639             'Test::More'            => '1.301001_075',
10640             'Test::More::DeepCheck' => undef,
10641             'Test::More::DeepCheck::Strict'=> undef,
10642             'Test::More::DeepCheck::Tolerant'=> undef,
10643             'Test::More::Tools'     => undef,
10644             'Test::MostlyLike'      => undef,
10645             'Test::Simple'          => '1.301001_075',
10646             'Test::Stream'          => '1.301001_075',
10647             'Test::Stream::ArrayBase'=> undef,
10648             'Test::Stream::ArrayBase::Meta'=> undef,
10649             'Test::Stream::Carp'    => undef,
10650             'Test::Stream::Context' => undef,
10651             'Test::Stream::Event'   => undef,
10652             'Test::Stream::Event::Bail'=> undef,
10653             'Test::Stream::Event::Child'=> undef,
10654             'Test::Stream::Event::Diag'=> undef,
10655             'Test::Stream::Event::Finish'=> undef,
10656             'Test::Stream::Event::Note'=> undef,
10657             'Test::Stream::Event::Ok'=> undef,
10658             'Test::Stream::Event::Plan'=> undef,
10659             'Test::Stream::Event::Subtest'=> undef,
10660             'Test::Stream::ExitMagic'=> undef,
10661             'Test::Stream::ExitMagic::Context'=> undef,
10662             'Test::Stream::Exporter'=> undef,
10663             'Test::Stream::Exporter::Meta'=> undef,
10664             'Test::Stream::IOSets'  => undef,
10665             'Test::Stream::Meta'    => undef,
10666             'Test::Stream::PackageUtil'=> undef,
10667             'Test::Stream::Tester'  => undef,
10668             'Test::Stream::Tester::Checks'=> undef,
10669             'Test::Stream::Tester::Checks::Event'=> undef,
10670             'Test::Stream::Tester::Events'=> undef,
10671             'Test::Stream::Tester::Events::Event'=> undef,
10672             'Test::Stream::Tester::Grab'=> undef,
10673             'Test::Stream::Threads' => undef,
10674             'Test::Stream::Toolset' => undef,
10675             'Test::Stream::Util'    => undef,
10676             'Test::Tester'          => '1.301001_075',
10677             'Test::Tester::Capture' => undef,
10678             'Test::use::ok'         => '1.301001_075',
10679             'Unicode::UCD'          => '0.59',
10680             'XS::APItest'           => '0.68',
10681             'XSLoader'              => '0.19',
10682             'experimental'          => '0.013',
10683             'locale'                => '1.05',
10684             'ok'                    => '1.301001_075',
10685             'overload'              => '1.24',
10686             're'                    => '0.28',
10687             'warnings'              => '1.29',
10688         },
10689         removed => {
10690         }
10691     },
10692     5.021007 => {
10693         delta_from => 5.021006,
10694         changed => {
10695             'Archive::Tar'          => '2.04',
10696             'Archive::Tar::Constant'=> '2.04',
10697             'Archive::Tar::File'    => '2.04',
10698             'B'                     => '1.54',
10699             'B::Concise'            => '0.996',
10700             'B::Deparse'            => '1.31',
10701             'B::Op_private'         => '5.021007',
10702             'B::Showlex'            => '1.05',
10703             'Compress::Raw::Bzip2'  => '2.067',
10704             'Compress::Raw::Zlib'   => '2.067',
10705             'Compress::Zlib'        => '2.067',
10706             'Config'                => '5.021007',
10707             'Cwd'                   => '3.54',
10708             'DB_File'               => '1.834',
10709             'Data::Dumper'          => '2.155',
10710             'Devel::PPPort'         => '3.25',
10711             'Devel::Peek'           => '1.20',
10712             'DynaLoader'            => '1.29',
10713             'Encode'                => '2.67',
10714             'Errno'                 => '1.22',
10715             'ExtUtils::CBuilder'    => '0.280221',
10716             'ExtUtils::CBuilder::Base'=> '0.280221',
10717             'ExtUtils::CBuilder::Platform::Unix'=> '0.280221',
10718             'ExtUtils::CBuilder::Platform::VMS'=> '0.280221',
10719             'ExtUtils::CBuilder::Platform::Windows'=> '0.280221',
10720             'ExtUtils::CBuilder::Platform::aix'=> '0.280221',
10721             'ExtUtils::CBuilder::Platform::android'=> '0.280221',
10722             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280221',
10723             'ExtUtils::CBuilder::Platform::darwin'=> '0.280221',
10724             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280221',
10725             'ExtUtils::CBuilder::Platform::os2'=> '0.280221',
10726             'ExtUtils::Command::MM' => '7.04',
10727             'ExtUtils::Liblist'     => '7.04',
10728             'ExtUtils::Liblist::Kid'=> '7.04',
10729             'ExtUtils::MM'          => '7.04',
10730             'ExtUtils::MM_AIX'      => '7.04',
10731             'ExtUtils::MM_Any'      => '7.04',
10732             'ExtUtils::MM_BeOS'     => '7.04',
10733             'ExtUtils::MM_Cygwin'   => '7.04',
10734             'ExtUtils::MM_DOS'      => '7.04',
10735             'ExtUtils::MM_Darwin'   => '7.04',
10736             'ExtUtils::MM_MacOS'    => '7.04',
10737             'ExtUtils::MM_NW5'      => '7.04',
10738             'ExtUtils::MM_OS2'      => '7.04',
10739             'ExtUtils::MM_QNX'      => '7.04',
10740             'ExtUtils::MM_UWIN'     => '7.04',
10741             'ExtUtils::MM_Unix'     => '7.04',
10742             'ExtUtils::MM_VMS'      => '7.04',
10743             'ExtUtils::MM_VOS'      => '7.04',
10744             'ExtUtils::MM_Win32'    => '7.04',
10745             'ExtUtils::MM_Win95'    => '7.04',
10746             'ExtUtils::MY'          => '7.04',
10747             'ExtUtils::MakeMaker'   => '7.04',
10748             'ExtUtils::MakeMaker::Config'=> '7.04',
10749             'ExtUtils::MakeMaker::Locale'=> '7.04',
10750             'ExtUtils::MakeMaker::version'=> '7.04',
10751             'ExtUtils::MakeMaker::version::regex'=> '7.04',
10752             'ExtUtils::MakeMaker::version::vpp'=> '7.04',
10753             'ExtUtils::Mkbootstrap' => '7.04',
10754             'ExtUtils::Mksymlists'  => '7.04',
10755             'ExtUtils::ParseXS'     => '3.27',
10756             'ExtUtils::ParseXS::Constants'=> '3.27',
10757             'ExtUtils::ParseXS::CountLines'=> '3.27',
10758             'ExtUtils::ParseXS::Eval'=> '3.27',
10759             'ExtUtils::ParseXS::Utilities'=> '3.27',
10760             'ExtUtils::testlib'     => '7.04',
10761             'File::Spec'            => '3.53',
10762             'File::Spec::Cygwin'    => '3.54',
10763             'File::Spec::Epoc'      => '3.54',
10764             'File::Spec::Functions' => '3.54',
10765             'File::Spec::Mac'       => '3.54',
10766             'File::Spec::OS2'       => '3.54',
10767             'File::Spec::Unix'      => '3.54',
10768             'File::Spec::VMS'       => '3.54',
10769             'File::Spec::Win32'     => '3.54',
10770             'Filter::Util::Call'    => '1.51',
10771             'HTTP::Tiny'            => '0.053',
10772             'IO'                    => '1.35',
10773             'IO::Compress::Adapter::Bzip2'=> '2.067',
10774             'IO::Compress::Adapter::Deflate'=> '2.067',
10775             'IO::Compress::Adapter::Identity'=> '2.067',
10776             'IO::Compress::Base'    => '2.067',
10777             'IO::Compress::Base::Common'=> '2.067',
10778             'IO::Compress::Bzip2'   => '2.067',
10779             'IO::Compress::Deflate' => '2.067',
10780             'IO::Compress::Gzip'    => '2.067',
10781             'IO::Compress::Gzip::Constants'=> '2.067',
10782             'IO::Compress::RawDeflate'=> '2.067',
10783             'IO::Compress::Zip'     => '2.067',
10784             'IO::Compress::Zip::Constants'=> '2.067',
10785             'IO::Compress::Zlib::Constants'=> '2.067',
10786             'IO::Compress::Zlib::Extra'=> '2.067',
10787             'IO::Socket::IP'        => '0.34',
10788             'IO::Uncompress::Adapter::Bunzip2'=> '2.067',
10789             'IO::Uncompress::Adapter::Identity'=> '2.067',
10790             'IO::Uncompress::Adapter::Inflate'=> '2.067',
10791             'IO::Uncompress::AnyInflate'=> '2.067',
10792             'IO::Uncompress::AnyUncompress'=> '2.067',
10793             'IO::Uncompress::Base'  => '2.067',
10794             'IO::Uncompress::Bunzip2'=> '2.067',
10795             'IO::Uncompress::Gunzip'=> '2.067',
10796             'IO::Uncompress::Inflate'=> '2.067',
10797             'IO::Uncompress::RawInflate'=> '2.067',
10798             'IO::Uncompress::Unzip' => '2.067',
10799             'Locale::Codes'         => '3.33',
10800             'Locale::Codes::Constants'=> '3.33',
10801             'Locale::Codes::Country'=> '3.33',
10802             'Locale::Codes::Country_Codes'=> '3.33',
10803             'Locale::Codes::Country_Retired'=> '3.33',
10804             'Locale::Codes::Currency'=> '3.33',
10805             'Locale::Codes::Currency_Codes'=> '3.33',
10806             'Locale::Codes::Currency_Retired'=> '3.33',
10807             'Locale::Codes::LangExt'=> '3.33',
10808             'Locale::Codes::LangExt_Codes'=> '3.33',
10809             'Locale::Codes::LangExt_Retired'=> '3.33',
10810             'Locale::Codes::LangFam'=> '3.33',
10811             'Locale::Codes::LangFam_Codes'=> '3.33',
10812             'Locale::Codes::LangFam_Retired'=> '3.33',
10813             'Locale::Codes::LangVar'=> '3.33',
10814             'Locale::Codes::LangVar_Codes'=> '3.33',
10815             'Locale::Codes::LangVar_Retired'=> '3.33',
10816             'Locale::Codes::Language'=> '3.33',
10817             'Locale::Codes::Language_Codes'=> '3.33',
10818             'Locale::Codes::Language_Retired'=> '3.33',
10819             'Locale::Codes::Script' => '3.33',
10820             'Locale::Codes::Script_Codes'=> '3.33',
10821             'Locale::Codes::Script_Retired'=> '3.33',
10822             'Locale::Country'       => '3.33',
10823             'Locale::Currency'      => '3.33',
10824             'Locale::Language'      => '3.33',
10825             'Locale::Maketext'      => '1.26',
10826             'Locale::Script'        => '3.33',
10827             'Module::CoreList'      => '5.20141220',
10828             'Module::CoreList::TieHashDelta'=> '5.20141220',
10829             'Module::CoreList::Utils'=> '5.20141220',
10830             'NDBM_File'             => '1.14',
10831             'Net::Cmd'              => '3.04',
10832             'Net::Config'           => '3.04',
10833             'Net::Domain'           => '3.04',
10834             'Net::FTP'              => '3.04',
10835             'Net::FTP::A'           => '3.04',
10836             'Net::FTP::E'           => '3.04',
10837             'Net::FTP::I'           => '3.04',
10838             'Net::FTP::L'           => '3.04',
10839             'Net::FTP::dataconn'    => '3.04',
10840             'Net::NNTP'             => '3.04',
10841             'Net::Netrc'            => '3.04',
10842             'Net::POP3'             => '3.04',
10843             'Net::SMTP'             => '3.04',
10844             'Net::Time'             => '3.04',
10845             'Opcode'                => '1.30',
10846             'POSIX'                 => '1.48',
10847             'PerlIO::scalar'        => '0.21',
10848             'Pod::Escapes'          => '1.07',
10849             'SDBM_File'             => '1.12',
10850             'Storable'              => '2.52',
10851             'Sys::Hostname'         => '1.20',
10852             'Test::Builder'         => '1.301001_090',
10853             'Test::Builder::Module' => '1.301001_090',
10854             'Test::Builder::Tester' => '1.301001_090',
10855             'Test::Builder::Tester::Color'=> '1.301001_090',
10856             'Test::CanFork'         => undef,
10857             'Test::CanThread'       => undef,
10858             'Test::More'            => '1.301001_090',
10859             'Test::Simple'          => '1.301001_090',
10860             'Test::Stream'          => '1.301001_090',
10861             'Test::Stream::API'     => undef,
10862             'Test::Stream::ForceExit'=> undef,
10863             'Test::Stream::Subtest' => undef,
10864             'Test::Tester'          => '1.301001_090',
10865             'Test::use::ok'         => '1.301001_090',
10866             'Unicode::Collate'      => '1.09',
10867             'Unicode::Collate::CJK::Big5'=> '1.09',
10868             'Unicode::Collate::CJK::GB2312'=> '1.09',
10869             'Unicode::Collate::CJK::JISX0208'=> '1.09',
10870             'Unicode::Collate::CJK::Korean'=> '1.09',
10871             'Unicode::Collate::CJK::Pinyin'=> '1.09',
10872             'Unicode::Collate::CJK::Stroke'=> '1.09',
10873             'Unicode::Collate::CJK::Zhuyin'=> '1.09',
10874             'Unicode::Collate::Locale'=> '1.09',
10875             'XS::APItest'           => '0.69',
10876             'XSLoader'              => '0.20',
10877             '_charnames'            => '1.43',
10878             'arybase'               => '0.09',
10879             'charnames'             => '1.43',
10880             'feature'               => '1.39',
10881             'mro'                   => '1.17',
10882             'ok'                    => '1.301001_090',
10883             'strict'                => '1.09',
10884             'threads'               => '1.96_001',
10885         },
10886         removed => {
10887         }
10888     },
10889     5.021008 => {
10890         delta_from => 5.021007,
10891         changed => {
10892             'App::Prove'            => '3.35',
10893             'App::Prove::State'     => '3.35',
10894             'App::Prove::State::Result'=> '3.35',
10895             'App::Prove::State::Result::Test'=> '3.35',
10896             'B'                     => '1.55',
10897             'B::Deparse'            => '1.32',
10898             'B::Op_private'         => '5.021008',
10899             'CPAN::Meta::Requirements'=> '2.131',
10900             'Compress::Raw::Bzip2'  => '2.068',
10901             'Compress::Raw::Zlib'   => '2.068',
10902             'Compress::Zlib'        => '2.068',
10903             'Config'                => '5.021008',
10904             'DB_File'               => '1.835',
10905             'Data::Dumper'          => '2.156',
10906             'Devel::PPPort'         => '3.28',
10907             'Devel::Peek'           => '1.21',
10908             'Digest::MD5'           => '2.54',
10909             'Digest::SHA'           => '5.95',
10910             'DynaLoader'            => '1.30',
10911             'ExtUtils::Command'     => '1.20',
10912             'ExtUtils::Manifest'    => '1.70',
10913             'Fatal'                 => '2.26',
10914             'File::Glob'            => '1.24',
10915             'Filter::Util::Call'    => '1.54',
10916             'Getopt::Long'          => '2.43',
10917             'IO::Compress::Adapter::Bzip2'=> '2.068',
10918             'IO::Compress::Adapter::Deflate'=> '2.068',
10919             'IO::Compress::Adapter::Identity'=> '2.068',
10920             'IO::Compress::Base'    => '2.068',
10921             'IO::Compress::Base::Common'=> '2.068',
10922             'IO::Compress::Bzip2'   => '2.068',
10923             'IO::Compress::Deflate' => '2.068',
10924             'IO::Compress::Gzip'    => '2.068',
10925             'IO::Compress::Gzip::Constants'=> '2.068',
10926             'IO::Compress::RawDeflate'=> '2.068',
10927             'IO::Compress::Zip'     => '2.068',
10928             'IO::Compress::Zip::Constants'=> '2.068',
10929             'IO::Compress::Zlib::Constants'=> '2.068',
10930             'IO::Compress::Zlib::Extra'=> '2.068',
10931             'IO::Socket::IP'        => '0.36',
10932             'IO::Uncompress::Adapter::Bunzip2'=> '2.068',
10933             'IO::Uncompress::Adapter::Identity'=> '2.068',
10934             'IO::Uncompress::Adapter::Inflate'=> '2.068',
10935             'IO::Uncompress::AnyInflate'=> '2.068',
10936             'IO::Uncompress::AnyUncompress'=> '2.068',
10937             'IO::Uncompress::Base'  => '2.068',
10938             'IO::Uncompress::Bunzip2'=> '2.068',
10939             'IO::Uncompress::Gunzip'=> '2.068',
10940             'IO::Uncompress::Inflate'=> '2.068',
10941             'IO::Uncompress::RawInflate'=> '2.068',
10942             'IO::Uncompress::Unzip' => '2.068',
10943             'MIME::Base64'          => '3.15',
10944             'Module::CoreList'      => '5.20150220',
10945             'Module::CoreList::TieHashDelta'=> '5.20150220',
10946             'Module::CoreList::Utils'=> '5.20150220',
10947             'Module::Load::Conditional'=> '0.64',
10948             'Module::Metadata'      => '1.000026',
10949             'Net::Cmd'              => '3.05',
10950             'Net::Config'           => '3.05',
10951             'Net::Domain'           => '3.05',
10952             'Net::FTP'              => '3.05',
10953             'Net::FTP::A'           => '3.05',
10954             'Net::FTP::E'           => '3.05',
10955             'Net::FTP::I'           => '3.05',
10956             'Net::FTP::L'           => '3.05',
10957             'Net::FTP::dataconn'    => '3.05',
10958             'Net::NNTP'             => '3.05',
10959             'Net::Netrc'            => '3.05',
10960             'Net::POP3'             => '3.05',
10961             'Net::SMTP'             => '3.05',
10962             'Net::Time'             => '3.05',
10963             'Opcode'                => '1.31',
10964             'POSIX'                 => '1.49',
10965             'PerlIO::encoding'      => '0.21',
10966             'Pod::Simple'           => '3.29',
10967             'Pod::Simple::BlackBox' => '3.29',
10968             'Pod::Simple::Checker'  => '3.29',
10969             'Pod::Simple::Debug'    => '3.29',
10970             'Pod::Simple::DumpAsText'=> '3.29',
10971             'Pod::Simple::DumpAsXML'=> '3.29',
10972             'Pod::Simple::HTML'     => '3.29',
10973             'Pod::Simple::HTMLBatch'=> '3.29',
10974             'Pod::Simple::LinkSection'=> '3.29',
10975             'Pod::Simple::Methody'  => '3.29',
10976             'Pod::Simple::Progress' => '3.29',
10977             'Pod::Simple::PullParser'=> '3.29',
10978             'Pod::Simple::PullParserEndToken'=> '3.29',
10979             'Pod::Simple::PullParserStartToken'=> '3.29',
10980             'Pod::Simple::PullParserTextToken'=> '3.29',
10981             'Pod::Simple::PullParserToken'=> '3.29',
10982             'Pod::Simple::RTF'      => '3.29',
10983             'Pod::Simple::Search'   => '3.29',
10984             'Pod::Simple::SimpleTree'=> '3.29',
10985             'Pod::Simple::Text'     => '3.29',
10986             'Pod::Simple::TextContent'=> '3.29',
10987             'Pod::Simple::TiedOutFH'=> '3.29',
10988             'Pod::Simple::Transcode'=> '3.29',
10989             'Pod::Simple::TranscodeDumb'=> '3.29',
10990             'Pod::Simple::TranscodeSmart'=> '3.29',
10991             'Pod::Simple::XHTML'    => '3.29',
10992             'Pod::Simple::XMLOutStream'=> '3.29',
10993             'SDBM_File'             => '1.13',
10994             'Safe'                  => '2.39',
10995             'TAP::Base'             => '3.35',
10996             'TAP::Formatter::Base'  => '3.35',
10997             'TAP::Formatter::Color' => '3.35',
10998             'TAP::Formatter::Console'=> '3.35',
10999             'TAP::Formatter::Console::ParallelSession'=> '3.35',
11000             'TAP::Formatter::Console::Session'=> '3.35',
11001             'TAP::Formatter::File'  => '3.35',
11002             'TAP::Formatter::File::Session'=> '3.35',
11003             'TAP::Formatter::Session'=> '3.35',
11004             'TAP::Harness'          => '3.35',
11005             'TAP::Harness::Env'     => '3.35',
11006             'TAP::Object'           => '3.35',
11007             'TAP::Parser'           => '3.35',
11008             'TAP::Parser::Aggregator'=> '3.35',
11009             'TAP::Parser::Grammar'  => '3.35',
11010             'TAP::Parser::Iterator' => '3.35',
11011             'TAP::Parser::Iterator::Array'=> '3.35',
11012             'TAP::Parser::Iterator::Process'=> '3.35',
11013             'TAP::Parser::Iterator::Stream'=> '3.35',
11014             'TAP::Parser::IteratorFactory'=> '3.35',
11015             'TAP::Parser::Multiplexer'=> '3.35',
11016             'TAP::Parser::Result'   => '3.35',
11017             'TAP::Parser::Result::Bailout'=> '3.35',
11018             'TAP::Parser::Result::Comment'=> '3.35',
11019             'TAP::Parser::Result::Plan'=> '3.35',
11020             'TAP::Parser::Result::Pragma'=> '3.35',
11021             'TAP::Parser::Result::Test'=> '3.35',
11022             'TAP::Parser::Result::Unknown'=> '3.35',
11023             'TAP::Parser::Result::Version'=> '3.35',
11024             'TAP::Parser::Result::YAML'=> '3.35',
11025             'TAP::Parser::ResultFactory'=> '3.35',
11026             'TAP::Parser::Scheduler'=> '3.35',
11027             'TAP::Parser::Scheduler::Job'=> '3.35',
11028             'TAP::Parser::Scheduler::Spinner'=> '3.35',
11029             'TAP::Parser::Source'   => '3.35',
11030             'TAP::Parser::SourceHandler'=> '3.35',
11031             'TAP::Parser::SourceHandler::Executable'=> '3.35',
11032             'TAP::Parser::SourceHandler::File'=> '3.35',
11033             'TAP::Parser::SourceHandler::Handle'=> '3.35',
11034             'TAP::Parser::SourceHandler::Perl'=> '3.35',
11035             'TAP::Parser::SourceHandler::RawTAP'=> '3.35',
11036             'TAP::Parser::YAMLish::Reader'=> '3.35',
11037             'TAP::Parser::YAMLish::Writer'=> '3.35',
11038             'Test::Builder'         => '1.301001_097',
11039             'Test::Builder::Module' => '1.301001_097',
11040             'Test::Builder::Tester' => '1.301001_097',
11041             'Test::Builder::Tester::Color'=> '1.301001_097',
11042             'Test::Harness'         => '3.35',
11043             'Test::More'            => '1.301001_097',
11044             'Test::Simple'          => '1.301001_097',
11045             'Test::Stream'          => '1.301001_097',
11046             'Test::Stream::Block'   => undef,
11047             'Test::Tester'          => '1.301001_097',
11048             'Test::Tester::CaptureRunner'=> undef,
11049             'Test::Tester::Delegate'=> undef,
11050             'Test::use::ok'         => '1.301001_097',
11051             'Unicode::Collate'      => '1.10',
11052             'Unicode::Collate::CJK::Big5'=> '1.10',
11053             'Unicode::Collate::CJK::GB2312'=> '1.10',
11054             'Unicode::Collate::CJK::JISX0208'=> '1.10',
11055             'Unicode::Collate::CJK::Korean'=> '1.10',
11056             'Unicode::Collate::CJK::Pinyin'=> '1.10',
11057             'Unicode::Collate::CJK::Stroke'=> '1.10',
11058             'Unicode::Collate::CJK::Zhuyin'=> '1.10',
11059             'Unicode::Collate::Locale'=> '1.10',
11060             'VMS::DCLsym'           => '1.06',
11061             'XS::APItest'           => '0.70',
11062             'arybase'               => '0.10',
11063             'attributes'            => '0.25',
11064             'autodie'               => '2.26',
11065             'autodie::Scope::Guard' => '2.26',
11066             'autodie::Scope::GuardStack'=> '2.26',
11067             'autodie::ScopeUtil'    => '2.26',
11068             'autodie::exception'    => '2.26',
11069             'autodie::exception::system'=> '2.26',
11070             'autodie::hints'        => '2.26',
11071             'autodie::skip'         => '2.26',
11072             'ok'                    => '1.301001_097',
11073             're'                    => '0.30',
11074             'warnings'              => '1.30',
11075         },
11076         removed => {
11077         }
11078     },
11079     5.020002 => {
11080         delta_from => 5.020001,
11081         changed => {
11082             'CPAN::Author'          => '5.5002',
11083             'CPAN::CacheMgr'        => '5.5002',
11084             'CPAN::FTP'             => '5.5006',
11085             'CPAN::HTTP::Client'    => '1.9601',
11086             'CPAN::HandleConfig'    => '5.5005',
11087             'CPAN::Index'           => '1.9601',
11088             'CPAN::LWP::UserAgent'  => '1.9601',
11089             'CPAN::Mirrors'         => '1.9601',
11090             'Config'                => '5.020002',
11091             'Cwd'                   => '3.48_01',
11092             'Data::Dumper'          => '2.151_01',
11093             'Errno'                 => '1.20_05',
11094             'File::Spec'            => '3.48_01',
11095             'File::Spec::Cygwin'    => '3.48_01',
11096             'File::Spec::Epoc'      => '3.48_01',
11097             'File::Spec::Functions' => '3.48_01',
11098             'File::Spec::Mac'       => '3.48_01',
11099             'File::Spec::OS2'       => '3.48_01',
11100             'File::Spec::Unix'      => '3.48_01',
11101             'File::Spec::VMS'       => '3.48_01',
11102             'File::Spec::Win32'     => '3.48_01',
11103             'IO::Socket'            => '1.38',
11104             'Module::CoreList'      => '5.20150214',
11105             'Module::CoreList::TieHashDelta'=> '5.20150214',
11106             'Module::CoreList::Utils'=> '5.20150214',
11107             'PerlIO::scalar'        => '0.18_01',
11108             'Pod::PlainText'        => '2.07',
11109             'Storable'              => '2.49_01',
11110             'VMS::DCLsym'           => '1.05_01',
11111             'VMS::Stdio'            => '2.41',
11112             'attributes'            => '0.23',
11113             'feature'               => '1.36_01',
11114         },
11115         removed => {
11116         }
11117     },
11118     5.021009 => {
11119         delta_from => 5.021008,
11120         changed => {
11121             'B'                     => '1.56',
11122             'B::Debug'              => '1.23',
11123             'B::Deparse'            => '1.33',
11124             'B::Op_private'         => '5.021009',
11125             'Benchmark'             => '1.20',
11126             'CPAN::Author'          => '5.5002',
11127             'CPAN::CacheMgr'        => '5.5002',
11128             'CPAN::FTP'             => '5.5006',
11129             'CPAN::HTTP::Client'    => '1.9601',
11130             'CPAN::HandleConfig'    => '5.5005',
11131             'CPAN::Index'           => '1.9601',
11132             'CPAN::LWP::UserAgent'  => '1.9601',
11133             'CPAN::Meta::Requirements'=> '2.132',
11134             'CPAN::Mirrors'         => '1.9601',
11135             'Carp'                  => '1.35',
11136             'Carp::Heavy'           => '1.35',
11137             'Config'                => '5.021009',
11138             'Config::Perl::V'       => '0.23',
11139             'Data::Dumper'          => '2.157',
11140             'Devel::Peek'           => '1.22',
11141             'DynaLoader'            => '1.31',
11142             'Encode'                => '2.70',
11143             'Encode::MIME::Header'  => '2.16',
11144             'Errno'                 => '1.23',
11145             'ExtUtils::Miniperl'    => '1.04',
11146             'HTTP::Tiny'            => '0.054',
11147             'Module::CoreList'      => '5.20150220',
11148             'Module::CoreList::TieHashDelta'=> '5.20150220',
11149             'Module::CoreList::Utils'=> '5.20150220',
11150             'Opcode'                => '1.32',
11151             'POSIX'                 => '1.51',
11152             'Perl::OSType'          => '1.008',
11153             'PerlIO::scalar'        => '0.22',
11154             'Pod::Find'             => '1.63',
11155             'Pod::InputObjects'     => '1.63',
11156             'Pod::ParseUtils'       => '1.63',
11157             'Pod::Parser'           => '1.63',
11158             'Pod::Perldoc'          => '3.25',
11159             'Pod::Perldoc::BaseTo'  => '3.25',
11160             'Pod::Perldoc::GetOptsOO'=> '3.25',
11161             'Pod::Perldoc::ToANSI'  => '3.25',
11162             'Pod::Perldoc::ToChecker'=> '3.25',
11163             'Pod::Perldoc::ToMan'   => '3.25',
11164             'Pod::Perldoc::ToNroff' => '3.25',
11165             'Pod::Perldoc::ToPod'   => '3.25',
11166             'Pod::Perldoc::ToRtf'   => '3.25',
11167             'Pod::Perldoc::ToTerm'  => '3.25',
11168             'Pod::Perldoc::ToText'  => '3.25',
11169             'Pod::Perldoc::ToTk'    => '3.25',
11170             'Pod::Perldoc::ToXml'   => '3.25',
11171             'Pod::PlainText'        => '2.07',
11172             'Pod::Select'           => '1.63',
11173             'Socket'                => '2.018',
11174             'Storable'              => '2.53',
11175             'Test::Builder'         => '1.301001_098',
11176             'Test::Builder::Module' => '1.301001_098',
11177             'Test::Builder::Tester' => '1.301001_098',
11178             'Test::Builder::Tester::Color'=> '1.301001_098',
11179             'Test::More'            => '1.301001_098',
11180             'Test::Simple'          => '1.301001_098',
11181             'Test::Stream'          => '1.301001_098',
11182             'Test::Tester'          => '1.301001_098',
11183             'Test::use::ok'         => '1.301001_098',
11184             'Unicode::Collate'      => '1.11',
11185             'Unicode::Collate::CJK::Big5'=> '1.11',
11186             'Unicode::Collate::CJK::GB2312'=> '1.11',
11187             'Unicode::Collate::CJK::JISX0208'=> '1.11',
11188             'Unicode::Collate::CJK::Korean'=> '1.11',
11189             'Unicode::Collate::CJK::Pinyin'=> '1.11',
11190             'Unicode::Collate::CJK::Stroke'=> '1.11',
11191             'Unicode::Collate::CJK::Zhuyin'=> '1.11',
11192             'Unicode::Collate::Locale'=> '1.11',
11193             'Unicode::UCD'          => '0.61',
11194             'VMS::Stdio'            => '2.41',
11195             'Win32'                 => '0.51',
11196             'Win32API::File'        => '0.1202',
11197             'attributes'            => '0.26',
11198             'bigint'                => '0.39',
11199             'bignum'                => '0.39',
11200             'bigrat'                => '0.39',
11201             'constant'              => '1.33',
11202             'encoding'              => '2.13',
11203             'feature'               => '1.40',
11204             'ok'                    => '1.301001_098',
11205             'overload'              => '1.25',
11206             'perlfaq'               => '5.021009',
11207             're'                    => '0.31',
11208             'threads::shared'       => '1.48',
11209             'warnings'              => '1.31',
11210         },
11211         removed => {
11212         }
11213     },
11214     5.021010 => {
11215         delta_from => 5.021009,
11216         changed => {
11217             'App::Cpan'             => '1.63',
11218             'B'                     => '1.57',
11219             'B::Deparse'            => '1.34',
11220             'B::Op_private'         => '5.021010',
11221             'Benchmark'             => '1.2',
11222             'CPAN'                  => '2.10',
11223             'CPAN::Distribution'    => '2.04',
11224             'CPAN::FirstTime'       => '5.5307',
11225             'CPAN::HTTP::Credentials'=> '1.9601',
11226             'CPAN::HandleConfig'    => '5.5006',
11227             'CPAN::Meta'            => '2.150001',
11228             'CPAN::Meta::Converter' => '2.150001',
11229             'CPAN::Meta::Feature'   => '2.150001',
11230             'CPAN::Meta::History'   => '2.150001',
11231             'CPAN::Meta::Merge'     => '2.150001',
11232             'CPAN::Meta::Prereqs'   => '2.150001',
11233             'CPAN::Meta::Spec'      => '2.150001',
11234             'CPAN::Meta::Validator' => '2.150001',
11235             'CPAN::Module'          => '5.5002',
11236             'CPAN::Plugin'          => '0.95',
11237             'CPAN::Plugin::Specfile'=> '0.01',
11238             'CPAN::Shell'           => '5.5005',
11239             'Carp'                  => '1.36',
11240             'Carp::Heavy'           => '1.36',
11241             'Config'                => '5.02101',
11242             'Cwd'                   => '3.55',
11243             'DB'                    => '1.08',
11244             'Data::Dumper'          => '2.158',
11245             'Devel::PPPort'         => '3.31',
11246             'DynaLoader'            => '1.32',
11247             'Encode'                => '2.72',
11248             'Encode::Alias'         => '2.19',
11249             'File::Spec'            => '3.55',
11250             'File::Spec::Cygwin'    => '3.55',
11251             'File::Spec::Epoc'      => '3.55',
11252             'File::Spec::Functions' => '3.55',
11253             'File::Spec::Mac'       => '3.55',
11254             'File::Spec::OS2'       => '3.55',
11255             'File::Spec::Unix'      => '3.55',
11256             'File::Spec::VMS'       => '3.55',
11257             'File::Spec::Win32'     => '3.55',
11258             'Getopt::Long'          => '2.45',
11259             'Locale::Codes'         => '3.34',
11260             'Locale::Codes::Constants'=> '3.34',
11261             'Locale::Codes::Country'=> '3.34',
11262             'Locale::Codes::Country_Codes'=> '3.34',
11263             'Locale::Codes::Country_Retired'=> '3.34',
11264             'Locale::Codes::Currency'=> '3.34',
11265             'Locale::Codes::Currency_Codes'=> '3.34',
11266             'Locale::Codes::Currency_Retired'=> '3.34',
11267             'Locale::Codes::LangExt'=> '3.34',
11268             'Locale::Codes::LangExt_Codes'=> '3.34',
11269             'Locale::Codes::LangExt_Retired'=> '3.34',
11270             'Locale::Codes::LangFam'=> '3.34',
11271             'Locale::Codes::LangFam_Codes'=> '3.34',
11272             'Locale::Codes::LangFam_Retired'=> '3.34',
11273             'Locale::Codes::LangVar'=> '3.34',
11274             'Locale::Codes::LangVar_Codes'=> '3.34',
11275             'Locale::Codes::LangVar_Retired'=> '3.34',
11276             'Locale::Codes::Language'=> '3.34',
11277             'Locale::Codes::Language_Codes'=> '3.34',
11278             'Locale::Codes::Language_Retired'=> '3.34',
11279             'Locale::Codes::Script' => '3.34',
11280             'Locale::Codes::Script_Codes'=> '3.34',
11281             'Locale::Codes::Script_Retired'=> '3.34',
11282             'Locale::Country'       => '3.34',
11283             'Locale::Currency'      => '3.34',
11284             'Locale::Language'      => '3.34',
11285             'Locale::Script'        => '3.34',
11286             'Module::CoreList'      => '5.20150320',
11287             'Module::CoreList::TieHashDelta'=> '5.20150320',
11288             'Module::CoreList::Utils'=> '5.20150320',
11289             'POSIX'                 => '1.52',
11290             'Pod::Functions'        => '1.09',
11291             'Pod::Functions::Functions'=> '1.09',
11292             'Term::Complete'        => '1.403',
11293             'Test::Builder'         => '1.001014',
11294             'Test::Builder::IO::Scalar'=> '2.113',
11295             'Test::Builder::Module' => '1.001014',
11296             'Test::Builder::Tester' => '1.28',
11297             'Test::Builder::Tester::Color'=> '1.290001',
11298             'Test::More'            => '1.001014',
11299             'Test::Simple'          => '1.001014',
11300             'Test::Tester'          => '0.114',
11301             'Test::use::ok'         => '0.16',
11302             'Text::Balanced'        => '2.03',
11303             'Text::ParseWords'      => '3.30',
11304             'Unicode::Collate'      => '1.12',
11305             'Unicode::Collate::CJK::Big5'=> '1.12',
11306             'Unicode::Collate::CJK::GB2312'=> '1.12',
11307             'Unicode::Collate::CJK::JISX0208'=> '1.12',
11308             'Unicode::Collate::CJK::Korean'=> '1.12',
11309             'Unicode::Collate::CJK::Pinyin'=> '1.12',
11310             'Unicode::Collate::CJK::Stroke'=> '1.12',
11311             'Unicode::Collate::CJK::Zhuyin'=> '1.12',
11312             'Unicode::Collate::Locale'=> '1.12',
11313             'XS::APItest'           => '0.71',
11314             'encoding'              => '2.14',
11315             'locale'                => '1.06',
11316             'meta_notation'         => undef,
11317             'ok'                    => '0.16',
11318             'parent'                => '0.232',
11319             're'                    => '0.32',
11320             'sigtrap'               => '1.08',
11321             'threads'               => '2.01',
11322             'utf8'                  => '1.15',
11323         },
11324         removed => {
11325             'Test::CanFork'         => 1,
11326             'Test::CanThread'       => 1,
11327             'Test::More::DeepCheck' => 1,
11328             'Test::More::DeepCheck::Strict'=> 1,
11329             'Test::More::DeepCheck::Tolerant'=> 1,
11330             'Test::More::Tools'     => 1,
11331             'Test::MostlyLike'      => 1,
11332             'Test::Stream'          => 1,
11333             'Test::Stream::API'     => 1,
11334             'Test::Stream::ArrayBase'=> 1,
11335             'Test::Stream::ArrayBase::Meta'=> 1,
11336             'Test::Stream::Block'   => 1,
11337             'Test::Stream::Carp'    => 1,
11338             'Test::Stream::Context' => 1,
11339             'Test::Stream::Event'   => 1,
11340             'Test::Stream::Event::Bail'=> 1,
11341             'Test::Stream::Event::Child'=> 1,
11342             'Test::Stream::Event::Diag'=> 1,
11343             'Test::Stream::Event::Finish'=> 1,
11344             'Test::Stream::Event::Note'=> 1,
11345             'Test::Stream::Event::Ok'=> 1,
11346             'Test::Stream::Event::Plan'=> 1,
11347             'Test::Stream::Event::Subtest'=> 1,
11348             'Test::Stream::ExitMagic'=> 1,
11349             'Test::Stream::ExitMagic::Context'=> 1,
11350             'Test::Stream::Exporter'=> 1,
11351             'Test::Stream::Exporter::Meta'=> 1,
11352             'Test::Stream::ForceExit'=> 1,
11353             'Test::Stream::IOSets'  => 1,
11354             'Test::Stream::Meta'    => 1,
11355             'Test::Stream::PackageUtil'=> 1,
11356             'Test::Stream::Subtest' => 1,
11357             'Test::Stream::Tester'  => 1,
11358             'Test::Stream::Tester::Checks'=> 1,
11359             'Test::Stream::Tester::Checks::Event'=> 1,
11360             'Test::Stream::Tester::Events'=> 1,
11361             'Test::Stream::Tester::Events::Event'=> 1,
11362             'Test::Stream::Tester::Grab'=> 1,
11363             'Test::Stream::Threads' => 1,
11364             'Test::Stream::Toolset' => 1,
11365             'Test::Stream::Util'    => 1,
11366         }
11367     },
11368     5.021011 => {
11369         delta_from => 5.021010,
11370         changed => {
11371             'B'                     => '1.58',
11372             'B::Deparse'            => '1.35',
11373             'B::Op_private'         => '5.021011',
11374             'CPAN'                  => '2.11',
11375             'Config'                => '5.021011',
11376             'Config::Perl::V'       => '0.24',
11377             'Cwd'                   => '3.56',
11378             'ExtUtils::Miniperl'    => '1.05',
11379             'ExtUtils::ParseXS'     => '3.28',
11380             'ExtUtils::ParseXS::Constants'=> '3.28',
11381             'ExtUtils::ParseXS::CountLines'=> '3.28',
11382             'ExtUtils::ParseXS::Eval'=> '3.28',
11383             'ExtUtils::ParseXS::Utilities'=> '3.28',
11384             'ExtUtils::Typemaps'    => '3.28',
11385             'ExtUtils::Typemaps::Cmd'=> '3.28',
11386             'ExtUtils::Typemaps::InputMap'=> '3.28',
11387             'ExtUtils::Typemaps::OutputMap'=> '3.28',
11388             'ExtUtils::Typemaps::Type'=> '3.28',
11389             'File::Spec'            => '3.56',
11390             'File::Spec::Cygwin'    => '3.56',
11391             'File::Spec::Epoc'      => '3.56',
11392             'File::Spec::Functions' => '3.56',
11393             'File::Spec::Mac'       => '3.56',
11394             'File::Spec::OS2'       => '3.56',
11395             'File::Spec::Unix'      => '3.56',
11396             'File::Spec::VMS'       => '3.56',
11397             'File::Spec::Win32'     => '3.56',
11398             'IO::Socket::IP'        => '0.37',
11399             'Module::CoreList'      => '5.20150420',
11400             'Module::CoreList::TieHashDelta'=> '5.20150420',
11401             'Module::CoreList::Utils'=> '5.20150420',
11402             'PerlIO::mmap'          => '0.014',
11403             'XS::APItest'           => '0.72',
11404             'attributes'            => '0.27',
11405             'if'                    => '0.0604',
11406             'utf8'                  => '1.16',
11407             'warnings'              => '1.32',
11408         },
11409         removed => {
11410         }
11411     },
11412     5.022000 => {
11413         delta_from => 5.021011,
11414         changed => {
11415             'B::Op_private'         => '5.022000',
11416             'Config'                => '5.022',
11417             'ExtUtils::Command::MM' => '7.04_01',
11418             'ExtUtils::Liblist'     => '7.04_01',
11419             'ExtUtils::Liblist::Kid'=> '7.04_01',
11420             'ExtUtils::MM'          => '7.04_01',
11421             'ExtUtils::MM_AIX'      => '7.04_01',
11422             'ExtUtils::MM_Any'      => '7.04_01',
11423             'ExtUtils::MM_BeOS'     => '7.04_01',
11424             'ExtUtils::MM_Cygwin'   => '7.04_01',
11425             'ExtUtils::MM_DOS'      => '7.04_01',
11426             'ExtUtils::MM_Darwin'   => '7.04_01',
11427             'ExtUtils::MM_MacOS'    => '7.04_01',
11428             'ExtUtils::MM_NW5'      => '7.04_01',
11429             'ExtUtils::MM_OS2'      => '7.04_01',
11430             'ExtUtils::MM_QNX'      => '7.04_01',
11431             'ExtUtils::MM_UWIN'     => '7.04_01',
11432             'ExtUtils::MM_Unix'     => '7.04_01',
11433             'ExtUtils::MM_VMS'      => '7.04_01',
11434             'ExtUtils::MM_VOS'      => '7.04_01',
11435             'ExtUtils::MM_Win32'    => '7.04_01',
11436             'ExtUtils::MM_Win95'    => '7.04_01',
11437             'ExtUtils::MY'          => '7.04_01',
11438             'ExtUtils::MakeMaker'   => '7.04_01',
11439             'ExtUtils::MakeMaker::Config'=> '7.04_01',
11440             'ExtUtils::MakeMaker::Locale'=> '7.04_01',
11441             'ExtUtils::MakeMaker::version'=> '7.04_01',
11442             'ExtUtils::MakeMaker::version::regex'=> '7.04_01',
11443             'ExtUtils::MakeMaker::version::vpp'=> '7.04_01',
11444             'ExtUtils::Mkbootstrap' => '7.04_01',
11445             'ExtUtils::Mksymlists'  => '7.04_01',
11446             'ExtUtils::testlib'     => '7.04_01',
11447             'Module::CoreList'      => '5.20150520',
11448             'Module::CoreList::TieHashDelta'=> '5.20150520',
11449             'Module::CoreList::Utils'=> '5.20150520',
11450             'POSIX'                 => '1.53',
11451             'PerlIO::via::QuotedPrint'=> '0.08',
11452             'overload'              => '1.26',
11453             'utf8'                  => '1.17',
11454         },
11455         removed => {
11456         }
11457     },
11458     5.023000 => {
11459         delta_from => 5.022000,
11460         changed => {
11461             'B::Op_private'         => '5.023000',
11462             'CPAN::Meta'            => '2.150005',
11463             'CPAN::Meta::Converter' => '2.150005',
11464             'CPAN::Meta::Feature'   => '2.150005',
11465             'CPAN::Meta::History'   => '2.150005',
11466             'CPAN::Meta::Merge'     => '2.150005',
11467             'CPAN::Meta::Prereqs'   => '2.150005',
11468             'CPAN::Meta::Requirements'=> '2.133',
11469             'CPAN::Meta::Spec'      => '2.150005',
11470             'CPAN::Meta::Validator' => '2.150005',
11471             'CPAN::Meta::YAML'      => '0.016',
11472             'Config'                => '5.023',
11473             'Encode'                => '2.73',
11474             'ExtUtils::CBuilder'    => '0.280223',
11475             'ExtUtils::CBuilder::Base'=> '0.280223',
11476             'ExtUtils::CBuilder::Platform::Unix'=> '0.280223',
11477             'ExtUtils::CBuilder::Platform::VMS'=> '0.280223',
11478             'ExtUtils::CBuilder::Platform::Windows'=> '0.280223',
11479             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280223',
11480             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280223',
11481             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280223',
11482             'ExtUtils::CBuilder::Platform::aix'=> '0.280223',
11483             'ExtUtils::CBuilder::Platform::android'=> '0.280223',
11484             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280223',
11485             'ExtUtils::CBuilder::Platform::darwin'=> '0.280223',
11486             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280223',
11487             'ExtUtils::CBuilder::Platform::os2'=> '0.280223',
11488             'Fatal'                 => '2.27',
11489             'Getopt::Long'          => '2.46',
11490             'HTTP::Tiny'            => '0.056',
11491             'List::Util'            => '1.42_01',
11492             'List::Util::XS'        => '1.42_01',
11493             'Locale::Codes'         => '3.35',
11494             'Locale::Codes::Constants'=> '3.35',
11495             'Locale::Codes::Country'=> '3.35',
11496             'Locale::Codes::Country_Codes'=> '3.35',
11497             'Locale::Codes::Country_Retired'=> '3.35',
11498             'Locale::Codes::Currency'=> '3.35',
11499             'Locale::Codes::Currency_Codes'=> '3.35',
11500             'Locale::Codes::Currency_Retired'=> '3.35',
11501             'Locale::Codes::LangExt'=> '3.35',
11502             'Locale::Codes::LangExt_Codes'=> '3.35',
11503             'Locale::Codes::LangExt_Retired'=> '3.35',
11504             'Locale::Codes::LangFam'=> '3.35',
11505             'Locale::Codes::LangFam_Codes'=> '3.35',
11506             'Locale::Codes::LangFam_Retired'=> '3.35',
11507             'Locale::Codes::LangVar'=> '3.35',
11508             'Locale::Codes::LangVar_Codes'=> '3.35',
11509             'Locale::Codes::LangVar_Retired'=> '3.35',
11510             'Locale::Codes::Language'=> '3.35',
11511             'Locale::Codes::Language_Codes'=> '3.35',
11512             'Locale::Codes::Language_Retired'=> '3.35',
11513             'Locale::Codes::Script' => '3.35',
11514             'Locale::Codes::Script_Codes'=> '3.35',
11515             'Locale::Codes::Script_Retired'=> '3.35',
11516             'Locale::Country'       => '3.35',
11517             'Locale::Currency'      => '3.35',
11518             'Locale::Language'      => '3.35',
11519             'Locale::Script'        => '3.35',
11520             'Math::BigFloat'        => '1.999701',
11521             'Math::BigInt'          => '1.999701',
11522             'Math::BigInt::Calc'    => '1.999701',
11523             'Math::BigInt::CalcEmu' => '1.999701',
11524             'Math::BigRat'          => '0.260801',
11525             'Module::CoreList'      => '5.20150620',
11526             'Module::CoreList::TieHashDelta'=> '5.20150620',
11527             'Module::CoreList::Utils'=> '5.20150620',
11528             'Module::Metadata'      => '1.000027',
11529             'Net::Cmd'              => '3.06',
11530             'Net::Config'           => '3.06',
11531             'Net::Domain'           => '3.06',
11532             'Net::FTP'              => '3.06',
11533             'Net::FTP::A'           => '3.06',
11534             'Net::FTP::E'           => '3.06',
11535             'Net::FTP::I'           => '3.06',
11536             'Net::FTP::L'           => '3.06',
11537             'Net::FTP::dataconn'    => '3.06',
11538             'Net::NNTP'             => '3.06',
11539             'Net::Netrc'            => '3.06',
11540             'Net::POP3'             => '3.06',
11541             'Net::SMTP'             => '3.06',
11542             'Net::Time'             => '3.06',
11543             'POSIX'                 => '1.54',
11544             'Parse::CPAN::Meta'     => '1.4417',
11545             'Pod::Simple'           => '3.30',
11546             'Pod::Simple::BlackBox' => '3.30',
11547             'Pod::Simple::Checker'  => '3.30',
11548             'Pod::Simple::Debug'    => '3.30',
11549             'Pod::Simple::DumpAsText'=> '3.30',
11550             'Pod::Simple::DumpAsXML'=> '3.30',
11551             'Pod::Simple::HTML'     => '3.30',
11552             'Pod::Simple::HTMLBatch'=> '3.30',
11553             'Pod::Simple::LinkSection'=> '3.30',
11554             'Pod::Simple::Methody'  => '3.30',
11555             'Pod::Simple::Progress' => '3.30',
11556             'Pod::Simple::PullParser'=> '3.30',
11557             'Pod::Simple::PullParserEndToken'=> '3.30',
11558             'Pod::Simple::PullParserStartToken'=> '3.30',
11559             'Pod::Simple::PullParserTextToken'=> '3.30',
11560             'Pod::Simple::PullParserToken'=> '3.30',
11561             'Pod::Simple::RTF'      => '3.30',
11562             'Pod::Simple::Search'   => '3.30',
11563             'Pod::Simple::SimpleTree'=> '3.30',
11564             'Pod::Simple::Text'     => '3.30',
11565             'Pod::Simple::TextContent'=> '3.30',
11566             'Pod::Simple::TiedOutFH'=> '3.30',
11567             'Pod::Simple::Transcode'=> '3.30',
11568             'Pod::Simple::TranscodeDumb'=> '3.30',
11569             'Pod::Simple::TranscodeSmart'=> '3.30',
11570             'Pod::Simple::XHTML'    => '3.30',
11571             'Pod::Simple::XMLOutStream'=> '3.30',
11572             'Pod::Usage'            => '1.67',
11573             'Scalar::Util'          => '1.42_01',
11574             'Socket'                => '2.019',
11575             'Sub::Util'             => '1.42_01',
11576             'Time::Piece'           => '1.30',
11577             'Time::Seconds'         => '1.30',
11578             'UNIVERSAL'             => '1.13',
11579             'Unicode'               => '8.0.0',
11580             'XS::APItest'           => '0.73',
11581             'autodie'               => '2.27',
11582             'autodie::Scope::Guard' => '2.27',
11583             'autodie::Scope::GuardStack'=> '2.27',
11584             'autodie::Util'         => '2.27',
11585             'autodie::exception'    => '2.27',
11586             'autodie::exception::system'=> '2.27',
11587             'autodie::hints'        => '2.27',
11588             'autodie::skip'         => '2.27',
11589             'encoding'              => '2.15',
11590             'feature'               => '1.41',
11591             'parent'                => '0.234',
11592             'threads'               => '2.02',
11593         },
11594         removed => {
11595         }
11596     },
11597     5.023001 => {
11598         delta_from => 5.023000,
11599         changed => {
11600             'B::Op_private'         => '5.023001',
11601             'Config'                => '5.023001',
11602             'DynaLoader'            => '1.33',
11603             'Encode'                => '2.75',
11604             'Encode::MIME::Header'  => '2.17',
11605             'Encode::Unicode'       => '2.13',
11606             'Fatal'                 => '2.29',
11607             'File::Path'            => '2.11',
11608             'Getopt::Long'          => '2.47',
11609             'I18N::Langinfo'        => '0.13',
11610             'IPC::Open3'            => '1.19',
11611             'Module::CoreList'      => '5.20150720',
11612             'Module::CoreList::TieHashDelta'=> '5.20150720',
11613             'Module::CoreList::Utils'=> '5.20150720',
11614             'Net::Cmd'              => '3.07',
11615             'Net::Config'           => '3.07',
11616             'Net::Domain'           => '3.07',
11617             'Net::FTP'              => '3.07',
11618             'Net::FTP::A'           => '3.07',
11619             'Net::FTP::E'           => '3.07',
11620             'Net::FTP::I'           => '3.07',
11621             'Net::FTP::L'           => '3.07',
11622             'Net::FTP::dataconn'    => '3.07',
11623             'Net::NNTP'             => '3.07',
11624             'Net::Netrc'            => '3.07',
11625             'Net::POP3'             => '3.07',
11626             'Net::SMTP'             => '3.07',
11627             'Net::Time'             => '3.07',
11628             'Opcode'                => '1.33',
11629             'POSIX'                 => '1.55',
11630             'PerlIO::scalar'        => '0.23',
11631             'Socket'                => '2.020',
11632             'Storable'              => '2.54',
11633             'Unicode::Collate'      => '1.14',
11634             'Unicode::Collate::CJK::Big5'=> '1.14',
11635             'Unicode::Collate::CJK::GB2312'=> '1.14',
11636             'Unicode::Collate::CJK::JISX0208'=> '1.14',
11637             'Unicode::Collate::CJK::Korean'=> '1.14',
11638             'Unicode::Collate::CJK::Pinyin'=> '1.14',
11639             'Unicode::Collate::CJK::Stroke'=> '1.14',
11640             'Unicode::Collate::CJK::Zhuyin'=> '1.14',
11641             'Unicode::Collate::Locale'=> '1.14',
11642             'Unicode::Normalize'    => '1.19',
11643             'XS::APItest'           => '0.74',
11644             'XS::Typemap'           => '0.14',
11645             'autodie'               => '2.29',
11646             'autodie::Scope::Guard' => '2.29',
11647             'autodie::Scope::GuardStack'=> '2.29',
11648             'autodie::Util'         => '2.29',
11649             'autodie::exception'    => '2.29',
11650             'autodie::exception::system'=> '2.29',
11651             'autodie::hints'        => '2.29',
11652             'autodie::skip'         => '2.29',
11653             'encoding'              => '2.16',
11654             'feature'               => '1.42',
11655             'warnings'              => '1.33',
11656         },
11657         removed => {
11658             'autodie::ScopeUtil'    => 1,
11659         }
11660     },
11661     5.023002 => {
11662         delta_from => 5.023001,
11663         changed => {
11664             'Attribute::Handlers'   => '0.99',
11665             'B::Op_private'         => '5.023002',
11666             'CPAN::Meta::YAML'      => '0.017',
11667             'Config'                => '5.023002',
11668             'Cwd'                   => '3.57',
11669             'Encode'                => '2.76',
11670             'ExtUtils::ParseXS'     => '3.29',
11671             'ExtUtils::ParseXS::Constants'=> '3.29',
11672             'ExtUtils::ParseXS::CountLines'=> '3.29',
11673             'ExtUtils::ParseXS::Eval'=> '3.29',
11674             'ExtUtils::ParseXS::Utilities'=> '3.29',
11675             'ExtUtils::Typemaps'    => '3.29',
11676             'File::Find'            => '1.30',
11677             'File::Spec'            => '3.57',
11678             'File::Spec::Cygwin'    => '3.57',
11679             'File::Spec::Epoc'      => '3.57',
11680             'File::Spec::Functions' => '3.57',
11681             'File::Spec::Mac'       => '3.57',
11682             'File::Spec::OS2'       => '3.57',
11683             'File::Spec::Unix'      => '3.57',
11684             'File::Spec::VMS'       => '3.57',
11685             'File::Spec::Win32'     => '3.57',
11686             'Filter::Util::Call'    => '1.55',
11687             'Hash::Util'            => '0.19',
11688             'Module::CoreList'      => '5.20150820',
11689             'Module::CoreList::TieHashDelta'=> '5.20150820',
11690             'Module::CoreList::Utils'=> '5.20150820',
11691             'POSIX'                 => '1.56',
11692             'Term::Cap'             => '1.17',
11693             'Unicode::UCD'          => '0.62',
11694             'perlfaq'               => '5.021010',
11695         },
11696         removed => {
11697         }
11698     },
11699     5.020003 => {
11700         delta_from => 5.020002,
11701         changed => {
11702             'Config'                => '5.020003',
11703             'Errno'                 => '1.20_06',
11704             'Module::CoreList'      => '5.20150912',
11705             'Module::CoreList::TieHashDelta'=> '5.20150912',
11706             'Module::CoreList::Utils'=> '5.20150912',
11707         },
11708         removed => {
11709         }
11710     },
11711     5.023003 => {
11712         delta_from => 5.023002,
11713         changed => {
11714             'Amiga::ARexx'          => '0.02',
11715             'Amiga::Exec'           => '0.01',
11716             'B'                     => '1.59',
11717             'B::Op_private'         => '5.023003',
11718             'Carp'                  => '1.37',
11719             'Carp::Heavy'           => '1.37',
11720             'Compress::Raw::Zlib'   => '2.068_01',
11721             'Config'                => '5.023003',
11722             'Cwd'                   => '3.58',
11723             'DynaLoader'            => '1.34',
11724             'Encode'                => '2.77',
11725             'Encode::Unicode'       => '2.14',
11726             'English'               => '1.10',
11727             'Errno'                 => '1.24',
11728             'ExtUtils::Command'     => '7.10',
11729             'ExtUtils::Command::MM' => '7.10',
11730             'ExtUtils::Liblist'     => '7.10',
11731             'ExtUtils::Liblist::Kid'=> '7.10',
11732             'ExtUtils::MM'          => '7.10',
11733             'ExtUtils::MM_AIX'      => '7.10',
11734             'ExtUtils::MM_Any'      => '7.10',
11735             'ExtUtils::MM_BeOS'     => '7.10',
11736             'ExtUtils::MM_Cygwin'   => '7.10',
11737             'ExtUtils::MM_DOS'      => '7.10',
11738             'ExtUtils::MM_Darwin'   => '7.10',
11739             'ExtUtils::MM_MacOS'    => '7.10',
11740             'ExtUtils::MM_NW5'      => '7.10',
11741             'ExtUtils::MM_OS2'      => '7.10',
11742             'ExtUtils::MM_QNX'      => '7.10',
11743             'ExtUtils::MM_UWIN'     => '7.10',
11744             'ExtUtils::MM_Unix'     => '7.10',
11745             'ExtUtils::MM_VMS'      => '7.10',
11746             'ExtUtils::MM_VOS'      => '7.10',
11747             'ExtUtils::MM_Win32'    => '7.10',
11748             'ExtUtils::MM_Win95'    => '7.10',
11749             'ExtUtils::MY'          => '7.10',
11750             'ExtUtils::MakeMaker'   => '7.10',
11751             'ExtUtils::MakeMaker::Config'=> '7.10',
11752             'ExtUtils::MakeMaker::Locale'=> '7.10',
11753             'ExtUtils::MakeMaker::version'=> '7.10',
11754             'ExtUtils::MakeMaker::version::regex'=> '7.10',
11755             'ExtUtils::MakeMaker::version::vpp'=> '7.10',
11756             'ExtUtils::Mkbootstrap' => '7.10',
11757             'ExtUtils::Mksymlists'  => '7.10',
11758             'ExtUtils::ParseXS'     => '3.30',
11759             'ExtUtils::ParseXS::Constants'=> '3.30',
11760             'ExtUtils::ParseXS::CountLines'=> '3.30',
11761             'ExtUtils::ParseXS::Eval'=> '3.30',
11762             'ExtUtils::ParseXS::Utilities'=> '3.30',
11763             'ExtUtils::Typemaps'    => '3.30',
11764             'ExtUtils::Typemaps::Cmd'=> '3.30',
11765             'ExtUtils::Typemaps::InputMap'=> '3.30',
11766             'ExtUtils::Typemaps::OutputMap'=> '3.30',
11767             'ExtUtils::Typemaps::Type'=> '3.30',
11768             'ExtUtils::testlib'     => '7.10',
11769             'File::Find'            => '1.31',
11770             'File::Glob'            => '1.25',
11771             'File::Spec'            => '3.58',
11772             'File::Spec::AmigaOS'   => '3.58',
11773             'File::Spec::Cygwin'    => '3.58',
11774             'File::Spec::Epoc'      => '3.58',
11775             'File::Spec::Functions' => '3.58',
11776             'File::Spec::Mac'       => '3.58',
11777             'File::Spec::OS2'       => '3.58',
11778             'File::Spec::Unix'      => '3.58',
11779             'File::Spec::VMS'       => '3.58',
11780             'File::Spec::Win32'     => '3.58',
11781             'Hash::Util::FieldHash' => '1.17',
11782             'Locale::Codes'         => '3.36',
11783             'Locale::Codes::Constants'=> '3.36',
11784             'Locale::Codes::Country'=> '3.36',
11785             'Locale::Codes::Country_Codes'=> '3.36',
11786             'Locale::Codes::Country_Retired'=> '3.36',
11787             'Locale::Codes::Currency'=> '3.36',
11788             'Locale::Codes::Currency_Codes'=> '3.36',
11789             'Locale::Codes::Currency_Retired'=> '3.36',
11790             'Locale::Codes::LangExt'=> '3.36',
11791             'Locale::Codes::LangExt_Codes'=> '3.36',
11792             'Locale::Codes::LangExt_Retired'=> '3.36',
11793             'Locale::Codes::LangFam'=> '3.36',
11794             'Locale::Codes::LangFam_Codes'=> '3.36',
11795             'Locale::Codes::LangFam_Retired'=> '3.36',
11796             'Locale::Codes::LangVar'=> '3.36',
11797             'Locale::Codes::LangVar_Codes'=> '3.36',
11798             'Locale::Codes::LangVar_Retired'=> '3.36',
11799             'Locale::Codes::Language'=> '3.36',
11800             'Locale::Codes::Language_Codes'=> '3.36',
11801             'Locale::Codes::Language_Retired'=> '3.36',
11802             'Locale::Codes::Script' => '3.36',
11803             'Locale::Codes::Script_Codes'=> '3.36',
11804             'Locale::Codes::Script_Retired'=> '3.36',
11805             'Locale::Country'       => '3.36',
11806             'Locale::Currency'      => '3.36',
11807             'Locale::Language'      => '3.36',
11808             'Locale::Script'        => '3.36',
11809             'Math::BigFloat::Trace' => '0.40',
11810             'Math::BigInt::Trace'   => '0.40',
11811             'Module::CoreList'      => '5.20150920',
11812             'Module::CoreList::TieHashDelta'=> '5.20150920',
11813             'Module::CoreList::Utils'=> '5.20150920',
11814             'OS2::DLL'              => '1.06',
11815             'OS2::ExtAttr'          => '0.04',
11816             'OS2::Process'          => '1.11',
11817             'OS2::REXX'             => '1.05',
11818             'POSIX'                 => '1.57',
11819             'Pod::Perldoc'          => '3.25_01',
11820             'Socket'                => '2.020_01',
11821             'Test'                  => '1.27',
11822             'Thread::Queue'         => '3.06',
11823             'Time::HiRes'           => '1.9727_02',
11824             'Unicode::UCD'          => '0.63',
11825             'Win32'                 => '0.52',
11826             'XS::APItest'           => '0.75',
11827             'bigint'                => '0.40',
11828             'bignum'                => '0.40',
11829             'bigrat'                => '0.40',
11830             'encoding'              => '2.17',
11831             'experimental'          => '0.014',
11832             'if'                    => '0.0605',
11833             'locale'                => '1.07',
11834             'mro'                   => '1.18',
11835             'threads'               => '2.03',
11836         },
11837         removed => {
11838         }
11839     },
11840     5.023004 => {
11841         delta_from => 5.023003,
11842         changed => {
11843             'B'                     => '1.60',
11844             'B::Op_private'         => '5.023004',
11845             'Compress::Raw::Bzip2'  => '2.069',
11846             'Compress::Raw::Zlib'   => '2.069',
11847             'Compress::Zlib'        => '2.069',
11848             'Config'                => '5.023004',
11849             'Devel::PPPort'         => '3.32',
11850             'DynaLoader'            => '1.35',
11851             'Encode'                => '2.78',
11852             'ExtUtils::CBuilder'    => '0.280224',
11853             'ExtUtils::CBuilder::Base'=> '0.280224',
11854             'ExtUtils::CBuilder::Platform::Unix'=> '0.280224',
11855             'ExtUtils::CBuilder::Platform::VMS'=> '0.280224',
11856             'ExtUtils::CBuilder::Platform::Windows'=> '0.280224',
11857             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280224',
11858             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280224',
11859             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280224',
11860             'ExtUtils::CBuilder::Platform::aix'=> '0.280224',
11861             'ExtUtils::CBuilder::Platform::android'=> '0.280224',
11862             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280224',
11863             'ExtUtils::CBuilder::Platform::darwin'=> '0.280224',
11864             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280224',
11865             'ExtUtils::CBuilder::Platform::os2'=> '0.280224',
11866             'File::Path'            => '2.12',
11867             'IO'                    => '1.36',
11868             'IO::Compress::Adapter::Bzip2'=> '2.069',
11869             'IO::Compress::Adapter::Deflate'=> '2.069',
11870             'IO::Compress::Adapter::Identity'=> '2.069',
11871             'IO::Compress::Base'    => '2.069',
11872             'IO::Compress::Base::Common'=> '2.069',
11873             'IO::Compress::Bzip2'   => '2.069',
11874             'IO::Compress::Deflate' => '2.069',
11875             'IO::Compress::Gzip'    => '2.069',
11876             'IO::Compress::Gzip::Constants'=> '2.069',
11877             'IO::Compress::RawDeflate'=> '2.069',
11878             'IO::Compress::Zip'     => '2.069',
11879             'IO::Compress::Zip::Constants'=> '2.069',
11880             'IO::Compress::Zlib::Constants'=> '2.069',
11881             'IO::Compress::Zlib::Extra'=> '2.069',
11882             'IO::Poll'              => '0.10',
11883             'IO::Uncompress::Adapter::Bunzip2'=> '2.069',
11884             'IO::Uncompress::Adapter::Identity'=> '2.069',
11885             'IO::Uncompress::Adapter::Inflate'=> '2.069',
11886             'IO::Uncompress::AnyInflate'=> '2.069',
11887             'IO::Uncompress::AnyUncompress'=> '2.069',
11888             'IO::Uncompress::Base'  => '2.069',
11889             'IO::Uncompress::Bunzip2'=> '2.069',
11890             'IO::Uncompress::Gunzip'=> '2.069',
11891             'IO::Uncompress::Inflate'=> '2.069',
11892             'IO::Uncompress::RawInflate'=> '2.069',
11893             'IO::Uncompress::Unzip' => '2.069',
11894             'Math::BigFloat'        => '1.999704',
11895             'Math::BigFloat::Trace' => '0.41',
11896             'Math::BigInt'          => '1.999704',
11897             'Math::BigInt::Calc'    => '1.999704',
11898             'Math::BigInt::CalcEmu' => '1.999704',
11899             'Math::BigInt::FastCalc'=> '0.34',
11900             'Math::BigInt::Trace'   => '0.41',
11901             'Module::CoreList'      => '5.20151020',
11902             'Module::CoreList::TieHashDelta'=> '5.20151020',
11903             'Module::CoreList::Utils'=> '5.20151020',
11904             'Module::Metadata'      => '1.000029',
11905             'POSIX'                 => '1.58',
11906             'Perl::OSType'          => '1.009',
11907             'PerlIO::encoding'      => '0.22',
11908             'Socket'                => '2.020_02',
11909             'Unicode::Normalize'    => '1.21',
11910             'XS::APItest'           => '0.76',
11911             'bigint'                => '0.41',
11912             'bignum'                => '0.41',
11913             'bigrat'                => '0.41',
11914             'experimental'          => '0.016',
11915             'if'                    => '0.0606',
11916             'warnings'              => '1.35',
11917         },
11918         removed => {
11919         }
11920     },
11921     5.023005 => {
11922         delta_from => 5.023004,
11923         changed => {
11924             'B'                     => '1.61',
11925             'B::Op_private'         => '5.023005',
11926             'Carp'                  => '1.38',
11927             'Carp::Heavy'           => '1.38',
11928             'Config'                => '5.023005',
11929             'Config::Perl::V'       => '0.25',
11930             'Cwd'                   => '3.59',
11931             'Devel::Peek'           => '1.23',
11932             'Dumpvalue'             => '1.18',
11933             'DynaLoader'            => '1.36',
11934             'File::Find'            => '1.32',
11935             'File::Spec'            => '3.59',
11936             'File::Spec::AmigaOS'   => '3.59',
11937             'File::Spec::Cygwin'    => '3.59',
11938             'File::Spec::Epoc'      => '3.59',
11939             'File::Spec::Functions' => '3.59',
11940             'File::Spec::Mac'       => '3.59',
11941             'File::Spec::OS2'       => '3.59',
11942             'File::Spec::Unix'      => '3.59',
11943             'File::Spec::VMS'       => '3.59',
11944             'File::Spec::Win32'     => '3.59',
11945             'Getopt::Long'          => '2.48',
11946             'Hash::Util::FieldHash' => '1.18',
11947             'IPC::Open3'            => '1.20',
11948             'Math::BigFloat'        => '1.999710',
11949             'Math::BigInt'          => '1.999710',
11950             'Math::BigInt::Calc'    => '1.999710',
11951             'Math::BigInt::CalcEmu' => '1.999710',
11952             'Math::BigInt::FastCalc'=> '0.37',
11953             'Module::CoreList'      => '5.20151120',
11954             'Module::CoreList::TieHashDelta'=> '5.20151120',
11955             'Module::CoreList::Utils'=> '5.20151120',
11956             'Module::Metadata'      => '1.000030',
11957             'POSIX'                 => '1.59',
11958             'PerlIO::encoding'      => '0.23',
11959             'PerlIO::mmap'          => '0.015',
11960             'PerlIO::scalar'        => '0.24',
11961             'PerlIO::via'           => '0.16',
11962             'Pod::Simple'           => '3.32',
11963             'Pod::Simple::BlackBox' => '3.32',
11964             'Pod::Simple::Checker'  => '3.32',
11965             'Pod::Simple::Debug'    => '3.32',
11966             'Pod::Simple::DumpAsText'=> '3.32',
11967             'Pod::Simple::DumpAsXML'=> '3.32',
11968             'Pod::Simple::HTML'     => '3.32',
11969             'Pod::Simple::HTMLBatch'=> '3.32',
11970             'Pod::Simple::LinkSection'=> '3.32',
11971             'Pod::Simple::Methody'  => '3.32',
11972             'Pod::Simple::Progress' => '3.32',
11973             'Pod::Simple::PullParser'=> '3.32',
11974             'Pod::Simple::PullParserEndToken'=> '3.32',
11975             'Pod::Simple::PullParserStartToken'=> '3.32',
11976             'Pod::Simple::PullParserTextToken'=> '3.32',
11977             'Pod::Simple::PullParserToken'=> '3.32',
11978             'Pod::Simple::RTF'      => '3.32',
11979             'Pod::Simple::Search'   => '3.32',
11980             'Pod::Simple::SimpleTree'=> '3.32',
11981             'Pod::Simple::Text'     => '3.32',
11982             'Pod::Simple::TextContent'=> '3.32',
11983             'Pod::Simple::TiedOutFH'=> '3.32',
11984             'Pod::Simple::Transcode'=> '3.32',
11985             'Pod::Simple::TranscodeDumb'=> '3.32',
11986             'Pod::Simple::TranscodeSmart'=> '3.32',
11987             'Pod::Simple::XHTML'    => '3.32',
11988             'Pod::Simple::XMLOutStream'=> '3.32',
11989             'Thread::Queue'         => '3.07',
11990             'Tie::Scalar'           => '1.04',
11991             'Time::HiRes'           => '1.9728',
11992             'Time::Piece'           => '1.31',
11993             'Time::Seconds'         => '1.31',
11994             'Unicode::Normalize'    => '1.23',
11995             'XSLoader'              => '0.21',
11996             'arybase'               => '0.11',
11997             'base'                  => '2.22_01',
11998             'fields'                => '2.22_01',
11999             'threads'               => '2.04',
12000             'threads::shared'       => '1.49',
12001         },
12002         removed => {
12003             'ExtUtils::MakeMaker::version::vpp'=> 1,
12004             'version::vpp'          => 1,
12005         }
12006     },
12007     5.022001 => {
12008         delta_from => 5.022,
12009         changed => {
12010             'B::Op_private'         => '5.022001',
12011             'Config'                => '5.022001',
12012             'Module::CoreList'      => '5.20151213',
12013             'Module::CoreList::TieHashDelta'=> '5.20151213',
12014             'Module::CoreList::Utils'=> '5.20151213',
12015             'POSIX'                 => '1.53_01',
12016             'PerlIO::scalar'        => '0.23',
12017             'Storable'              => '2.53_01',
12018             'Win32'                 => '0.52',
12019             'warnings'              => '1.34',
12020         },
12021         removed => {
12022         }
12023     },
12024     5.023006 => {
12025         delta_from => 5.023005,
12026         changed => {
12027             'B::Op_private'         => '5.023006',
12028             'Config'                => '5.023006',
12029             'locale'                => '1.08',
12030         },
12031         removed => {
12032         }
12033     },
12034 );
12035
12036 sub is_core
12037 {
12038     my $module = shift;
12039     $module = shift if eval { $module->isa(__PACKAGE__) } && @_ > 0 && defined($_[0]) && $_[0] =~ /^\w/;
12040     my ($module_version, $perl_version);
12041
12042     $module_version = shift if @_ > 0;
12043     $perl_version   = @_ > 0 ? shift : $];
12044
12045     my $first_release = first_release($module);
12046
12047     return 0 if !defined($first_release) || $first_release > $perl_version;
12048
12049     my $final_release = removed_from($module);
12050
12051     return 0 if defined($final_release) && $perl_version >= $final_release;
12052
12053     # If a minimum version of the module was specified:
12054     # Step through all perl releases ($prn)
12055     # so we can find what version of the module
12056     # was included in the specified version of perl.
12057     # On the way if we pass the required module version, we can
12058     # short-circuit and return true
12059     if (defined($module_version)) {
12060         # The Perl releases aren't a linear sequence, but a tree. We need to build the path
12061         # of releases from 5 to the specified release, and follow the module's version(s)
12062         # along that path.
12063         my @releases = ($perl_version);
12064         my $rel = $perl_version;
12065         while (defined($rel)) {
12066             # XXX: This line is a sign of failure. -- rjbs, 2015-04-15
12067             my $this_delta = $delta{$rel} || $delta{ sprintf '%0.6f', $rel };
12068             $rel = $this_delta->{delta_from};
12069             unshift(@releases, $rel) if defined($rel);
12070         }
12071         RELEASE:
12072         foreach my $prn (@releases) {
12073             next RELEASE if $prn <= $first_release;
12074             last RELEASE if $prn > $perl_version;
12075             next unless defined(my $next_module_version
12076                                    = $delta{$prn}->{changed}->{$module});
12077             return 1 if version->parse($next_module_version) >= version->parse($module_version);
12078         }
12079         return 0;
12080     }
12081
12082     return 1 if !defined($final_release);
12083
12084     return $perl_version <= $final_release;
12085 }
12086
12087 for my $version (sort { $a <=> $b } keys %delta) {
12088     my $data = $delta{$version};
12089
12090     tie %{$version{$version}}, 'Module::CoreList::TieHashDelta',
12091         $data->{changed}, $data->{removed},
12092         $data->{delta_from} ? $version{$data->{delta_from}} : undef;
12093 }
12094
12095 %deprecated = (
12096     5.011    => {
12097         changed => { map { $_ => 1 } qw/
12098             Class::ISA
12099             Pod::Plainer
12100             Shell
12101             Switch
12102         /},
12103     },
12104     5.011001 => { delta_from => 5.011 },
12105     5.011002 => { delta_from => 5.011001 },
12106     5.011003 => { delta_from => 5.011002 },
12107     5.011004 => { delta_from => 5.011003 },
12108     5.011005 => { delta_from => 5.011004 },
12109
12110     5.012    => { delta_from => 5.011005 },
12111     5.012001 => { delta_from => 5.012 },
12112     5.012002 => { delta_from => 5.012001 },
12113     5.012003 => { delta_from => 5.012002 },
12114     5.012004 => { delta_from => 5.012003 },
12115     5.012005 => { delta_from => 5.012004 },
12116
12117     5.013    => { delta_from => 5.012005 },
12118     5.013001 => {
12119         delta_from => 5.013,
12120         removed => { map { $_ => 1 } qw/
12121             Class::ISA
12122             Pod::Plainer
12123             Switch
12124         /},
12125     },
12126     5.013002 => { delta_from => 5.013001 },
12127     5.013003 => { delta_from => 5.013002 },
12128     5.013004 => { delta_from => 5.013003 },
12129     5.013005 => { delta_from => 5.013004 },
12130     5.013006 => { delta_from => 5.013005 },
12131     5.013007 => { delta_from => 5.013006 },
12132     5.013008 => { delta_from => 5.013007 },
12133     5.013009 => { delta_from => 5.013008 },
12134     5.01301  => { delta_from => 5.013009 },
12135     5.013011 => { delta_from => 5.01301  },
12136
12137     5.014    => { delta_from => 5.013011 },
12138     5.014001 => { delta_from => 5.014    },
12139     5.014002 => { delta_from => 5.014001 },
12140     5.014003 => { delta_from => 5.014002 },
12141     5.014004 => { delta_from => 5.014003 },
12142
12143     5.015    => {
12144         delta_from => 5.014004,
12145         removed => { Shell => 1 },
12146     },
12147     5.015001 => { delta_from => 5.015    },
12148     5.015002 => { delta_from => 5.015001 },
12149     5.015003 => { delta_from => 5.015002 },
12150     5.015004 => { delta_from => 5.015003 },
12151     5.015005 => { delta_from => 5.015004 },
12152     5.015006 => { delta_from => 5.015005 },
12153     5.015007 => { delta_from => 5.015006 },
12154     5.015008 => { delta_from => 5.015007 },
12155     5.015009 => { delta_from => 5.015008 },
12156
12157     5.016    => { delta_from => 5.015009 },
12158     5.016001 => { delta_from => 5.016    },
12159     5.016002 => { delta_from => 5.016001 },
12160     5.016003 => { delta_from => 5.016002 },
12161
12162     5.017    => { delta_from => 5.016003 },
12163     5.017001 => { delta_from => 5.017    },
12164     5.017002 => { delta_from => 5.017001 },
12165     5.017003 => { delta_from => 5.017002 },
12166     5.017004 => { delta_from => 5.017003 },
12167     5.017005 => { delta_from => 5.017004 },
12168     5.017006 => { delta_from => 5.017005 },
12169     5.017007 => { delta_from => 5.017006 },
12170     5.017008 => {
12171         delta_from => 5.017007,
12172         changed => { 'Pod::LaTeX' => 1 },
12173     },
12174     5.017009 => {
12175         delta_from => 5.017008,
12176         changed => { map { $_ => 1 } qw/
12177             Archive::Extract
12178             B::Lint
12179             B::Lint::Debug
12180             CPANPLUS
12181             CPANPLUS::Backend
12182             CPANPLUS::Backend::RV
12183             CPANPLUS::Config
12184             CPANPLUS::Config::HomeEnv
12185             CPANPLUS::Configure
12186             CPANPLUS::Configure::Setup
12187             CPANPLUS::Dist
12188             CPANPLUS::Dist::Autobundle
12189             CPANPLUS::Dist::Base
12190             CPANPLUS::Dist::Build
12191             CPANPLUS::Dist::Build::Constants
12192             CPANPLUS::Dist::MM
12193             CPANPLUS::Dist::Sample
12194             CPANPLUS::Error
12195             CPANPLUS::Internals
12196             CPANPLUS::Internals::Constants
12197             CPANPLUS::Internals::Constants::Report
12198             CPANPLUS::Internals::Extract
12199             CPANPLUS::Internals::Fetch
12200             CPANPLUS::Internals::Report
12201             CPANPLUS::Internals::Search
12202             CPANPLUS::Internals::Source
12203             CPANPLUS::Internals::Source::Memory
12204             CPANPLUS::Internals::Source::SQLite
12205             CPANPLUS::Internals::Source::SQLite::Tie
12206             CPANPLUS::Internals::Utils
12207             CPANPLUS::Internals::Utils::Autoflush
12208             CPANPLUS::Module
12209             CPANPLUS::Module::Author
12210             CPANPLUS::Module::Author::Fake
12211             CPANPLUS::Module::Checksums
12212             CPANPLUS::Module::Fake
12213             CPANPLUS::Module::Signature
12214             CPANPLUS::Selfupdate
12215             CPANPLUS::Shell
12216             CPANPLUS::Shell::Classic
12217             CPANPLUS::Shell::Default
12218             CPANPLUS::Shell::Default::Plugins::CustomSource
12219             CPANPLUS::Shell::Default::Plugins::Remote
12220             CPANPLUS::Shell::Default::Plugins::Source
12221             Devel::InnerPackage
12222             File::CheckTree
12223             Log::Message
12224             Log::Message::Config
12225             Log::Message::Handlers
12226             Log::Message::Item
12227             Log::Message::Simple
12228             Module::Pluggable
12229             Module::Pluggable::Object
12230             Object::Accessor
12231             Term::UI
12232             Term::UI::History
12233             Text::Soundex
12234         /},
12235     },
12236     5.01701  => { delta_from => 5.017009 },
12237     5.017011 => { delta_from => 5.01701  },
12238
12239     5.018    => { delta_from => 5.017011 },
12240     5.018001 => {
12241         delta_from => 5.018,
12242         changed => {
12243         },
12244         removed => {
12245         }
12246     },
12247     5.018002 => {
12248         delta_from => 5.018001,
12249         changed => {
12250         },
12251         removed => {
12252         }
12253     },
12254     5.018003 => {
12255         delta_from => 5.018,
12256         changed => {
12257         },
12258         removed => {
12259         }
12260     },
12261     5.018004 => {
12262         delta_from => 5.018,
12263         changed => {
12264         },
12265         removed => {
12266         }
12267     },
12268
12269     5.019    => {
12270         delta_from => 5.018,
12271         changed => { 'Module::Build' => 1 },
12272         removed => { map { $_ => 1 } qw/
12273             Archive::Extract
12274             B::Lint
12275             B::Lint::Debug
12276             CPANPLUS
12277             CPANPLUS::Backend
12278             CPANPLUS::Backend::RV
12279             CPANPLUS::Config
12280             CPANPLUS::Config::HomeEnv
12281             CPANPLUS::Configure
12282             CPANPLUS::Configure::Setup
12283             CPANPLUS::Dist
12284             CPANPLUS::Dist::Autobundle
12285             CPANPLUS::Dist::Base
12286             CPANPLUS::Dist::Build
12287             CPANPLUS::Dist::Build::Constants
12288             CPANPLUS::Dist::MM
12289             CPANPLUS::Dist::Sample
12290             CPANPLUS::Error
12291             CPANPLUS::Internals
12292             CPANPLUS::Internals::Constants
12293             CPANPLUS::Internals::Constants::Report
12294             CPANPLUS::Internals::Extract
12295             CPANPLUS::Internals::Fetch
12296             CPANPLUS::Internals::Report
12297             CPANPLUS::Internals::Search
12298             CPANPLUS::Internals::Source
12299             CPANPLUS::Internals::Source::Memory
12300             CPANPLUS::Internals::Source::SQLite
12301             CPANPLUS::Internals::Source::SQLite::Tie
12302             CPANPLUS::Internals::Utils
12303             CPANPLUS::Internals::Utils::Autoflush
12304             CPANPLUS::Module
12305             CPANPLUS::Module::Author
12306             CPANPLUS::Module::Author::Fake
12307             CPANPLUS::Module::Checksums
12308             CPANPLUS::Module::Fake
12309             CPANPLUS::Module::Signature
12310             CPANPLUS::Selfupdate
12311             CPANPLUS::Shell
12312             CPANPLUS::Shell::Classic
12313             CPANPLUS::Shell::Default
12314             CPANPLUS::Shell::Default::Plugins::CustomSource
12315             CPANPLUS::Shell::Default::Plugins::Remote
12316             CPANPLUS::Shell::Default::Plugins::Source
12317             Devel::InnerPackage
12318             File::CheckTree
12319             Log::Message
12320             Log::Message::Config
12321             Log::Message::Handlers
12322             Log::Message::Item
12323             Log::Message::Simple
12324             Module::Pluggable
12325             Module::Pluggable::Object
12326             Object::Accessor
12327             Pod::LaTeX
12328             Term::UI
12329             Term::UI::History
12330             Text::Soundex
12331         /}
12332     },
12333     5.019001 => {
12334         delta_from => 5.019,
12335         changed => {
12336         },
12337         removed => {
12338         }
12339     },
12340     5.019002 => {
12341         delta_from => 5.019001,
12342         changed => {
12343         },
12344         removed => {
12345         }
12346     },
12347     5.019003 => {
12348         delta_from => 5.019002,
12349         changed => {
12350         },
12351         removed => {
12352         }
12353     },
12354     5.019004 => {
12355         delta_from => 5.019003,
12356         changed => {
12357             'Module::Build::Base'   => '1',
12358             'Module::Build::Compat' => '1',
12359             'Module::Build::Config' => '1',
12360             'Module::Build::ConfigData'=> '1',
12361             'Module::Build::Cookbook'=> '1',
12362             'Module::Build::Dumper' => '1',
12363             'Module::Build::ModuleInfo'=> '1',
12364             'Module::Build::Notes'  => '1',
12365             'Module::Build::PPMMaker'=> '1',
12366             'Module::Build::Platform::Default'=> '1',
12367             'Module::Build::Platform::MacOS'=> '1',
12368             'Module::Build::Platform::Unix'=> '1',
12369             'Module::Build::Platform::VMS'=> '1',
12370             'Module::Build::Platform::VOS'=> '1',
12371             'Module::Build::Platform::Windows'=> '1',
12372             'Module::Build::Platform::aix'=> '1',
12373             'Module::Build::Platform::cygwin'=> '1',
12374             'Module::Build::Platform::darwin'=> '1',
12375             'Module::Build::Platform::os2'=> '1',
12376             'Module::Build::PodParser'=> '1',
12377             'Module::Build::Version'=> '1',
12378             'Module::Build::YAML'   => '1',
12379             'inc::latest'           => '1',
12380         },
12381         removed => {
12382         }
12383     },
12384     5.019005 => {
12385         delta_from => 5.019004,
12386         changed => {
12387         },
12388         removed => {
12389         }
12390     },
12391     5.019006 => {
12392         delta_from => 5.019005,
12393         changed => {
12394             'Package::Constants'    => '1',
12395         },
12396         removed => {
12397         }
12398     },
12399     5.019007 => {
12400         delta_from => 5.019006,
12401         changed => {
12402             'CGI'                   => '1',
12403             'CGI::Apache'           => '1',
12404             'CGI::Carp'             => '1',
12405             'CGI::Cookie'           => '1',
12406             'CGI::Fast'             => '1',
12407             'CGI::Pretty'           => '1',
12408             'CGI::Push'             => '1',
12409             'CGI::Switch'           => '1',
12410             'CGI::Util'             => '1',
12411         },
12412         removed => {
12413         }
12414     },
12415     5.019008 => {
12416         delta_from => 5.019007,
12417         changed => {
12418         },
12419         removed => {
12420         }
12421     },
12422     5.019009 => {
12423         delta_from => 5.019008,
12424         changed => {
12425         },
12426         removed => {
12427         }
12428     },
12429     5.01901 => {
12430         delta_from => 5.019009,
12431         changed => {
12432         },
12433         removed => {
12434         }
12435     },
12436     5.019011 => {
12437         delta_from => 5.019010,
12438         changed => {
12439         },
12440         removed => {
12441         }
12442     },
12443     5.020000 => {
12444         delta_from => 5.019011,
12445         changed => {
12446         },
12447         removed => {
12448         }
12449     },
12450     5.021000 => {
12451         delta_from => 5.020000,
12452         changed => {
12453         },
12454         removed => {
12455             'CGI'                   => 1,
12456             'CGI::Apache'           => 1,
12457             'CGI::Carp'             => 1,
12458             'CGI::Cookie'           => 1,
12459             'CGI::Fast'             => 1,
12460             'CGI::Pretty'           => 1,
12461             'CGI::Push'             => 1,
12462             'CGI::Switch'           => 1,
12463             'CGI::Util'             => 1,
12464             'Module::Build'         => 1,
12465             'Module::Build::Base'   => 1,
12466             'Module::Build::Compat' => 1,
12467             'Module::Build::Config' => 1,
12468             'Module::Build::ConfigData'=> 1,
12469             'Module::Build::Cookbook'=> 1,
12470             'Module::Build::Dumper' => 1,
12471             'Module::Build::ModuleInfo'=> 1,
12472             'Module::Build::Notes'  => 1,
12473             'Module::Build::PPMMaker'=> 1,
12474             'Module::Build::Platform::Default'=> 1,
12475             'Module::Build::Platform::MacOS'=> 1,
12476             'Module::Build::Platform::Unix'=> 1,
12477             'Module::Build::Platform::VMS'=> 1,
12478             'Module::Build::Platform::VOS'=> 1,
12479             'Module::Build::Platform::Windows'=> 1,
12480             'Module::Build::Platform::aix'=> 1,
12481             'Module::Build::Platform::cygwin'=> 1,
12482             'Module::Build::Platform::darwin'=> 1,
12483             'Module::Build::Platform::os2'=> 1,
12484             'Module::Build::PodParser'=> 1,
12485             'Module::Build::Version'=> 1,
12486             'Module::Build::YAML'   => 1,
12487             'Package::Constants'    => 1,
12488             'Simple'                => 1,
12489             'inc::latest'           => 1,
12490         }
12491     },
12492     5.021001 => {
12493         delta_from => 5.021000,
12494         changed => {
12495         },
12496         removed => {
12497         }
12498     },
12499     5.021002 => {
12500         delta_from => 5.021001,
12501         changed => {
12502         },
12503         removed => {
12504         }
12505     },
12506     5.021003 => {
12507         delta_from => 5.021002,
12508         changed => {
12509         },
12510         removed => {
12511         }
12512     },
12513     5.020001 => {
12514         delta_from => 5.020000,
12515         changed => {
12516         },
12517         removed => {
12518         }
12519     },
12520     5.021004 => {
12521         delta_from => 5.021003,
12522         changed => {
12523         },
12524         removed => {
12525         }
12526     },
12527     5.021005 => {
12528         delta_from => 5.021004,
12529         changed => {
12530         },
12531         removed => {
12532         }
12533     },
12534     5.021006 => {
12535         delta_from => 5.021005,
12536         changed => {
12537         },
12538         removed => {
12539         }
12540     },
12541     5.021007 => {
12542         delta_from => 5.021006,
12543         changed => {
12544         },
12545         removed => {
12546         }
12547     },
12548     5.021008 => {
12549         delta_from => 5.021007,
12550         changed => {
12551         },
12552         removed => {
12553         }
12554     },
12555     5.020002 => {
12556         delta_from => 5.020001,
12557         changed => {
12558         },
12559         removed => {
12560         }
12561     },
12562     5.021009 => {
12563         delta_from => 5.021008,
12564         changed => {
12565         },
12566         removed => {
12567         }
12568     },
12569     5.021010 => {
12570         delta_from => 5.021009,
12571         changed => {
12572         },
12573         removed => {
12574         }
12575     },
12576     5.021011 => {
12577         delta_from => 5.02101,
12578         changed => {
12579         },
12580         removed => {
12581         }
12582     },
12583     5.022000 => {
12584         delta_from => 5.021011,
12585         changed => {
12586         },
12587         removed => {
12588         }
12589     },
12590     5.023000 => {
12591         delta_from => 5.022000,
12592         changed => {
12593         },
12594         removed => {
12595         }
12596     },
12597     5.023001 => {
12598         delta_from => 5.023000,
12599         changed => {
12600         },
12601         removed => {
12602         }
12603     },
12604     5.023002 => {
12605         delta_from => 5.023001,
12606         changed => {
12607         },
12608         removed => {
12609         }
12610     },
12611     5.020003 => {
12612         delta_from => 5.020002,
12613         changed => {
12614         },
12615         removed => {
12616         }
12617     },
12618     5.023003 => {
12619         delta_from => 5.023002,
12620         changed => {
12621         },
12622         removed => {
12623         }
12624     },
12625     5.023004 => {
12626         delta_from => 5.023003,
12627         changed => {
12628         },
12629         removed => {
12630         }
12631     },
12632     5.023005 => {
12633         delta_from => 5.023004,
12634         changed => {
12635         },
12636         removed => {
12637         }
12638     },
12639     5.022001 => {
12640         delta_from => 5.022,
12641         changed => {
12642         },
12643         removed => {
12644         }
12645     },
12646     5.023006 => {
12647         delta_from => 5.023005,
12648         changed => {
12649         },
12650         removed => {
12651         }
12652     },
12653 );
12654
12655 for my $version (sort { $a <=> $b } keys %deprecated) {
12656     my $data = $deprecated{$version};
12657
12658     tie %{ $deprecated{$version} }, 'Module::CoreList::TieHashDelta',
12659         $data->{changed}, $data->{removed},
12660         $data->{delta_from} ? $deprecated{ $data->{delta_from} } : undef;
12661 }
12662
12663 %upstream = (
12664     'App::Cpan'             => 'cpan',
12665     'App::Prove'            => 'cpan',
12666     'App::Prove::State'     => 'cpan',
12667     'App::Prove::State::Result'=> 'cpan',
12668     'App::Prove::State::Result::Test'=> 'cpan',
12669     'Archive::Tar'          => 'cpan',
12670     'Archive::Tar::Constant'=> 'cpan',
12671     'Archive::Tar::File'    => 'cpan',
12672     'AutoLoader'            => 'cpan',
12673     'AutoSplit'             => 'cpan',
12674     'B::Debug'              => 'cpan',
12675     'CPAN'                  => 'cpan',
12676     'CPAN::Author'          => 'cpan',
12677     'CPAN::Bundle'          => 'cpan',
12678     'CPAN::CacheMgr'        => 'cpan',
12679     'CPAN::Complete'        => 'cpan',
12680     'CPAN::Debug'           => 'cpan',
12681     'CPAN::DeferredCode'    => 'cpan',
12682     'CPAN::Distribution'    => 'cpan',
12683     'CPAN::Distroprefs'     => 'cpan',
12684     'CPAN::Distrostatus'    => 'cpan',
12685     'CPAN::Exception::RecursiveDependency'=> 'cpan',
12686     'CPAN::Exception::blocked_urllist'=> 'cpan',
12687     'CPAN::Exception::yaml_not_installed'=> 'cpan',
12688     'CPAN::Exception::yaml_process_error'=> 'cpan',
12689     'CPAN::FTP'             => 'cpan',
12690     'CPAN::FTP::netrc'      => 'cpan',
12691     'CPAN::FirstTime'       => 'cpan',
12692     'CPAN::HTTP::Client'    => 'cpan',
12693     'CPAN::HTTP::Credentials'=> 'cpan',
12694     'CPAN::HandleConfig'    => 'cpan',
12695     'CPAN::Index'           => 'cpan',
12696     'CPAN::InfoObj'         => 'cpan',
12697     'CPAN::Kwalify'         => 'cpan',
12698     'CPAN::LWP::UserAgent'  => 'cpan',
12699     'CPAN::Meta'            => 'cpan',
12700     'CPAN::Meta::Converter' => 'cpan',
12701     'CPAN::Meta::Feature'   => 'cpan',
12702     'CPAN::Meta::History'   => 'cpan',
12703     'CPAN::Meta::Merge'     => 'cpan',
12704     'CPAN::Meta::Prereqs'   => 'cpan',
12705     'CPAN::Meta::Requirements'=> 'cpan',
12706     'CPAN::Meta::Spec'      => 'cpan',
12707     'CPAN::Meta::Validator' => 'cpan',
12708     'CPAN::Meta::YAML'      => 'cpan',
12709     'CPAN::Mirrors'         => 'cpan',
12710     'CPAN::Module'          => 'cpan',
12711     'CPAN::Nox'             => 'cpan',
12712     'CPAN::Plugin'          => 'cpan',
12713     'CPAN::Plugin::Specfile'=> 'cpan',
12714     'CPAN::Prompt'          => 'cpan',
12715     'CPAN::Queue'           => 'cpan',
12716     'CPAN::Shell'           => 'cpan',
12717     'CPAN::Tarzip'          => 'cpan',
12718     'CPAN::URL'             => 'cpan',
12719     'CPAN::Version'         => 'cpan',
12720     'Compress::Raw::Bzip2'  => 'cpan',
12721     'Compress::Raw::Zlib'   => 'cpan',
12722     'Compress::Zlib'        => 'cpan',
12723     'Config::Perl::V'       => 'cpan',
12724     'DB_File'               => 'cpan',
12725     'Devel::PPPort'         => 'cpan',
12726     'Digest'                => 'cpan',
12727     'Digest::MD5'           => 'cpan',
12728     'Digest::SHA'           => 'cpan',
12729     'Digest::base'          => 'cpan',
12730     'Digest::file'          => 'cpan',
12731     'Encode'                => 'cpan',
12732     'Encode::Alias'         => 'cpan',
12733     'Encode::Byte'          => 'cpan',
12734     'Encode::CJKConstants'  => 'cpan',
12735     'Encode::CN'            => 'cpan',
12736     'Encode::CN::HZ'        => 'cpan',
12737     'Encode::Config'        => 'cpan',
12738     'Encode::EBCDIC'        => 'cpan',
12739     'Encode::Encoder'       => 'cpan',
12740     'Encode::Encoding'      => 'cpan',
12741     'Encode::GSM0338'       => 'cpan',
12742     'Encode::Guess'         => 'cpan',
12743     'Encode::JP'            => 'cpan',
12744     'Encode::JP::H2Z'       => 'cpan',
12745     'Encode::JP::JIS7'      => 'cpan',
12746     'Encode::KR'            => 'cpan',
12747     'Encode::KR::2022_KR'   => 'cpan',
12748     'Encode::MIME::Header'  => 'cpan',
12749     'Encode::MIME::Header::ISO_2022_JP'=> 'cpan',
12750     'Encode::MIME::Name'    => 'cpan',
12751     'Encode::Symbol'        => 'cpan',
12752     'Encode::TW'            => 'cpan',
12753     'Encode::Unicode'       => 'cpan',
12754     'Encode::Unicode::UTF7' => 'cpan',
12755     'ExtUtils::Command'     => 'cpan',
12756     'ExtUtils::Command::MM' => 'cpan',
12757     'ExtUtils::Constant'    => 'cpan',
12758     'ExtUtils::Constant::Base'=> 'cpan',
12759     'ExtUtils::Constant::ProxySubs'=> 'cpan',
12760     'ExtUtils::Constant::Utils'=> 'cpan',
12761     'ExtUtils::Constant::XS'=> 'cpan',
12762     'ExtUtils::Install'     => 'cpan',
12763     'ExtUtils::Installed'   => 'cpan',
12764     'ExtUtils::Liblist'     => 'cpan',
12765     'ExtUtils::Liblist::Kid'=> 'cpan',
12766     'ExtUtils::MM'          => 'cpan',
12767     'ExtUtils::MM_AIX'      => 'cpan',
12768     'ExtUtils::MM_Any'      => 'cpan',
12769     'ExtUtils::MM_BeOS'     => 'cpan',
12770     'ExtUtils::MM_Cygwin'   => 'cpan',
12771     'ExtUtils::MM_DOS'      => 'cpan',
12772     'ExtUtils::MM_Darwin'   => 'cpan',
12773     'ExtUtils::MM_MacOS'    => 'cpan',
12774     'ExtUtils::MM_NW5'      => 'cpan',
12775     'ExtUtils::MM_OS2'      => 'cpan',
12776     'ExtUtils::MM_QNX'      => 'cpan',
12777     'ExtUtils::MM_UWIN'     => 'cpan',
12778     'ExtUtils::MM_Unix'     => 'cpan',
12779     'ExtUtils::MM_VMS'      => 'cpan',
12780     'ExtUtils::MM_VOS'      => 'cpan',
12781     'ExtUtils::MM_Win32'    => 'cpan',
12782     'ExtUtils::MM_Win95'    => 'cpan',
12783     'ExtUtils::MY'          => 'cpan',
12784     'ExtUtils::MakeMaker'   => 'cpan',
12785     'ExtUtils::MakeMaker::Config'=> 'cpan',
12786     'ExtUtils::MakeMaker::Locale'=> 'cpan',
12787     'ExtUtils::MakeMaker::version'=> 'cpan',
12788     'ExtUtils::MakeMaker::version::regex'=> 'cpan',
12789     'ExtUtils::Manifest'    => 'cpan',
12790     'ExtUtils::Mkbootstrap' => 'cpan',
12791     'ExtUtils::Mksymlists'  => 'cpan',
12792     'ExtUtils::Packlist'    => 'cpan',
12793     'ExtUtils::testlib'     => 'cpan',
12794     'Fatal'                 => 'cpan',
12795     'File::Fetch'           => 'cpan',
12796     'File::GlobMapper'      => 'cpan',
12797     'File::Path'            => 'cpan',
12798     'File::Temp'            => 'cpan',
12799     'Filter::Util::Call'    => 'cpan',
12800     'Getopt::Long'          => 'cpan',
12801     'HTTP::Tiny'            => 'cpan',
12802     'IO::Compress::Adapter::Bzip2'=> 'cpan',
12803     'IO::Compress::Adapter::Deflate'=> 'cpan',
12804     'IO::Compress::Adapter::Identity'=> 'cpan',
12805     'IO::Compress::Base'    => 'cpan',
12806     'IO::Compress::Base::Common'=> 'cpan',
12807     'IO::Compress::Bzip2'   => 'cpan',
12808     'IO::Compress::Deflate' => 'cpan',
12809     'IO::Compress::Gzip'    => 'cpan',
12810     'IO::Compress::Gzip::Constants'=> 'cpan',
12811     'IO::Compress::RawDeflate'=> 'cpan',
12812     'IO::Compress::Zip'     => 'cpan',
12813     'IO::Compress::Zip::Constants'=> 'cpan',
12814     'IO::Compress::Zlib::Constants'=> 'cpan',
12815     'IO::Compress::Zlib::Extra'=> 'cpan',
12816     'IO::Socket::IP'        => 'cpan',
12817     'IO::Uncompress::Adapter::Bunzip2'=> 'cpan',
12818     'IO::Uncompress::Adapter::Identity'=> 'cpan',
12819     'IO::Uncompress::Adapter::Inflate'=> 'cpan',
12820     'IO::Uncompress::AnyInflate'=> 'cpan',
12821     'IO::Uncompress::AnyUncompress'=> 'cpan',
12822     'IO::Uncompress::Base'  => 'cpan',
12823     'IO::Uncompress::Bunzip2'=> 'cpan',
12824     'IO::Uncompress::Gunzip'=> 'cpan',
12825     'IO::Uncompress::Inflate'=> 'cpan',
12826     'IO::Uncompress::RawInflate'=> 'cpan',
12827     'IO::Uncompress::Unzip' => 'cpan',
12828     'IO::Zlib'              => 'cpan',
12829     'IPC::Cmd'              => 'cpan',
12830     'IPC::Msg'              => 'cpan',
12831     'IPC::Semaphore'        => 'cpan',
12832     'IPC::SharedMem'        => 'cpan',
12833     'IPC::SysV'             => 'cpan',
12834     'JSON::PP'              => 'cpan',
12835     'JSON::PP::Boolean'     => 'cpan',
12836     'List::Util'            => 'cpan',
12837     'List::Util::XS'        => 'cpan',
12838     'Locale::Codes'         => 'cpan',
12839     'Locale::Codes::Constants'=> 'cpan',
12840     'Locale::Codes::Country'=> 'cpan',
12841     'Locale::Codes::Country_Codes'=> 'cpan',
12842     'Locale::Codes::Country_Retired'=> 'cpan',
12843     'Locale::Codes::Currency'=> 'cpan',
12844     'Locale::Codes::Currency_Codes'=> 'cpan',
12845     'Locale::Codes::Currency_Retired'=> 'cpan',
12846     'Locale::Codes::LangExt'=> 'cpan',
12847     'Locale::Codes::LangExt_Codes'=> 'cpan',
12848     'Locale::Codes::LangExt_Retired'=> 'cpan',
12849     'Locale::Codes::LangFam'=> 'cpan',
12850     'Locale::Codes::LangFam_Codes'=> 'cpan',
12851     'Locale::Codes::LangFam_Retired'=> 'cpan',
12852     'Locale::Codes::LangVar'=> 'cpan',
12853     'Locale::Codes::LangVar_Codes'=> 'cpan',
12854     'Locale::Codes::LangVar_Retired'=> 'cpan',
12855     'Locale::Codes::Language'=> 'cpan',
12856     'Locale::Codes::Language_Codes'=> 'cpan',
12857     'Locale::Codes::Language_Retired'=> 'cpan',
12858     'Locale::Codes::Script' => 'cpan',
12859     'Locale::Codes::Script_Codes'=> 'cpan',
12860     'Locale::Codes::Script_Retired'=> 'cpan',
12861     'Locale::Country'       => 'cpan',
12862     'Locale::Currency'      => 'cpan',
12863     'Locale::Language'      => 'cpan',
12864     'Locale::Maketext::Simple'=> 'cpan',
12865     'Locale::Script'        => 'cpan',
12866     'MIME::Base64'          => 'cpan',
12867     'MIME::QuotedPrint'     => 'cpan',
12868     'Math::BigFloat'        => 'cpan',
12869     'Math::BigFloat::Trace' => 'cpan',
12870     'Math::BigInt'          => 'cpan',
12871     'Math::BigInt::Calc'    => 'cpan',
12872     'Math::BigInt::CalcEmu' => 'cpan',
12873     'Math::BigInt::FastCalc'=> 'cpan',
12874     'Math::BigInt::Trace'   => 'cpan',
12875     'Math::BigRat'          => 'cpan',
12876     'Math::Complex'         => 'cpan',
12877     'Math::Trig'            => 'cpan',
12878     'Memoize'               => 'cpan',
12879     'Memoize::AnyDBM_File'  => 'cpan',
12880     'Memoize::Expire'       => 'cpan',
12881     'Memoize::ExpireFile'   => 'cpan',
12882     'Memoize::ExpireTest'   => 'cpan',
12883     'Memoize::NDBM_File'    => 'cpan',
12884     'Memoize::SDBM_File'    => 'cpan',
12885     'Memoize::Storable'     => 'cpan',
12886     'Module::Load'          => 'cpan',
12887     'Module::Load::Conditional'=> 'cpan',
12888     'Module::Loaded'        => 'cpan',
12889     'Module::Metadata'      => 'cpan',
12890     'Module::Metadata::corpus::BOMTest::UTF16BE'=> 'cpan',
12891     'Module::Metadata::corpus::BOMTest::UTF16LE'=> 'cpan',
12892     'Module::Metadata::corpus::BOMTest::UTF8'=> 'cpan',
12893     'NEXT'                  => 'cpan',
12894     'Net::Cmd'              => 'cpan',
12895     'Net::Config'           => 'cpan',
12896     'Net::Domain'           => 'cpan',
12897     'Net::FTP'              => 'cpan',
12898     'Net::FTP::A'           => 'cpan',
12899     'Net::FTP::E'           => 'cpan',
12900     'Net::FTP::I'           => 'cpan',
12901     'Net::FTP::L'           => 'cpan',
12902     'Net::FTP::dataconn'    => 'cpan',
12903     'Net::NNTP'             => 'cpan',
12904     'Net::Netrc'            => 'cpan',
12905     'Net::POP3'             => 'cpan',
12906     'Net::SMTP'             => 'cpan',
12907     'Net::Time'             => 'cpan',
12908     'Params::Check'         => 'cpan',
12909     'Parse::CPAN::Meta'     => 'cpan',
12910     'Perl::OSType'          => 'cpan',
12911     'PerlIO::via::QuotedPrint'=> 'cpan',
12912     'Pod::Checker'          => 'cpan',
12913     'Pod::Escapes'          => 'cpan',
12914     'Pod::Find'             => 'cpan',
12915     'Pod::InputObjects'     => 'cpan',
12916     'Pod::Man'              => 'cpan',
12917     'Pod::ParseLink'        => 'cpan',
12918     'Pod::ParseUtils'       => 'cpan',
12919     'Pod::Parser'           => 'cpan',
12920     'Pod::Perldoc'          => 'cpan',
12921     'Pod::Perldoc::BaseTo'  => 'cpan',
12922     'Pod::Perldoc::GetOptsOO'=> 'cpan',
12923     'Pod::Perldoc::ToANSI'  => 'cpan',
12924     'Pod::Perldoc::ToChecker'=> 'cpan',
12925     'Pod::Perldoc::ToMan'   => 'cpan',
12926     'Pod::Perldoc::ToNroff' => 'cpan',
12927     'Pod::Perldoc::ToPod'   => 'cpan',
12928     'Pod::Perldoc::ToRtf'   => 'cpan',
12929     'Pod::Perldoc::ToTerm'  => 'cpan',
12930     'Pod::Perldoc::ToText'  => 'cpan',
12931     'Pod::Perldoc::ToTk'    => 'cpan',
12932     'Pod::Perldoc::ToXml'   => 'cpan',
12933     'Pod::PlainText'        => 'cpan',
12934     'Pod::Select'           => 'cpan',
12935     'Pod::Simple'           => 'cpan',
12936     'Pod::Simple::BlackBox' => 'cpan',
12937     'Pod::Simple::Checker'  => 'cpan',
12938     'Pod::Simple::Debug'    => 'cpan',
12939     'Pod::Simple::DumpAsText'=> 'cpan',
12940     'Pod::Simple::DumpAsXML'=> 'cpan',
12941     'Pod::Simple::HTML'     => 'cpan',
12942     'Pod::Simple::HTMLBatch'=> 'cpan',
12943     'Pod::Simple::HTMLLegacy'=> 'cpan',
12944     'Pod::Simple::LinkSection'=> 'cpan',
12945     'Pod::Simple::Methody'  => 'cpan',
12946     'Pod::Simple::Progress' => 'cpan',
12947     'Pod::Simple::PullParser'=> 'cpan',
12948     'Pod::Simple::PullParserEndToken'=> 'cpan',
12949     'Pod::Simple::PullParserStartToken'=> 'cpan',
12950     'Pod::Simple::PullParserTextToken'=> 'cpan',
12951     'Pod::Simple::PullParserToken'=> 'cpan',
12952     'Pod::Simple::RTF'      => 'cpan',
12953     'Pod::Simple::Search'   => 'cpan',
12954     'Pod::Simple::SimpleTree'=> 'cpan',
12955     'Pod::Simple::Text'     => 'cpan',
12956     'Pod::Simple::TextContent'=> 'cpan',
12957     'Pod::Simple::TiedOutFH'=> 'cpan',
12958     'Pod::Simple::Transcode'=> 'cpan',
12959     'Pod::Simple::TranscodeDumb'=> 'cpan',
12960     'Pod::Simple::TranscodeSmart'=> 'cpan',
12961     'Pod::Simple::XHTML'    => 'cpan',
12962     'Pod::Simple::XMLOutStream'=> 'cpan',
12963     'Pod::Text'             => 'cpan',
12964     'Pod::Text::Color'      => 'cpan',
12965     'Pod::Text::Overstrike' => 'cpan',
12966     'Pod::Text::Termcap'    => 'cpan',
12967     'Pod::Usage'            => 'cpan',
12968     'Scalar::Util'          => 'cpan',
12969     'Socket'                => 'cpan',
12970     'Sub::Util'             => 'cpan',
12971     'Sys::Syslog'           => 'cpan',
12972     'Sys::Syslog::Win32'    => 'cpan',
12973     'TAP::Base'             => 'cpan',
12974     'TAP::Formatter::Base'  => 'cpan',
12975     'TAP::Formatter::Color' => 'cpan',
12976     'TAP::Formatter::Console'=> 'cpan',
12977     'TAP::Formatter::Console::ParallelSession'=> 'cpan',
12978     'TAP::Formatter::Console::Session'=> 'cpan',
12979     'TAP::Formatter::File'  => 'cpan',
12980     'TAP::Formatter::File::Session'=> 'cpan',
12981     'TAP::Formatter::Session'=> 'cpan',
12982     'TAP::Harness'          => 'cpan',
12983     'TAP::Harness::Env'     => 'cpan',
12984     'TAP::Object'           => 'cpan',
12985     'TAP::Parser'           => 'cpan',
12986     'TAP::Parser::Aggregator'=> 'cpan',
12987     'TAP::Parser::Grammar'  => 'cpan',
12988     'TAP::Parser::Iterator' => 'cpan',
12989     'TAP::Parser::Iterator::Array'=> 'cpan',
12990     'TAP::Parser::Iterator::Process'=> 'cpan',
12991     'TAP::Parser::Iterator::Stream'=> 'cpan',
12992     'TAP::Parser::IteratorFactory'=> 'cpan',
12993     'TAP::Parser::Multiplexer'=> 'cpan',
12994     'TAP::Parser::Result'   => 'cpan',
12995     'TAP::Parser::Result::Bailout'=> 'cpan',
12996     'TAP::Parser::Result::Comment'=> 'cpan',
12997     'TAP::Parser::Result::Plan'=> 'cpan',
12998     'TAP::Parser::Result::Pragma'=> 'cpan',
12999     'TAP::Parser::Result::Test'=> 'cpan',
13000     'TAP::Parser::Result::Unknown'=> 'cpan',
13001     'TAP::Parser::Result::Version'=> 'cpan',
13002     'TAP::Parser::Result::YAML'=> 'cpan',
13003     'TAP::Parser::ResultFactory'=> 'cpan',
13004     'TAP::Parser::Scheduler'=> 'cpan',
13005     'TAP::Parser::Scheduler::Job'=> 'cpan',
13006     'TAP::Parser::Scheduler::Spinner'=> 'cpan',
13007     'TAP::Parser::Source'   => 'cpan',
13008     'TAP::Parser::SourceHandler'=> 'cpan',
13009     'TAP::Parser::SourceHandler::Executable'=> 'cpan',
13010     'TAP::Parser::SourceHandler::File'=> 'cpan',
13011     'TAP::Parser::SourceHandler::Handle'=> 'cpan',
13012     'TAP::Parser::SourceHandler::Perl'=> 'cpan',
13013     'TAP::Parser::SourceHandler::RawTAP'=> 'cpan',
13014     'TAP::Parser::YAMLish::Reader'=> 'cpan',
13015     'TAP::Parser::YAMLish::Writer'=> 'cpan',
13016     'Term::ANSIColor'       => 'cpan',
13017     'Term::Cap'             => 'cpan',
13018     'Test::Builder'         => 'cpan',
13019     'Test::Builder::IO::Scalar'=> 'cpan',
13020     'Test::Builder::Module' => 'cpan',
13021     'Test::Builder::Tester' => 'cpan',
13022     'Test::Builder::Tester::Color'=> 'cpan',
13023     'Test::Harness'         => 'cpan',
13024     'Test::More'            => 'cpan',
13025     'Test::Simple'          => 'cpan',
13026     'Test::Tester'          => 'cpan',
13027     'Test::Tester::Capture' => 'cpan',
13028     'Test::Tester::CaptureRunner'=> 'cpan',
13029     'Test::Tester::Delegate'=> 'cpan',
13030     'Test::use::ok'         => 'cpan',
13031     'Text::Balanced'        => 'cpan',
13032     'Text::ParseWords'      => 'cpan',
13033     'Text::Tabs'            => 'cpan',
13034     'Text::Wrap'            => 'cpan',
13035     'Tie::RefHash'          => 'cpan',
13036     'Time::HiRes'           => 'cpan',
13037     'Time::Local'           => 'cpan',
13038     'Time::Piece'           => 'cpan',
13039     'Time::Seconds'         => 'cpan',
13040     'Unicode::Collate'      => 'cpan',
13041     'Unicode::Collate::CJK::Big5'=> 'cpan',
13042     'Unicode::Collate::CJK::GB2312'=> 'cpan',
13043     'Unicode::Collate::CJK::JISX0208'=> 'cpan',
13044     'Unicode::Collate::CJK::Korean'=> 'cpan',
13045     'Unicode::Collate::CJK::Pinyin'=> 'cpan',
13046     'Unicode::Collate::CJK::Stroke'=> 'cpan',
13047     'Unicode::Collate::CJK::Zhuyin'=> 'cpan',
13048     'Unicode::Collate::Locale'=> 'cpan',
13049     'Unicode::Normalize'    => 'cpan',
13050     'Win32'                 => 'cpan',
13051     'Win32API::File'        => 'cpan',
13052     'Win32API::File::ExtUtils::Myconst2perl'=> 'cpan',
13053     'autodie'               => 'cpan',
13054     'autodie::Scope::Guard' => 'cpan',
13055     'autodie::Scope::GuardStack'=> 'cpan',
13056     'autodie::Util'         => 'cpan',
13057     'autodie::exception'    => 'cpan',
13058     'autodie::exception::system'=> 'cpan',
13059     'autodie::hints'        => 'cpan',
13060     'autodie::skip'         => 'cpan',
13061     'bigint'                => 'cpan',
13062     'bignum'                => 'cpan',
13063     'bigrat'                => 'cpan',
13064     'encoding'              => 'cpan',
13065     'encoding::warnings'    => 'cpan',
13066     'experimental'          => 'cpan',
13067     'ok'                    => 'cpan',
13068     'parent'                => 'cpan',
13069     'perlfaq'               => 'cpan',
13070     'version'               => 'cpan',
13071     'version::regex'        => 'cpan',
13072 );
13073
13074 %bug_tracker = (
13075     'App::Cpan'             => undef,
13076     'App::Prove'            => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13077     'App::Prove::State'     => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13078     'App::Prove::State::Result'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13079     'App::Prove::State::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13080     'Archive::Tar'          => undef,
13081     'Archive::Tar::Constant'=> undef,
13082     'Archive::Tar::File'    => undef,
13083     'B::Debug'              => undef,
13084     'CPAN'                  => undef,
13085     'CPAN::Author'          => undef,
13086     'CPAN::Bundle'          => undef,
13087     'CPAN::CacheMgr'        => undef,
13088     'CPAN::Complete'        => undef,
13089     'CPAN::Debug'           => undef,
13090     'CPAN::DeferredCode'    => undef,
13091     'CPAN::Distribution'    => undef,
13092     'CPAN::Distroprefs'     => undef,
13093     'CPAN::Distrostatus'    => undef,
13094     'CPAN::Exception::RecursiveDependency'=> undef,
13095     'CPAN::Exception::blocked_urllist'=> undef,
13096     'CPAN::Exception::yaml_not_installed'=> undef,
13097     'CPAN::Exception::yaml_process_error'=> undef,
13098     'CPAN::FTP'             => undef,
13099     'CPAN::FTP::netrc'      => undef,
13100     'CPAN::FirstTime'       => undef,
13101     'CPAN::HTTP::Client'    => undef,
13102     'CPAN::HTTP::Credentials'=> undef,
13103     'CPAN::HandleConfig'    => undef,
13104     'CPAN::Index'           => undef,
13105     'CPAN::InfoObj'         => undef,
13106     'CPAN::Kwalify'         => undef,
13107     'CPAN::LWP::UserAgent'  => undef,
13108     'CPAN::Meta'            => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
13109     'CPAN::Meta::Converter' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
13110     'CPAN::Meta::Feature'   => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
13111     'CPAN::Meta::History'   => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
13112     'CPAN::Meta::Merge'     => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
13113     'CPAN::Meta::Prereqs'   => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
13114     'CPAN::Meta::Requirements'=> 'https://github.com/dagolden/CPAN-Meta-Requirements/issues',
13115     'CPAN::Meta::Spec'      => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
13116     'CPAN::Meta::Validator' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
13117     'CPAN::Meta::YAML'      => 'https://github.com/Perl-Toolchain-Gang/YAML-Tiny/issues',
13118     'CPAN::Mirrors'         => undef,
13119     'CPAN::Module'          => undef,
13120     'CPAN::Nox'             => undef,
13121     'CPAN::Plugin'          => undef,
13122     'CPAN::Plugin::Specfile'=> undef,
13123     'CPAN::Prompt'          => undef,
13124     'CPAN::Queue'           => undef,
13125     'CPAN::Shell'           => undef,
13126     'CPAN::Tarzip'          => undef,
13127     'CPAN::URL'             => undef,
13128     'CPAN::Version'         => undef,
13129     'Compress::Raw::Bzip2'  => undef,
13130     'Compress::Raw::Zlib'   => undef,
13131     'Compress::Zlib'        => undef,
13132     'Config::Perl::V'       => undef,
13133     'DB_File'               => undef,
13134     'Devel::PPPort'         => 'https://github.com/mhx/Devel-PPPort/issues/',
13135     'Digest'                => undef,
13136     'Digest::MD5'           => undef,
13137     'Digest::SHA'           => undef,
13138     'Digest::base'          => undef,
13139     'Digest::file'          => undef,
13140     'Encode'                => undef,
13141     'Encode::Alias'         => undef,
13142     'Encode::Byte'          => undef,
13143     'Encode::CJKConstants'  => undef,
13144     'Encode::CN'            => undef,
13145     'Encode::CN::HZ'        => undef,
13146     'Encode::Config'        => undef,
13147     'Encode::EBCDIC'        => undef,
13148     'Encode::Encoder'       => undef,
13149     'Encode::Encoding'      => undef,
13150     'Encode::GSM0338'       => undef,
13151     'Encode::Guess'         => undef,
13152     'Encode::JP'            => undef,
13153     'Encode::JP::H2Z'       => undef,
13154     'Encode::JP::JIS7'      => undef,
13155     'Encode::KR'            => undef,
13156     'Encode::KR::2022_KR'   => undef,
13157     'Encode::MIME::Header'  => undef,
13158     'Encode::MIME::Header::ISO_2022_JP'=> undef,
13159     'Encode::MIME::Name'    => undef,
13160     'Encode::Symbol'        => undef,
13161     'Encode::TW'            => undef,
13162     'Encode::Unicode'       => undef,
13163     'Encode::Unicode::UTF7' => undef,
13164     'ExtUtils::Command'     => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13165     'ExtUtils::Command::MM' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13166     'ExtUtils::Constant'    => undef,
13167     'ExtUtils::Constant::Base'=> undef,
13168     'ExtUtils::Constant::ProxySubs'=> undef,
13169     'ExtUtils::Constant::Utils'=> undef,
13170     'ExtUtils::Constant::XS'=> undef,
13171     'ExtUtils::Install'     => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
13172     'ExtUtils::Installed'   => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
13173     'ExtUtils::Liblist'     => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13174     'ExtUtils::Liblist::Kid'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13175     'ExtUtils::MM'          => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13176     'ExtUtils::MM_AIX'      => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13177     'ExtUtils::MM_Any'      => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13178     'ExtUtils::MM_BeOS'     => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13179     'ExtUtils::MM_Cygwin'   => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13180     'ExtUtils::MM_DOS'      => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13181     'ExtUtils::MM_Darwin'   => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13182     'ExtUtils::MM_MacOS'    => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13183     'ExtUtils::MM_NW5'      => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13184     'ExtUtils::MM_OS2'      => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13185     'ExtUtils::MM_QNX'      => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13186     'ExtUtils::MM_UWIN'     => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13187     'ExtUtils::MM_Unix'     => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13188     'ExtUtils::MM_VMS'      => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13189     'ExtUtils::MM_VOS'      => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13190     'ExtUtils::MM_Win32'    => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13191     'ExtUtils::MM_Win95'    => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13192     'ExtUtils::MY'          => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13193     'ExtUtils::MakeMaker'   => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13194     'ExtUtils::MakeMaker::Config'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13195     'ExtUtils::MakeMaker::Locale'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13196     'ExtUtils::MakeMaker::version'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13197     'ExtUtils::MakeMaker::version::regex'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13198     'ExtUtils::Manifest'    => 'http://github.com/Perl-Toolchain-Gang/ExtUtils-Manifest/issues',
13199     'ExtUtils::Mkbootstrap' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13200     'ExtUtils::Mksymlists'  => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13201     'ExtUtils::Packlist'    => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
13202     'ExtUtils::testlib'     => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
13203     'Fatal'                 => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
13204     'File::Fetch'           => undef,
13205     'File::GlobMapper'      => undef,
13206     'File::Path'            => undef,
13207     'File::Temp'            => 'http://rt.cpan.org/Public/Dist/Display.html?Name=File-Temp',
13208     'Filter::Util::Call'    => undef,
13209     'Getopt::Long'          => undef,
13210     'HTTP::Tiny'            => 'https://github.com/chansen/p5-http-tiny/issues',
13211     'IO::Compress::Adapter::Bzip2'=> undef,
13212     'IO::Compress::Adapter::Deflate'=> undef,
13213     'IO::Compress::Adapter::Identity'=> undef,
13214     'IO::Compress::Base'    => undef,
13215     'IO::Compress::Base::Common'=> undef,
13216     'IO::Compress::Bzip2'   => undef,
13217     'IO::Compress::Deflate' => undef,
13218     'IO::Compress::Gzip'    => undef,
13219     'IO::Compress::Gzip::Constants'=> undef,
13220     'IO::Compress::RawDeflate'=> undef,
13221     'IO::Compress::Zip'     => undef,
13222     'IO::Compress::Zip::Constants'=> undef,
13223     'IO::Compress::Zlib::Constants'=> undef,
13224     'IO::Compress::Zlib::Extra'=> undef,
13225     'IO::Socket::IP'        => undef,
13226     'IO::Uncompress::Adapter::Bunzip2'=> undef,
13227     'IO::Uncompress::Adapter::Identity'=> undef,
13228     'IO::Uncompress::Adapter::Inflate'=> undef,
13229     'IO::Uncompress::AnyInflate'=> undef,
13230     'IO::Uncompress::AnyUncompress'=> undef,
13231     'IO::Uncompress::Base'  => undef,
13232     'IO::Uncompress::Bunzip2'=> undef,
13233     'IO::Uncompress::Gunzip'=> undef,
13234     'IO::Uncompress::Inflate'=> undef,
13235     'IO::Uncompress::RawInflate'=> undef,
13236     'IO::Uncompress::Unzip' => undef,
13237     'IO::Zlib'              => undef,
13238     'IPC::Cmd'              => undef,
13239     'IPC::Msg'              => undef,
13240     'IPC::Semaphore'        => undef,
13241     'IPC::SharedMem'        => undef,
13242     'IPC::SysV'             => undef,
13243     'JSON::PP'              => undef,
13244     'JSON::PP::Boolean'     => undef,
13245     'List::Util'            => undef,
13246     'List::Util::XS'        => undef,
13247     'Locale::Codes'         => undef,
13248     'Locale::Codes::Constants'=> undef,
13249     'Locale::Codes::Country'=> undef,
13250     'Locale::Codes::Country_Codes'=> undef,
13251     'Locale::Codes::Country_Retired'=> undef,
13252     'Locale::Codes::Currency'=> undef,
13253     'Locale::Codes::Currency_Codes'=> undef,
13254     'Locale::Codes::Currency_Retired'=> undef,
13255     'Locale::Codes::LangExt'=> undef,
13256     'Locale::Codes::LangExt_Codes'=> undef,
13257     'Locale::Codes::LangExt_Retired'=> undef,
13258     'Locale::Codes::LangFam'=> undef,
13259     'Locale::Codes::LangFam_Codes'=> undef,
13260     'Locale::Codes::LangFam_Retired'=> undef,
13261     'Locale::Codes::LangVar'=> undef,
13262     'Locale::Codes::LangVar_Codes'=> undef,
13263     'Locale::Codes::LangVar_Retired'=> undef,
13264     'Locale::Codes::Language'=> undef,
13265     'Locale::Codes::Language_Codes'=> undef,
13266     'Locale::Codes::Language_Retired'=> undef,
13267     'Locale::Codes::Script' => undef,
13268     'Locale::Codes::Script_Codes'=> undef,
13269     'Locale::Codes::Script_Retired'=> undef,
13270     'Locale::Country'       => undef,
13271     'Locale::Currency'      => undef,
13272     'Locale::Language'      => undef,
13273     'Locale::Maketext::Simple'=> undef,
13274     'Locale::Script'        => undef,
13275     'MIME::Base64'          => undef,
13276     'MIME::QuotedPrint'     => undef,
13277     'Math::BigFloat'        => undef,
13278     'Math::BigFloat::Trace' => undef,
13279     'Math::BigInt'          => undef,
13280     'Math::BigInt::Calc'    => undef,
13281     'Math::BigInt::CalcEmu' => undef,
13282     'Math::BigInt::FastCalc'=> undef,
13283     'Math::BigInt::Trace'   => undef,
13284     'Math::BigRat'          => undef,
13285     'Math::Complex'         => undef,
13286     'Math::Trig'            => undef,
13287     'Memoize'               => undef,
13288     'Memoize::AnyDBM_File'  => undef,
13289     'Memoize::Expire'       => undef,
13290     'Memoize::ExpireFile'   => undef,
13291     'Memoize::ExpireTest'   => undef,
13292     'Memoize::NDBM_File'    => undef,
13293     'Memoize::SDBM_File'    => undef,
13294     'Memoize::Storable'     => undef,
13295     'Module::Load'          => undef,
13296     'Module::Load::Conditional'=> undef,
13297     'Module::Loaded'        => undef,
13298     'Module::Metadata'      => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata',
13299     'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13300     'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13301     'Module::Metadata::corpus::BOMTest::UTF8'=> undef,
13302     'NEXT'                  => undef,
13303     'Net::Cmd'              => undef,
13304     'Net::Config'           => undef,
13305     'Net::Domain'           => undef,
13306     'Net::FTP'              => undef,
13307     'Net::FTP::A'           => undef,
13308     'Net::FTP::E'           => undef,
13309     'Net::FTP::I'           => undef,
13310     'Net::FTP::L'           => undef,
13311     'Net::FTP::dataconn'    => undef,
13312     'Net::NNTP'             => undef,
13313     'Net::Netrc'            => undef,
13314     'Net::POP3'             => undef,
13315     'Net::SMTP'             => undef,
13316     'Net::Time'             => undef,
13317     'Params::Check'         => undef,
13318     'Parse::CPAN::Meta'     => 'https://github.com/Perl-Toolchain-Gang/Parse-CPAN-Meta/issues',
13319     'Perl::OSType'          => 'https://github.com/Perl-Toolchain-Gang/Perl-OSType/issues',
13320     'PerlIO::via::QuotedPrint'=> undef,
13321     'Pod::Checker'          => undef,
13322     'Pod::Escapes'          => undef,
13323     'Pod::Find'             => undef,
13324     'Pod::InputObjects'     => undef,
13325     'Pod::Man'              => undef,
13326     'Pod::ParseLink'        => undef,
13327     'Pod::ParseUtils'       => undef,
13328     'Pod::Parser'           => undef,
13329     'Pod::Perldoc'          => undef,
13330     'Pod::Perldoc::BaseTo'  => undef,
13331     'Pod::Perldoc::GetOptsOO'=> undef,
13332     'Pod::Perldoc::ToANSI'  => undef,
13333     'Pod::Perldoc::ToChecker'=> undef,
13334     'Pod::Perldoc::ToMan'   => undef,
13335     'Pod::Perldoc::ToNroff' => undef,
13336     'Pod::Perldoc::ToPod'   => undef,
13337     'Pod::Perldoc::ToRtf'   => undef,
13338     'Pod::Perldoc::ToTerm'  => undef,
13339     'Pod::Perldoc::ToText'  => undef,
13340     'Pod::Perldoc::ToTk'    => undef,
13341     'Pod::Perldoc::ToXml'   => undef,
13342     'Pod::PlainText'        => undef,
13343     'Pod::Select'           => undef,
13344     'Pod::Simple'           => 'https://github.com/perl-pod/pod-simple/issues',
13345     'Pod::Simple::BlackBox' => 'https://github.com/perl-pod/pod-simple/issues',
13346     'Pod::Simple::Checker'  => 'https://github.com/perl-pod/pod-simple/issues',
13347     'Pod::Simple::Debug'    => 'https://github.com/perl-pod/pod-simple/issues',
13348     'Pod::Simple::DumpAsText'=> 'https://github.com/perl-pod/pod-simple/issues',
13349     'Pod::Simple::DumpAsXML'=> 'https://github.com/perl-pod/pod-simple/issues',
13350     'Pod::Simple::HTML'     => 'https://github.com/perl-pod/pod-simple/issues',
13351     'Pod::Simple::HTMLBatch'=> 'https://github.com/perl-pod/pod-simple/issues',
13352     'Pod::Simple::HTMLLegacy'=> 'https://github.com/perl-pod/pod-simple/issues',
13353     'Pod::Simple::LinkSection'=> 'https://github.com/perl-pod/pod-simple/issues',
13354     'Pod::Simple::Methody'  => 'https://github.com/perl-pod/pod-simple/issues',
13355     'Pod::Simple::Progress' => 'https://github.com/perl-pod/pod-simple/issues',
13356     'Pod::Simple::PullParser'=> 'https://github.com/perl-pod/pod-simple/issues',
13357     'Pod::Simple::PullParserEndToken'=> 'https://github.com/perl-pod/pod-simple/issues',
13358     'Pod::Simple::PullParserStartToken'=> 'https://github.com/perl-pod/pod-simple/issues',
13359     'Pod::Simple::PullParserTextToken'=> 'https://github.com/perl-pod/pod-simple/issues',
13360     'Pod::Simple::PullParserToken'=> 'https://github.com/perl-pod/pod-simple/issues',
13361     'Pod::Simple::RTF'      => 'https://github.com/perl-pod/pod-simple/issues',
13362     'Pod::Simple::Search'   => 'https://github.com/perl-pod/pod-simple/issues',
13363     'Pod::Simple::SimpleTree'=> 'https://github.com/perl-pod/pod-simple/issues',
13364     'Pod::Simple::Text'     => 'https://github.com/perl-pod/pod-simple/issues',
13365     'Pod::Simple::TextContent'=> 'https://github.com/perl-pod/pod-simple/issues',
13366     'Pod::Simple::TiedOutFH'=> 'https://github.com/perl-pod/pod-simple/issues',
13367     'Pod::Simple::Transcode'=> 'https://github.com/perl-pod/pod-simple/issues',
13368     'Pod::Simple::TranscodeDumb'=> 'https://github.com/perl-pod/pod-simple/issues',
13369     'Pod::Simple::TranscodeSmart'=> 'https://github.com/perl-pod/pod-simple/issues',
13370     'Pod::Simple::XHTML'    => 'https://github.com/perl-pod/pod-simple/issues',
13371     'Pod::Simple::XMLOutStream'=> 'https://github.com/perl-pod/pod-simple/issues',
13372     'Pod::Text'             => undef,
13373     'Pod::Text::Color'      => undef,
13374     'Pod::Text::Overstrike' => undef,
13375     'Pod::Text::Termcap'    => undef,
13376     'Pod::Usage'            => undef,
13377     'Scalar::Util'          => undef,
13378     'Socket'                => undef,
13379     'Sub::Util'             => undef,
13380     'Sys::Syslog'           => undef,
13381     'Sys::Syslog::Win32'    => undef,
13382     'TAP::Base'             => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13383     'TAP::Formatter::Base'  => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13384     'TAP::Formatter::Color' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13385     'TAP::Formatter::Console'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13386     'TAP::Formatter::Console::ParallelSession'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13387     'TAP::Formatter::Console::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13388     'TAP::Formatter::File'  => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13389     'TAP::Formatter::File::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13390     'TAP::Formatter::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13391     'TAP::Harness'          => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13392     'TAP::Harness::Env'     => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13393     'TAP::Object'           => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13394     'TAP::Parser'           => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13395     'TAP::Parser::Aggregator'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13396     'TAP::Parser::Grammar'  => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13397     'TAP::Parser::Iterator' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13398     'TAP::Parser::Iterator::Array'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13399     'TAP::Parser::Iterator::Process'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13400     'TAP::Parser::Iterator::Stream'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13401     'TAP::Parser::IteratorFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13402     'TAP::Parser::Multiplexer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13403     'TAP::Parser::Result'   => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13404     'TAP::Parser::Result::Bailout'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13405     'TAP::Parser::Result::Comment'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13406     'TAP::Parser::Result::Plan'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13407     'TAP::Parser::Result::Pragma'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13408     'TAP::Parser::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13409     'TAP::Parser::Result::Unknown'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13410     'TAP::Parser::Result::Version'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13411     'TAP::Parser::Result::YAML'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13412     'TAP::Parser::ResultFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13413     'TAP::Parser::Scheduler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13414     'TAP::Parser::Scheduler::Job'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13415     'TAP::Parser::Scheduler::Spinner'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13416     'TAP::Parser::Source'   => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13417     'TAP::Parser::SourceHandler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13418     'TAP::Parser::SourceHandler::Executable'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13419     'TAP::Parser::SourceHandler::File'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13420     'TAP::Parser::SourceHandler::Handle'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13421     'TAP::Parser::SourceHandler::Perl'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13422     'TAP::Parser::SourceHandler::RawTAP'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13423     'TAP::Parser::YAMLish::Reader'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13424     'TAP::Parser::YAMLish::Writer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13425     'Term::ANSIColor'       => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Term-ANSIColor',
13426     'Term::Cap'             => undef,
13427     'Test::Builder'         => 'http://github.com/Test-More/test-more/issues/',
13428     'Test::Builder::IO::Scalar'=> 'http://github.com/Test-More/test-more/issues/',
13429     'Test::Builder::Module' => 'http://github.com/Test-More/test-more/issues/',
13430     'Test::Builder::Tester' => 'http://github.com/Test-More/test-more/issues/',
13431     'Test::Builder::Tester::Color'=> 'http://github.com/Test-More/test-more/issues/',
13432     'Test::Harness'         => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
13433     'Test::More'            => 'http://github.com/Test-More/test-more/issues/',
13434     'Test::Simple'          => 'http://github.com/Test-More/test-more/issues/',
13435     'Test::Tester'          => 'http://github.com/Test-More/test-more/issues/',
13436     'Test::Tester::Capture' => 'http://github.com/Test-More/test-more/issues/',
13437     'Test::Tester::CaptureRunner'=> 'http://github.com/Test-More/test-more/issues/',
13438     'Test::Tester::Delegate'=> 'http://github.com/Test-More/test-more/issues/',
13439     'Test::use::ok'         => 'http://github.com/Test-More/test-more/issues/',
13440     'Text::Balanced'        => undef,
13441     'Text::ParseWords'      => undef,
13442     'Text::Tabs'            => undef,
13443     'Text::Wrap'            => undef,
13444     'Tie::RefHash'          => undef,
13445     'Time::HiRes'           => undef,
13446     'Time::Local'           => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Time-Local',
13447     'Time::Piece'           => undef,
13448     'Time::Seconds'         => undef,
13449     'Unicode::Collate'      => undef,
13450     'Unicode::Collate::CJK::Big5'=> undef,
13451     'Unicode::Collate::CJK::GB2312'=> undef,
13452     'Unicode::Collate::CJK::JISX0208'=> undef,
13453     'Unicode::Collate::CJK::Korean'=> undef,
13454     'Unicode::Collate::CJK::Pinyin'=> undef,
13455     'Unicode::Collate::CJK::Stroke'=> undef,
13456     'Unicode::Collate::CJK::Zhuyin'=> undef,
13457     'Unicode::Collate::Locale'=> undef,
13458     'Unicode::Normalize'    => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Unicode-Normalize',
13459     'Win32'                 => undef,
13460     'Win32API::File'        => undef,
13461     'Win32API::File::ExtUtils::Myconst2perl'=> undef,
13462     'autodie'               => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
13463     'autodie::Scope::Guard' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
13464     'autodie::Scope::GuardStack'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
13465     'autodie::Util'         => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
13466     'autodie::exception'    => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
13467     'autodie::exception::system'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
13468     'autodie::hints'        => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
13469     'autodie::skip'         => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
13470     'bigint'                => undef,
13471     'bignum'                => undef,
13472     'bigrat'                => undef,
13473     'encoding'              => undef,
13474     'encoding::warnings'    => undef,
13475     'experimental'          => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental',
13476     'ok'                    => 'http://github.com/Test-More/test-more/issues/',
13477     'parent'                => undef,
13478     'perlfaq'               => 'https://github.com/perl-doc-cats/perlfaq/issues',
13479     'version'               => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
13480     'version::regex'        => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
13481 );
13482
13483 # Create aliases with trailing zeros for $] use
13484
13485 $released{'5.000'} = $released{5};
13486 $version{'5.000'} = $version{5};
13487
13488 _create_aliases(\%delta);
13489 _create_aliases(\%released);
13490 _create_aliases(\%version);
13491 _create_aliases(\%deprecated);
13492
13493 sub _create_aliases {
13494     my ($hash) = @_;
13495
13496     for my $version (keys %$hash) {
13497         next unless $version >= 5.006;
13498
13499         my $padded = sprintf "%0.6f", $version;
13500
13501         # If the version in string form isn't the same as the numeric version,
13502         # alias it.
13503         if ($padded ne $version && $version == $padded) {
13504             $hash->{$padded} = $hash->{$version};
13505         }
13506     }
13507 }
13508
13509 1;
13510 __END__