This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Replace multiple 'use vars' by 'our' in dist
[perl5.git] / dist / Module-CoreList / lib / Module / CoreList.pm
1 package Module::CoreList;
2 use strict;
3
4 our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta );
5
6 use version;
7 our $VERSION = '5.20171120';
8
9 sub PKG_PATTERN () { q#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z# }
10 sub _looks_like_invocant ($) { local $@; !!eval { $_[0]->isa(__PACKAGE__) } }
11
12 sub _undelta {
13     my ($delta) = @_;
14     my (%expanded, $delta_from, $base, $changed, $removed);
15     for my $v (sort keys %$delta) {
16         ($delta_from, $changed, $removed) = @{$delta->{$v}}{qw( delta_from changed removed )};
17         $base = $delta_from ? $expanded{$delta_from} : {};
18         my %full = ( %$base, %{$changed || {}} );
19         delete @full{ keys %$removed };
20         $expanded{$v} = \%full;
21     }
22     return %expanded;
23 }
24
25 sub _released_order {   # Sort helper, to make '?' sort after everything else
26     (substr($released{$a}, 0, 1) eq "?")
27     ? ((substr($released{$b}, 0, 1) eq "?")
28         ? 0
29         : 1)
30     : ((substr($released{$b}, 0, 1) eq "?")
31         ? -1
32         : $released{$a} cmp $released{$b} )
33 }
34
35 my $dumpinc = 0;
36 sub import {
37     my $self = shift;
38     my $what = shift || '';
39     if ($what eq 'dumpinc') {
40         $dumpinc = 1;
41     }
42 }
43
44 END {
45     print "---INC---\n", join "\n" => keys %INC
46       if $dumpinc;
47 }
48
49
50 sub first_release_raw {
51     shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
52     my $module = shift;
53     my $version = shift;
54
55     my @perls = $version
56         ? grep { defined $version{$_}{ $module } &&
57                         $version{$_}{ $module } ge $version } keys %version
58         : grep { exists $version{$_}{ $module }             } keys %version;
59
60     return @perls;
61 }
62
63 sub first_release_by_date {
64     my @perls = &first_release_raw;
65     return unless @perls;
66     return (sort _released_order @perls)[0];
67 }
68
69 sub first_release {
70     my @perls = &first_release_raw;
71     return unless @perls;
72     return (sort { $a cmp $b } @perls)[0];
73 }
74
75 sub find_modules {
76     shift if _looks_like_invocant $_[0];
77     my $regex = shift;
78     my @perls = @_ ? @_ : keys %version;
79
80     my %mods;
81     foreach (@perls) {
82         while (my ($k, $v) = each %{$version{$_}}) {
83             $mods{$k}++ if $k =~ $regex;
84         }
85     }
86     return sort keys %mods
87 }
88
89 sub find_version {
90     shift if _looks_like_invocant $_[0];
91     my $v = shift;
92     return $version{$v} if defined $v and defined $version{$v};
93     return;
94 }
95
96 sub is_deprecated {
97     shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
98     my $module = shift;
99     my $perl_version = shift || $];
100     return unless $module && exists $deprecated{$perl_version}{$module};
101     return $deprecated{$perl_version}{$module};
102 }
103
104 sub deprecated_in {
105     shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
106     my $module = shift or return;
107     my @perls = grep { exists $deprecated{$_}{$module} } keys %deprecated;
108     return unless @perls;
109     require List::Util;
110     return List::Util::minstr(@perls);
111 }
112
113 sub removed_from {
114   my @perls = &removed_raw;
115   return shift @perls;
116 }
117
118 sub removed_from_by_date {
119   my @perls = sort _released_order &removed_raw;
120   return shift @perls;
121 }
122
123 sub removed_raw {
124   shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
125   my $mod = shift;
126   return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
127   my $last = pop @perls;
128   my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
129   return @removed;
130 }
131
132 sub changes_between {
133   shift if _looks_like_invocant $_[0];
134   my $left_ver = shift;
135   my $right_ver = shift;
136
137   my $left  = $version{ $left_ver };
138   my $right = $version{ $right_ver };
139
140   my %uniq = (%$left, %$right);
141
142   my %changes;
143   for my $lib (keys %uniq) {
144       my $lhs = exists $left->{ $lib }
145               ? (defined $left->{ $lib } ? $left->{ $lib } : '(undef)')
146               : '(absent)';
147       my $rhs = exists $right->{ $lib }
148               ? (defined $right->{ $lib } ? $right->{ $lib } : '(undef)')
149               : '(absent)';
150
151       next if $lhs eq $rhs;
152
153       my $change = {
154         (exists $left->{$lib}  ? (left  => $left->{$lib})  : ()),
155         (exists $right->{$lib} ? (right => $right->{$lib}) : ()),
156       };
157
158       $changes{$lib} = $change;
159   }
160
161   return %changes;
162 }
163
164 # When things escaped.
165 # NB. If you put version numbers with trailing zeroes here, you
166 # should also add an alias for the numerical ($]) version; see
167 # just before the __END__ of this module.
168 %released = (
169     5.000    => '1994-10-17',
170     5.001    => '1995-03-14',
171     5.002    => '1996-02-29',
172     5.00307  => '1996-10-10',
173     5.004    => '1997-05-15',
174     5.005    => '1998-07-22',
175     5.00503  => '1999-03-28',
176     5.00405  => '1999-04-29',
177     5.006    => '2000-03-22',
178     5.006001 => '2001-04-08',
179     5.007003 => '2002-03-05',
180     5.008    => '2002-07-19',
181     5.008001 => '2003-09-25',
182     5.009    => '2003-10-27',
183     5.008002 => '2003-11-05',
184     5.006002 => '2003-11-15',
185     5.008003 => '2004-01-14',
186     5.00504  => '2004-02-23',
187     5.009001 => '2004-03-16',
188     5.008004 => '2004-04-21',
189     5.008005 => '2004-07-19',
190     5.008006 => '2004-11-27',
191     5.009002 => '2005-04-01',
192     5.008007 => '2005-05-30',
193     5.009003 => '2006-01-28',
194     5.008008 => '2006-01-31',
195     5.009004 => '2006-08-15',
196     5.009005 => '2007-07-07',
197     5.010000 => '2007-12-18',
198     5.008009 => '2008-12-14',
199     5.010001 => '2009-08-22',
200     5.011000 => '2009-10-02',
201     5.011001 => '2009-10-20',
202     5.011002 => '2009-11-20',
203     5.011003 => '2009-12-20',
204     5.011004 => '2010-01-20',
205     5.011005 => '2010-02-20',
206     5.012000 => '2010-04-12',
207     5.013000 => '2010-04-20',
208     5.012001 => '2010-05-16',
209     5.013001 => '2010-05-20',
210     5.013002 => '2010-06-22',
211     5.013003 => '2010-07-20',
212     5.013004 => '2010-08-20',
213     5.012002 => '2010-09-06',
214     5.013005 => '2010-09-19',
215     5.013006 => '2010-10-20',
216     5.013007 => '2010-11-20',
217     5.013008 => '2010-12-20',
218     5.012003 => '2011-01-21',
219     5.013009 => '2011-01-20',
220     5.013010 => '2011-02-20',
221     5.013011 => '2011-03-20',
222     5.014000 => '2011-05-14',
223     5.012004 => '2011-06-20',
224     5.012005 => '2012-11-10',
225     5.014001 => '2011-06-16',
226     5.015000 => '2011-06-20',
227     5.015001 => '2011-07-20',
228     5.015002 => '2011-08-20',
229     5.014002 => '2011-09-26',
230     5.015003 => '2011-09-20',
231     5.015004 => '2011-10-20',
232     5.015005 => '2011-11-20',
233     5.015006 => '2011-12-20',
234     5.015007 => '2012-01-20',
235     5.015008 => '2012-02-20',
236     5.015009 => '2012-03-20',
237     5.016000 => '2012-05-20',
238     5.016001 => '2012-08-08',
239     5.016002 => '2012-11-01',
240     5.017000 => '2012-05-26',
241     5.017001 => '2012-06-20',
242     5.017002 => '2012-07-20',
243     5.017003 => '2012-08-20',
244     5.017004 => '2012-09-20',
245     5.014003 => '2012-10-12',
246     5.017005 => '2012-10-20',
247     5.017006 => '2012-11-20',
248     5.017007 => '2012-12-18',
249     5.017008 => '2013-01-20',
250     5.017009 => '2013-02-20',
251     5.014004 => '2013-03-10',
252     5.016003 => '2013-03-11',
253     5.017010 => '2013-03-21',
254     5.017011 => '2013-04-20',
255     5.018000 => '2013-05-18',
256     5.019000 => '2013-05-20',
257     5.019001 => '2013-06-21',
258     5.019002 => '2013-07-22',
259     5.018001 => '2013-08-12',
260     5.019003 => '2013-08-20',
261     5.019004 => '2013-09-20',
262     5.019005 => '2013-10-20',
263     5.019006 => '2013-11-20',
264     5.019007 => '2013-12-20',
265     5.018002 => '2014-01-06',
266     5.018003 => '2014-10-01',
267     5.018004 => '2014-10-01',
268     5.019008 => '2014-01-20',
269     5.019009 => '2014-02-20',
270     5.01901  => '2014-03-20',
271     5.019011 => '2014-04-20',
272     5.020000 => '2014-05-27',
273     5.021000 => '2014-05-27',
274     5.021001 => '2014-06-20',
275     5.021002 => '2014-07-20',
276     5.021003 => '2014-08-20',
277     5.020001 => '2014-09-14',
278     5.021004 => '2014-09-20',
279     5.021005 => '2014-10-20',
280     5.021006 => '2014-11-20',
281     5.021007 => '2014-12-20',
282     5.021008 => '2015-01-20',
283     5.020002 => '2015-02-14',
284     5.021009 => '2015-02-21',
285     5.021010 => '2015-03-20',
286     5.021011 => '2015-04-20',
287     5.022000 => '2015-06-01',
288     5.023000 => '2015-06-20',
289     5.023001 => '2015-07-20',
290     5.023002 => '2015-08-20',
291     5.020003 => '2015-09-12',
292     5.023003 => '2015-09-20',
293     5.023004 => '2015-10-20',
294     5.023005 => '2015-11-20',
295     5.022001 => '2015-12-13',
296     5.023006 => '2015-12-21',
297     5.023007 => '2016-01-20',
298     5.023008 => '2016-02-20',
299     5.023009 => '2016-03-20',
300     5.022002 => '2016-04-29',
301     5.024000 => '2016-05-09',
302     5.025000 => '2016-05-09',
303     5.025001 => '2016-05-20',
304     5.025002 => '2016-06-20',
305     5.025003 => '2016-07-20',
306     5.025004 => '2016-08-20',
307     5.025005 => '2016-09-20',
308     5.025006 => '2016-10-20',
309     5.025007 => '2016-11-20',
310     5.025008 => '2016-12-20',
311     5.022003 => '2017-01-14',
312     5.024001 => '2017-01-14',
313     5.025009 => '2017-01-20',
314     5.025010 => '2017-02-20',
315     5.025011 => '2017-03-20',
316     5.025012 => '2017-04-20',
317     5.026000 => '2017-05-30',
318     5.027000 => '2017-05-31',
319     5.027001 => '2017-06-20',
320     5.022004 => '2017-07-15',
321     5.024002 => '2017-07-15',
322     5.027002 => '2017-07-20',
323     5.027003 => '2017-08-21',
324     5.027004 => '2017-09-20',
325     5.024003 => '2017-09-22',
326     5.026001 => '2017-09-22',
327     5.027005 => '2017-10-20',
328     5.027006 => '2017-11-20',
329   );
330
331 for my $version ( sort { $a <=> $b } keys %released ) {
332     my $family = int ($version * 1000) / 1000;
333     push @{ $families{ $family }} , $version;
334 }
335
336 %delta = (
337     5 => {
338         changed => {
339             'AnyDBM_File'           => undef,
340             'AutoLoader'            => undef,
341             'AutoSplit'             => undef,
342             'Benchmark'             => undef,
343             'Carp'                  => undef,
344             'Cwd'                   => undef,
345             'DB_File'               => undef,
346             'DynaLoader'            => undef,
347             'English'               => undef,
348             'Env'                   => undef,
349             'Exporter'              => undef,
350             'ExtUtils::MakeMaker'   => undef,
351             'Fcntl'                 => undef,
352             'File::Basename'        => undef,
353             'File::CheckTree'       => undef,
354             'File::Find'            => undef,
355             'FileHandle'            => undef,
356             'GDBM_File'             => undef,
357             'Getopt::Long'          => undef,
358             'Getopt::Std'           => undef,
359             'I18N::Collate'         => undef,
360             'IPC::Open2'            => undef,
361             'IPC::Open3'            => undef,
362             'Math::BigFloat'        => undef,
363             'Math::BigInt'          => undef,
364             'Math::Complex'         => undef,
365             'NDBM_File'             => undef,
366             'Net::Ping'             => undef,
367             'ODBM_File'             => undef,
368             'POSIX'                 => undef,
369             'SDBM_File'             => undef,
370             'Search::Dict'          => undef,
371             'Shell'                 => undef,
372             'Socket'                => undef,
373             'Sys::Hostname'         => undef,
374             'Sys::Syslog'           => undef,
375             'Term::Cap'             => undef,
376             'Term::Complete'        => undef,
377             'Test::Harness'         => undef,
378             'Text::Abbrev'          => undef,
379             'Text::ParseWords'      => undef,
380             'Text::Soundex'         => undef,
381             'Text::Tabs'            => undef,
382             'TieHash'               => undef,
383             'Time::Local'           => undef,
384             'integer'               => undef,
385             'less'                  => undef,
386             'sigtrap'               => undef,
387             'strict'                => undef,
388             'subs'                  => undef,
389         },
390         removed => {
391         }
392     },
393     5.001 => {
394         delta_from => 5,
395         changed => {
396             'ExtUtils::Liblist'     => undef,
397             'ExtUtils::Manifest'    => undef,
398             'ExtUtils::Mkbootstrap' => undef,
399             'File::Path'            => undef,
400             'SubstrHash'            => undef,
401             'lib'                   => undef,
402         },
403         removed => {
404         }
405     },
406     5.002 => {
407         delta_from => 5.001,
408         changed => {
409             'DB_File'               => '1.01',
410             'Devel::SelfStubber'    => '1.01',
411             'DirHandle'             => undef,
412             'DynaLoader'            => '1.00',
413             'ExtUtils::Install'     => undef,
414             'ExtUtils::MM_OS2'      => undef,
415             'ExtUtils::MM_Unix'     => undef,
416             'ExtUtils::MM_VMS'      => undef,
417             'ExtUtils::MakeMaker'   => '5.21',
418             'ExtUtils::Manifest'    => '1.22',
419             'ExtUtils::Mksymlists'  => '1.00',
420             'Fcntl'                 => '1.00',
421             'File::Copy'            => '1.5',
422             'File::Path'            => '1.01',
423             'FileCache'             => undef,
424             'FileHandle'            => '1.00',
425             'GDBM_File'             => '1.00',
426             'Getopt::Long'          => '2.01',
427             'NDBM_File'             => '1.00',
428             'Net::Ping'             => '1',
429             'ODBM_File'             => '1.00',
430             'POSIX'                 => '1.00',
431             'Pod::Functions'        => undef,
432             'Pod::Text'             => undef,
433             'SDBM_File'             => '1.00',
434             'Safe'                  => '1.00',
435             'SelectSaver'           => undef,
436             'SelfLoader'            => '1.06',
437             'Socket'                => '1.5',
438             'Symbol'                => undef,
439             'Term::ReadLine'        => undef,
440             'Test::Harness'         => '1.07',
441             'Text::Wrap'            => undef,
442             'Tie::Hash'             => undef,
443             'Tie::Scalar'           => undef,
444             'Tie::SubstrHash'       => undef,
445             'diagnostics'           => undef,
446             'overload'              => undef,
447             'vars'                  => undef,
448         },
449         removed => {
450             'SubstrHash'            => 1,
451             'TieHash'               => 1,
452         }
453     },
454     5.00307 => {
455         delta_from => 5.002,
456         changed => {
457             'Config'                => undef,
458             'DB_File'               => '1.03',
459             'ExtUtils::Embed'       => '1.18',
460             'ExtUtils::Install'     => '1.15',
461             'ExtUtils::Liblist'     => '1.20',
462             'ExtUtils::MM_Unix'     => '1.107',
463             'ExtUtils::MakeMaker'   => '5.38',
464             'ExtUtils::Manifest'    => '1.27',
465             'ExtUtils::Mkbootstrap' => '1.13',
466             'ExtUtils::Mksymlists'  => '1.12',
467             'ExtUtils::testlib'     => '1.11',
468             'Fatal'                 => undef,
469             'File::Basename'        => '2.4',
470             'FindBin'               => '1.04',
471             'Getopt::Long'          => '2.04',
472             'IO'                    => undef,
473             'IO::File'              => '1.05',
474             'IO::Handle'            => '1.12',
475             'IO::Pipe'              => '1.07',
476             'IO::Seekable'          => '1.05',
477             'IO::Select'            => '1.09',
478             'IO::Socket'            => '1.13',
479             'Net::Ping'             => '1.01',
480             'OS2::ExtAttr'          => '0.01',
481             'OS2::PrfDB'            => '0.02',
482             'OS2::Process'          => undef,
483             'OS2::REXX'             => undef,
484             'Opcode'                => '1.01',
485             'Safe'                  => '2.06',
486             'Test::Harness'         => '1.13',
487             'Text::Tabs'            => '96.051501',
488             'Text::Wrap'            => '96.041801',
489             'UNIVERSAL'             => undef,
490             'VMS::Filespec'         => undef,
491             'VMS::Stdio'            => '2.0',
492             'ops'                   => undef,
493             'sigtrap'               => '1.01',
494         },
495         removed => {
496         }
497     },
498     5.004 => {
499         delta_from => 5.00307,
500         changed => {
501             'Bundle::CPAN'          => '0.02',
502             'CGI'                   => '2.36',
503             'CGI::Apache'           => '1.01',
504             'CGI::Carp'             => '1.06',
505             'CGI::Fast'             => '1.00a',
506             'CGI::Push'             => '1.00',
507             'CGI::Switch'           => '0.05',
508             'CPAN'                  => '1.2401',
509             'CPAN::FirstTime'       => '1.18',
510             'CPAN::Nox'             => undef,
511             'Class::Struct'         => undef,
512             'Cwd'                   => '2.00',
513             'DB_File'               => '1.14',
514             'DynaLoader'            => '1.02',
515             'ExtUtils::Command'     => '1.00',
516             'ExtUtils::Embed'       => '1.2501',
517             'ExtUtils::Install'     => '1.16',
518             'ExtUtils::Liblist'     => '1.2201',
519             'ExtUtils::MM_Unix'     => '1.114',
520             'ExtUtils::MM_Win32'    => undef,
521             'ExtUtils::MakeMaker'   => '5.4002',
522             'ExtUtils::Manifest'    => '1.33',
523             'ExtUtils::Mksymlists'  => '1.13',
524             'ExtUtils::XSSymSet'    => '1.0',
525             'Fcntl'                 => '1.03',
526             'File::Basename'        => '2.5',
527             'File::Compare'         => '1.1001',
528             'File::Copy'            => '2.02',
529             'File::Path'            => '1.04',
530             'File::stat'            => undef,
531             'FileHandle'            => '2.00',
532             'Getopt::Long'          => '2.10',
533             'IO::File'              => '1.0602',
534             'IO::Handle'            => '1.1504',
535             'IO::Pipe'              => '1.0901',
536             'IO::Seekable'          => '1.06',
537             'IO::Select'            => '1.10',
538             'IO::Socket'            => '1.1602',
539             'IPC::Open2'            => '1.01',
540             'IPC::Open3'            => '1.0101',
541             'Math::Complex'         => '1.01',
542             'Math::Trig'            => '1',
543             'Net::Ping'             => '2.02',
544             'Net::hostent'          => undef,
545             'Net::netent'           => undef,
546             'Net::protoent'         => undef,
547             'Net::servent'          => undef,
548             'Opcode'                => '1.04',
549             'POSIX'                 => '1.02',
550             'Pod::Html'             => undef,
551             'Pod::Text'             => '1.0203',
552             'SelfLoader'            => '1.07',
553             'Socket'                => '1.6',
554             'Symbol'                => '1.02',
555             'Test::Harness'         => '1.1502',
556             'Text::Tabs'            => '96.121201',
557             'Text::Wrap'            => '97.011701',
558             'Tie::RefHash'          => undef,
559             'Time::gmtime'          => '1.01',
560             'Time::localtime'       => '1.01',
561             'Time::tm'              => undef,
562             'User::grent'           => undef,
563             'User::pwent'           => undef,
564             'VMS::DCLsym'           => '1.01',
565             'VMS::Stdio'            => '2.02',
566             'autouse'               => '1.01',
567             'blib'                  => undef,
568             'constant'              => '1.00',
569             'locale'                => undef,
570             'sigtrap'               => '1.02',
571             'vmsish'                => undef,
572         },
573         removed => {
574             'Fatal'                 => 1,
575         }
576     },
577     5.00405 => {
578         delta_from => 5.004,
579         changed => {
580             'AutoLoader'            => '5.56',
581             'AutoSplit'             => '1.0303',
582             'Bundle::CPAN'          => '0.03',
583             'CGI'                   => '2.42',
584             'CGI::Apache'           => '1.1',
585             'CGI::Carp'             => '1.10',
586             'CGI::Cookie'           => '1.06',
587             'CGI::Push'             => '1.01',
588             'CGI::Switch'           => '0.06',
589             'CPAN'                  => '1.40',
590             'CPAN::FirstTime'       => '1.30',
591             'Cwd'                   => '2.01',
592             'DB_File'               => '1.15',
593             'DynaLoader'            => '1.03',
594             'ExtUtils::Command'     => '1.01',
595             'ExtUtils::Embed'       => '1.2505',
596             'ExtUtils::Install'     => '1.28',
597             'ExtUtils::Liblist'     => '1.25',
598             'ExtUtils::MM_Unix'     => '1.118',
599             'ExtUtils::MakeMaker'   => '5.42',
600             'ExtUtils::Mkbootstrap' => '1.14',
601             'ExtUtils::Mksymlists'  => '1.16',
602             'File::Basename'        => '2.6',
603             'File::DosGlob'         => undef,
604             'File::Path'            => '1.0402',
605             'File::Spec'            => '0.6',
606             'File::Spec::Mac'       => '1.0',
607             'File::Spec::OS2'       => undef,
608             'File::Spec::Unix'      => undef,
609             'File::Spec::VMS'       => undef,
610             'File::Spec::Win32'     => undef,
611             'FindBin'               => '1.41',
612             'Getopt::Long'          => '2.19',
613             'IO::File'              => '1.06021',
614             'IO::Socket'            => '1.1603',
615             'IPC::Open3'            => '1.0103',
616             'Math::Complex'         => '1.25',
617             'NDBM_File'             => '1.01',
618             'Pod::Html'             => '1.0101',
619             'Pod::Text'             => '1.0204',
620             'SelfLoader'            => '1.08',
621             'Socket'                => '1.7',
622             'Test'                  => '1.04',
623             'Test::Harness'         => '1.1602',
624             'Text::ParseWords'      => '3.1001',
625             'Text::Wrap'            => '98.112902',
626             'Tie::Handle'           => undef,
627             'attrs'                 => '0.1',
628             'base'                  => undef,
629             'blib'                  => '1.00',
630             're'                    => undef,
631             'strict'                => '1.01',
632         },
633         removed => {
634         }
635     },
636     5.005 => {
637         delta_from => 5.00405,
638         changed => {
639             'AutoLoader'            => undef,
640             'AutoSplit'             => '1.0302',
641             'B'                     => undef,
642             'B::Asmdata'            => undef,
643             'B::Assembler'          => undef,
644             'B::Bblock'             => undef,
645             'B::Bytecode'           => undef,
646             'B::C'                  => undef,
647             'B::CC'                 => undef,
648             'B::Debug'              => undef,
649             'B::Deparse'            => '0.56',
650             'B::Disassembler'       => undef,
651             'B::Lint'               => undef,
652             'B::Showlex'            => undef,
653             'B::Stackobj'           => undef,
654             'B::Terse'              => undef,
655             'B::Xref'               => undef,
656             'CGI::Carp'             => '1.101',
657             'CPAN'                  => '1.3901',
658             'CPAN::FirstTime'       => '1.29',
659             'DB_File'               => '1.60',
660             'Data::Dumper'          => '2.09',
661             'Errno'                 => '1.09',
662             'ExtUtils::Installed'   => '0.02',
663             'ExtUtils::MM_Unix'     => '1.12601',
664             'ExtUtils::MakeMaker'   => '5.4301',
665             'ExtUtils::Mkbootstrap' => '1.13',
666             'ExtUtils::Mksymlists'  => '1.17',
667             'ExtUtils::Packlist'    => '0.03',
668             'Fatal'                 => '1.02',
669             'File::Path'            => '1.0401',
670             'Getopt::Long'          => '2.17',
671             'IO::Handle'            => '1.1505',
672             'IPC::Msg'              => '1.00',
673             'IPC::Open3'            => '1.0102',
674             'IPC::Semaphore'        => '1.00',
675             'IPC::SysV'             => '1.03',
676             'O'                     => undef,
677             'OS2::Process'          => '0.2',
678             'Pod::Html'             => '1.01',
679             'Pod::Text'             => '1.0203',
680             'Text::ParseWords'      => '3.1',
681             'Text::Wrap'            => '97.02',
682             'Thread'                => '1.0',
683             'Thread::Queue'         => undef,
684             'Thread::Semaphore'     => undef,
685             'Thread::Signal'        => undef,
686             'Thread::Specific'      => undef,
687             'Tie::Array'            => '1.00',
688             'VMS::Stdio'            => '2.1',
689             'attrs'                 => '1.0',
690             'fields'                => '0.02',
691             're'                    => '0.02',
692         },
693         removed => {
694             'Bundle::CPAN'          => 1,
695         }
696     },
697     5.00503 => {
698         delta_from => 5.005,
699         changed => {
700             'AutoSplit'             => '1.0303',
701             'CGI'                   => '2.46',
702             'CGI::Carp'             => '1.13',
703             'CGI::Fast'             => '1.01',
704             'CPAN'                  => '1.48',
705             'CPAN::FirstTime'       => '1.36',
706             'CPAN::Nox'             => '1.00',
707             'DB_File'               => '1.65',
708             'Data::Dumper'          => '2.101',
709             'Dumpvalue'             => undef,
710             'Errno'                 => '1.111',
711             'ExtUtils::Install'     => '1.28',
712             'ExtUtils::Liblist'     => '1.25',
713             'ExtUtils::MM_Unix'     => '1.12602',
714             'ExtUtils::MakeMaker'   => '5.4302',
715             'ExtUtils::Manifest'    => '1.33',
716             'ExtUtils::Mkbootstrap' => '1.14',
717             'ExtUtils::Mksymlists'  => '1.17',
718             'ExtUtils::testlib'     => '1.11',
719             'FindBin'               => '1.42',
720             'Getopt::Long'          => '2.19',
721             'Getopt::Std'           => '1.01',
722             'IO::Pipe'              => '1.0902',
723             'IPC::Open3'            => '1.0103',
724             'Math::Complex'         => '1.26',
725             'Test'                  => '1.122',
726             'Text::Wrap'            => '98.112902',
727         },
728         removed => {
729         }
730     },
731     5.00504 => {
732         delta_from => 5.00503,
733         changed => {
734             'CPAN::FirstTime'       => '1.36',
735             'DB_File'               => '1.807',
736             'ExtUtils::Install'     => '1.28',
737             'ExtUtils::Liblist'     => '1.25',
738             'ExtUtils::MM_Unix'     => '1.12602',
739             'ExtUtils::Manifest'    => '1.33',
740             'ExtUtils::Miniperl'    => undef,
741             'ExtUtils::Mkbootstrap' => '1.14',
742             'ExtUtils::Mksymlists'  => '1.17',
743             'ExtUtils::testlib'     => '1.11',
744             'File::Compare'         => '1.1002',
745             'File::Spec'            => '0.8',
746             'File::Spec::Functions' => undef,
747             'File::Spec::Mac'       => undef,
748             'Getopt::Long'          => '2.20',
749             'Pod::Html'             => '1.02',
750         },
751         removed => {
752         }
753     },
754     5.006 => {
755         delta_from => 5.00504,
756         changed => {
757             'AutoLoader'            => '5.57',
758             'AutoSplit'             => '1.0305',
759             'B::Deparse'            => '0.59',
760             'B::Stash'              => undef,
761             'Benchmark'             => '1',
762             'ByteLoader'            => '0.03',
763             'CGI'                   => '2.56',
764             'CGI::Apache'           => undef,
765             'CGI::Carp'             => '1.14',
766             'CGI::Cookie'           => '1.12',
767             'CGI::Fast'             => '1.02',
768             'CGI::Pretty'           => '1.03',
769             'CGI::Switch'           => undef,
770             'CPAN'                  => '1.52',
771             'CPAN::FirstTime'       => '1.38',
772             'Carp::Heavy'           => undef,
773             'Class::Struct'         => '0.58',
774             'Cwd'                   => '2.02',
775             'DB'                    => '1.0',
776             'DB_File'               => '1.72',
777             'Devel::DProf'          => '20000000.00_00',
778             'Devel::Peek'           => '1.00_01',
779             'DynaLoader'            => '1.04',
780             'Exporter'              => '5.562',
781             'Exporter::Heavy'       => undef,
782             'ExtUtils::MM_Cygwin'   => undef,
783             'ExtUtils::MM_Unix'     => '1.12603',
784             'ExtUtils::MakeMaker'   => '5.45',
785             'File::Copy'            => '2.03',
786             'File::Glob'            => '0.991',
787             'File::Path'            => '1.0403',
788             'GDBM_File'             => '1.03',
789             'Getopt::Long'          => '2.23',
790             'Getopt::Std'           => '1.02',
791             'IO'                    => '1.20',
792             'IO::Dir'               => '1.03',
793             'IO::File'              => '1.08',
794             'IO::Handle'            => '1.21',
795             'IO::Pipe'              => '1.121',
796             'IO::Poll'              => '0.01',
797             'IO::Seekable'          => '1.08',
798             'IO::Select'            => '1.14',
799             'IO::Socket'            => '1.26',
800             'IO::Socket::INET'      => '1.25',
801             'IO::Socket::UNIX'      => '1.20',
802             'JNI'                   => '0.01',
803             'JPL::AutoLoader'       => undef,
804             'JPL::Class'            => undef,
805             'JPL::Compile'          => undef,
806             'NDBM_File'             => '1.03',
807             'ODBM_File'             => '1.02',
808             'OS2::DLL'              => undef,
809             'POSIX'                 => '1.03',
810             'Pod::Checker'          => '1.098',
811             'Pod::Find'             => '0.12',
812             'Pod::Html'             => '1.03',
813             'Pod::InputObjects'     => '1.12',
814             'Pod::Man'              => '1.02',
815             'Pod::ParseUtils'       => '0.2',
816             'Pod::Parser'           => '1.12',
817             'Pod::Plainer'          => '0.01',
818             'Pod::Select'           => '1.12',
819             'Pod::Text'             => '2.03',
820             'Pod::Text::Color'      => '0.05',
821             'Pod::Text::Termcap'    => '0.04',
822             'Pod::Usage'            => '1.12',
823             'SDBM_File'             => '1.02',
824             'SelfLoader'            => '1.0901',
825             'Shell'                 => '0.2',
826             'Socket'                => '1.72',
827             'Sys::Hostname'         => '1.1',
828             'Sys::Syslog'           => '0.01',
829             'Term::ANSIColor'       => '1.01',
830             'Test'                  => '1.13',
831             'Test::Harness'         => '1.1604',
832             'Text::ParseWords'      => '3.2',
833             'Text::Soundex'         => '1.0',
834             'Text::Tabs'            => '98.112801',
835             'Tie::Array'            => '1.01',
836             'Tie::Handle'           => '1.0',
837             'VMS::Stdio'            => '2.2',
838             'XSLoader'              => '0.01',
839             'attributes'            => '0.03',
840             'autouse'               => '1.02',
841             'base'                  => '1.01',
842             'bytes'                 => undef,
843             'charnames'             => undef,
844             'constant'              => '1.02',
845             'diagnostics'           => '1.0',
846             'fields'                => '1.01',
847             'filetest'              => undef,
848             'lib'                   => '0.5564',
849             'open'                  => undef,
850             'utf8'                  => undef,
851             'warnings'              => undef,
852             'warnings::register'    => undef,
853         },
854         removed => {
855         }
856     },
857     5.006001 => {
858         delta_from => 5.006,
859         changed => {
860             'AutoLoader'            => '5.58',
861             'B::Assembler'          => '0.02',
862             'B::Concise'            => '0.51',
863             'B::Deparse'            => '0.6',
864             'ByteLoader'            => '0.04',
865             'CGI'                   => '2.752',
866             'CGI::Carp'             => '1.20',
867             'CGI::Cookie'           => '1.18',
868             'CGI::Pretty'           => '1.05',
869             'CGI::Push'             => '1.04',
870             'CGI::Util'             => '1.1',
871             'CPAN'                  => '1.59_54',
872             'CPAN::FirstTime'       => '1.53',
873             'Class::Struct'         => '0.59',
874             'Cwd'                   => '2.04',
875             'DB_File'               => '1.75',
876             'Data::Dumper'          => '2.102',
877             'ExtUtils::Install'     => '1.28',
878             'ExtUtils::Liblist'     => '1.26',
879             'ExtUtils::MM_Unix'     => '1.12603',
880             'ExtUtils::Manifest'    => '1.33',
881             'ExtUtils::Mkbootstrap' => '1.14',
882             'ExtUtils::Mksymlists'  => '1.17',
883             'ExtUtils::testlib'     => '1.11',
884             'File::Path'            => '1.0404',
885             'File::Spec'            => '0.82',
886             'File::Spec::Epoc'      => undef,
887             'File::Spec::Functions' => '1.1',
888             'File::Spec::Mac'       => '1.2',
889             'File::Spec::OS2'       => '1.1',
890             'File::Spec::Unix'      => '1.2',
891             'File::Spec::VMS'       => '1.1',
892             'File::Spec::Win32'     => '1.2',
893             'File::Temp'            => '0.12',
894             'GDBM_File'             => '1.05',
895             'Getopt::Long'          => '2.25',
896             'IO::Poll'              => '0.05',
897             'JNI'                   => '0.1',
898             'Math::BigFloat'        => '0.02',
899             'Math::BigInt'          => '0.01',
900             'Math::Complex'         => '1.31',
901             'NDBM_File'             => '1.04',
902             'ODBM_File'             => '1.03',
903             'OS2::REXX'             => '1.00',
904             'Pod::Checker'          => '1.2',
905             'Pod::Find'             => '0.21',
906             'Pod::InputObjects'     => '1.13',
907             'Pod::LaTeX'            => '0.53',
908             'Pod::Man'              => '1.15',
909             'Pod::ParseUtils'       => '0.22',
910             'Pod::Parser'           => '1.13',
911             'Pod::Select'           => '1.13',
912             'Pod::Text'             => '2.08',
913             'Pod::Text::Color'      => '0.06',
914             'Pod::Text::Overstrike' => '1.01',
915             'Pod::Text::Termcap'    => '1',
916             'Pod::Usage'            => '1.14',
917             'SDBM_File'             => '1.03',
918             'SelfLoader'            => '1.0902',
919             'Shell'                 => '0.3',
920             'Term::ANSIColor'       => '1.03',
921             'Test'                  => '1.15',
922             'Text::Wrap'            => '2001.0131',
923             'Tie::Handle'           => '4.0',
924             'Tie::RefHash'          => '1.3',
925         },
926         removed => {
927         }
928     },
929     5.006002 => {
930         delta_from => 5.006001,
931         changed => {
932             'CPAN::FirstTime'       => '1.53',
933             'DB_File'               => '1.806',
934             'Data::Dumper'          => '2.121',
935             'ExtUtils::Command'     => '1.05',
936             'ExtUtils::Command::MM' => '0.03',
937             'ExtUtils::Install'     => '1.32',
938             'ExtUtils::Installed'   => '0.08',
939             'ExtUtils::Liblist'     => '1.01',
940             'ExtUtils::Liblist::Kid'=> '1.3',
941             'ExtUtils::MM'          => '0.04',
942             'ExtUtils::MM_Any'      => '0.07',
943             'ExtUtils::MM_BeOS'     => '1.04',
944             'ExtUtils::MM_Cygwin'   => '1.06',
945             'ExtUtils::MM_DOS'      => '0.02',
946             'ExtUtils::MM_MacOS'    => '1.07',
947             'ExtUtils::MM_NW5'      => '2.06',
948             'ExtUtils::MM_OS2'      => '1.04',
949             'ExtUtils::MM_UWIN'     => '0.02',
950             'ExtUtils::MM_Unix'     => '1.42',
951             'ExtUtils::MM_VMS'      => '5.70',
952             'ExtUtils::MM_Win32'    => '1.09',
953             'ExtUtils::MM_Win95'    => '0.03',
954             'ExtUtils::MY'          => '0.01',
955             'ExtUtils::MakeMaker'   => '6.17',
956             'ExtUtils::MakeMaker::bytes'=> '0.01',
957             'ExtUtils::MakeMaker::vmsish'=> '0.01',
958             'ExtUtils::Manifest'    => '1.42',
959             'ExtUtils::Mkbootstrap' => '1.15',
960             'ExtUtils::Mksymlists'  => '1.19',
961             'ExtUtils::Packlist'    => '0.04',
962             'ExtUtils::testlib'     => '1.15',
963             'File::Spec'            => '0.86',
964             'File::Spec::Cygwin'    => '1.1',
965             'File::Spec::Epoc'      => '1.1',
966             'File::Spec::Functions' => '1.3',
967             'File::Spec::Mac'       => '1.4',
968             'File::Spec::OS2'       => '1.2',
969             'File::Spec::Unix'      => '1.5',
970             'File::Spec::VMS'       => '1.4',
971             'File::Spec::Win32'     => '1.4',
972             'File::Temp'            => '0.14',
973             'Safe'                  => '2.10',
974             'Test'                  => '1.24',
975             'Test::Builder'         => '0.17',
976             'Test::Harness'         => '2.30',
977             'Test::Harness::Assert' => '0.01',
978             'Test::Harness::Iterator'=> '0.01',
979             'Test::Harness::Straps' => '0.15',
980             'Test::More'            => '0.47',
981             'Test::Simple'          => '0.47',
982             'Unicode'               => '3.0.1',
983             'if'                    => '0.03',
984             'ops'                   => '1.00',
985         },
986         removed => {
987         }
988     },
989     5.007003 => {
990         delta_from => 5.006001,
991         changed => {
992             'AnyDBM_File'           => '1.00',
993             'Attribute::Handlers'   => '0.76',
994             'AutoLoader'            => '5.59',
995             'AutoSplit'             => '1.0307',
996             'B'                     => '1.00',
997             'B::Asmdata'            => '1.00',
998             'B::Assembler'          => '0.04',
999             'B::Bblock'             => '1.00',
1000             'B::Bytecode'           => '1.00',
1001             'B::C'                  => '1.01',
1002             'B::CC'                 => '1.00',
1003             'B::Concise'            => '0.52',
1004             'B::Debug'              => '1.00',
1005             'B::Deparse'            => '0.63',
1006             'B::Disassembler'       => '1.01',
1007             'B::Lint'               => '1.00',
1008             'B::Showlex'            => '1.00',
1009             'B::Stackobj'           => '1.00',
1010             'B::Stash'              => '1.00',
1011             'B::Terse'              => '1.00',
1012             'B::Xref'               => '1.00',
1013             'Benchmark'             => '1.04',
1014             'CGI'                   => '2.80',
1015             'CGI::Apache'           => '1.00',
1016             'CGI::Carp'             => '1.22',
1017             'CGI::Cookie'           => '1.20',
1018             'CGI::Fast'             => '1.04',
1019             'CGI::Pretty'           => '1.05_00',
1020             'CGI::Switch'           => '1.00',
1021             'CGI::Util'             => '1.3',
1022             'CPAN'                  => '1.59_56',
1023             'CPAN::FirstTime'       => '1.54',
1024             'CPAN::Nox'             => '1.00_01',
1025             'Carp'                  => '1.01',
1026             'Carp::Heavy'           => '1.01',
1027             'Class::ISA'            => '0.32',
1028             'Class::Struct'         => '0.61',
1029             'Cwd'                   => '2.06',
1030             'DB_File'               => '1.804',
1031             'Data::Dumper'          => '2.12',
1032             'Devel::DProf'          => '20000000.00_01',
1033             'Devel::PPPort'         => '2.0002',
1034             'Devel::Peek'           => '1.00_03',
1035             'Devel::SelfStubber'    => '1.03',
1036             'Digest'                => '1.00',
1037             'Digest::MD5'           => '2.16',
1038             'DirHandle'             => '1.00',
1039             'Dumpvalue'             => '1.10',
1040             'Encode'                => '0.40',
1041             'Encode::CN'            => '0.02',
1042             'Encode::CN::HZ'        => undef,
1043             'Encode::Encoding'      => '0.02',
1044             'Encode::Internal'      => '0.30',
1045             'Encode::JP'            => '0.02',
1046             'Encode::JP::Constants' => '1.02',
1047             'Encode::JP::H2Z'       => '0.77',
1048             'Encode::JP::ISO_2022_JP'=> undef,
1049             'Encode::JP::JIS'       => undef,
1050             'Encode::JP::Tr'        => '0.77',
1051             'Encode::KR'            => '0.02',
1052             'Encode::TW'            => '0.02',
1053             'Encode::Tcl'           => '1.01',
1054             'Encode::Tcl::Escape'   => '1.01',
1055             'Encode::Tcl::Extended' => '1.01',
1056             'Encode::Tcl::HanZi'    => '1.01',
1057             'Encode::Tcl::Table'    => '1.01',
1058             'Encode::Unicode'       => '0.30',
1059             'Encode::XS'            => '0.40',
1060             'Encode::iso10646_1'    => '0.30',
1061             'Encode::usc2_le'       => '0.30',
1062             'Encode::utf8'          => '0.30',
1063             'English'               => '1.00',
1064             'Env'                   => '1.00',
1065             'Exporter'              => '5.566',
1066             'Exporter::Heavy'       => '5.562',
1067             'ExtUtils::Command'     => '1.02',
1068             'ExtUtils::Constant'    => '0.11',
1069             'ExtUtils::Embed'       => '1.250601',
1070             'ExtUtils::Install'     => '1.29',
1071             'ExtUtils::Installed'   => '0.04',
1072             'ExtUtils::Liblist'     => '1.2701',
1073             'ExtUtils::MM_BeOS'     => '1.00',
1074             'ExtUtils::MM_Cygwin'   => '1.00',
1075             'ExtUtils::MM_OS2'      => '1.00',
1076             'ExtUtils::MM_Unix'     => '1.12607',
1077             'ExtUtils::MM_VMS'      => '5.56',
1078             'ExtUtils::MM_Win32'    => '1.00_02',
1079             'ExtUtils::MakeMaker'   => '5.48_03',
1080             'ExtUtils::Manifest'    => '1.35',
1081             'ExtUtils::Mkbootstrap' => '1.1401',
1082             'ExtUtils::Mksymlists'  => '1.18',
1083             'ExtUtils::Packlist'    => '0.04',
1084             'ExtUtils::testlib'     => '1.1201',
1085             'Fatal'                 => '1.03',
1086             'Fcntl'                 => '1.04',
1087             'File::Basename'        => '2.71',
1088             'File::CheckTree'       => '4.1',
1089             'File::Compare'         => '1.1003',
1090             'File::Copy'            => '2.05',
1091             'File::DosGlob'         => '1.00',
1092             'File::Find'            => '1.04',
1093             'File::Glob'            => '1.01',
1094             'File::Path'            => '1.05',
1095             'File::Spec'            => '0.83',
1096             'File::Spec::Cygwin'    => '1.0',
1097             'File::Spec::Epoc'      => '1.00',
1098             'File::Spec::Functions' => '1.2',
1099             'File::Spec::Mac'       => '1.3',
1100             'File::Spec::Unix'      => '1.4',
1101             'File::Spec::VMS'       => '1.2',
1102             'File::Spec::Win32'     => '1.3',
1103             'File::Temp'            => '0.13',
1104             'File::stat'            => '1.00',
1105             'FileCache'             => '1.00',
1106             'FileHandle'            => '2.01',
1107             'Filter::Simple'        => '0.77',
1108             'Filter::Util::Call'    => '1.06',
1109             'FindBin'               => '1.43',
1110             'GDBM_File'             => '1.06',
1111             'Getopt::Long'          => '2.28',
1112             'Getopt::Std'           => '1.03',
1113             'I18N::Collate'         => '1.00',
1114             'I18N::LangTags'        => '0.27',
1115             'I18N::LangTags::List'  => '0.25',
1116             'I18N::Langinfo'        => '0.01',
1117             'IO::Dir'               => '1.03_00',
1118             'IO::File'              => '1.09',
1119             'IO::Handle'            => '1.21_00',
1120             'IO::Pipe'              => '1.122',
1121             'IO::Poll'              => '0.06',
1122             'IO::Seekable'          => '1.08_00',
1123             'IO::Select'            => '1.15',
1124             'IO::Socket'            => '1.27',
1125             'IO::Socket::INET'      => '1.26',
1126             'IO::Socket::UNIX'      => '1.20_00',
1127             'IPC::Msg'              => '1.00_00',
1128             'IPC::Open3'            => '1.0104',
1129             'IPC::Semaphore'        => '1.00_00',
1130             'IPC::SysV'             => '1.03_00',
1131             'List::Util'            => '1.06_00',
1132             'Locale::Constants'     => '2.01',
1133             'Locale::Country'       => '2.01',
1134             'Locale::Currency'      => '2.01',
1135             'Locale::Language'      => '2.01',
1136             'Locale::Maketext'      => '1.03',
1137             'Locale::Script'        => '2.01',
1138             'MIME::Base64'          => '2.12',
1139             'MIME::QuotedPrint'     => '2.03',
1140             'Math::BigFloat'        => '1.30',
1141             'Math::BigInt'          => '1.54',
1142             'Math::BigInt::Calc'    => '0.25',
1143             'Math::Complex'         => '1.34',
1144             'Math::Trig'            => '1.01',
1145             'Memoize'               => '0.66',
1146             'Memoize::AnyDBM_File'  => '0.65',
1147             'Memoize::Expire'       => '0.66',
1148             'Memoize::ExpireFile'   => '0.65',
1149             'Memoize::ExpireTest'   => '0.65',
1150             'Memoize::NDBM_File'    => '0.65',
1151             'Memoize::SDBM_File'    => '0.65',
1152             'Memoize::Storable'     => '0.65',
1153             'NEXT'                  => '0.50',
1154             'Net::Cmd'              => '2.21',
1155             'Net::Config'           => '1.10',
1156             'Net::Domain'           => '2.17',
1157             'Net::FTP'              => '2.64',
1158             'Net::FTP::A'           => '1.15',
1159             'Net::FTP::E'           => '0.01',
1160             'Net::FTP::I'           => '1.12',
1161             'Net::FTP::L'           => '0.01',
1162             'Net::FTP::dataconn'    => '0.10',
1163             'Net::NNTP'             => '2.21',
1164             'Net::Netrc'            => '2.12',
1165             'Net::POP3'             => '2.23',
1166             'Net::Ping'             => '2.12',
1167             'Net::SMTP'             => '2.21',
1168             'Net::Time'             => '2.09',
1169             'Net::hostent'          => '1.00',
1170             'Net::netent'           => '1.00',
1171             'Net::protoent'         => '1.00',
1172             'Net::servent'          => '1.00',
1173             'O'                     => '1.00',
1174             'OS2::DLL'              => '1.00',
1175             'OS2::Process'          => '1.0',
1176             'OS2::REXX'             => '1.01',
1177             'Opcode'                => '1.05',
1178             'POSIX'                 => '1.05',
1179             'PerlIO'                => '1.00',
1180             'PerlIO::Scalar'        => '0.01',
1181             'PerlIO::Via'           => '0.01',
1182             'Pod::Checker'          => '1.3',
1183             'Pod::Find'             => '0.22',
1184             'Pod::Functions'        => '1.01',
1185             'Pod::Html'             => '1.04',
1186             'Pod::LaTeX'            => '0.54',
1187             'Pod::Man'              => '1.32',
1188             'Pod::ParseLink'        => '1.05',
1189             'Pod::Text'             => '2.18',
1190             'Pod::Text::Color'      => '1.03',
1191             'Pod::Text::Overstrike' => '1.08',
1192             'Pod::Text::Termcap'    => '1.09',
1193             'Safe'                  => '2.07',
1194             'Scalar::Util'          => '1.06_00',
1195             'Search::Dict'          => '1.02',
1196             'SelectSaver'           => '1.00',
1197             'SelfLoader'            => '1.0903',
1198             'Shell'                 => '0.4',
1199             'Socket'                => '1.75',
1200             'Storable'              => '1.015',
1201             'Switch'                => '2.06',
1202             'Symbol'                => '1.04',
1203             'Sys::Syslog'           => '0.02',
1204             'Term::ANSIColor'       => '1.04',
1205             'Term::Cap'             => '1.07',
1206             'Term::Complete'        => '1.4',
1207             'Term::ReadLine'        => '1.00',
1208             'Test'                  => '1.18',
1209             'Test::Builder'         => '0.11',
1210             'Test::Harness'         => '2.01',
1211             'Test::Harness::Assert' => '0.01',
1212             'Test::Harness::Iterator'=> '0.01',
1213             'Test::Harness::Straps' => '0.08',
1214             'Test::More'            => '0.41',
1215             'Test::Simple'          => '0.41',
1216             'Text::Abbrev'          => '1.00',
1217             'Text::Balanced'        => '1.89',
1218             'Text::ParseWords'      => '3.21',
1219             'Text::Soundex'         => '1.01',
1220             'Text::Wrap'            => '2001.0929',
1221             'Thread'                => '2.00',
1222             'Thread::Queue'         => '1.00',
1223             'Thread::Semaphore'     => '1.00',
1224             'Thread::Signal'        => '1.00',
1225             'Thread::Specific'      => '1.00',
1226             'Tie::Array'            => '1.02',
1227             'Tie::File'             => '0.17',
1228             'Tie::Handle'           => '4.1',
1229             'Tie::Hash'             => '1.00',
1230             'Tie::Memoize'          => '1.0',
1231             'Tie::RefHash'          => '1.3_00',
1232             'Tie::Scalar'           => '1.00',
1233             'Tie::SubstrHash'       => '1.00',
1234             'Time::HiRes'           => '1.20_00',
1235             'Time::Local'           => '1.04',
1236             'Time::gmtime'          => '1.02',
1237             'Time::localtime'       => '1.02',
1238             'Time::tm'              => '1.00',
1239             'UNIVERSAL'             => '1.00',
1240             'Unicode::Collate'      => '0.10',
1241             'Unicode::Normalize'    => '0.14',
1242             'Unicode::UCD'          => '0.2',
1243             'User::grent'           => '1.00',
1244             'User::pwent'           => '1.00',
1245             'VMS::DCLsym'           => '1.02',
1246             'VMS::Filespec'         => '1.1',
1247             'VMS::Stdio'            => '2.3',
1248             'XS::Typemap'           => '0.01',
1249             'attributes'            => '0.04_01',
1250             'attrs'                 => '1.01',
1251             'autouse'               => '1.03',
1252             'base'                  => '1.02',
1253             'blib'                  => '1.01',
1254             'bytes'                 => '1.00',
1255             'charnames'             => '1.01',
1256             'constant'              => '1.04',
1257             'diagnostics'           => '1.1',
1258             'encoding'              => '1.00',
1259             'fields'                => '1.02',
1260             'filetest'              => '1.00',
1261             'if'                    => '0.01',
1262             'integer'               => '1.00',
1263             'less'                  => '0.01',
1264             'locale'                => '1.00',
1265             'open'                  => '1.01',
1266             'ops'                   => '1.00',
1267             'overload'              => '1.00',
1268             're'                    => '0.03',
1269             'sort'                  => '1.00',
1270             'strict'                => '1.02',
1271             'subs'                  => '1.00',
1272             'threads'               => '0.05',
1273             'threads::shared'       => '0.90',
1274             'utf8'                  => '1.00',
1275             'vars'                  => '1.01',
1276             'vmsish'                => '1.00',
1277             'warnings'              => '1.00',
1278             'warnings::register'    => '1.00',
1279         },
1280         removed => {
1281         }
1282     },
1283     5.008 => {
1284         delta_from => 5.007003,
1285         changed => {
1286             'Attribute::Handlers'   => '0.77',
1287             'B'                     => '1.01',
1288             'B::Lint'               => '1.01',
1289             'B::Xref'               => '1.01',
1290             'CGI'                   => '2.81',
1291             'CGI::Carp'             => '1.23',
1292             'CPAN'                  => '1.61',
1293             'CPAN::FirstTime'       => '1.56',
1294             'CPAN::Nox'             => '1.02',
1295             'Digest::MD5'           => '2.20',
1296             'Dumpvalue'             => '1.11',
1297             'Encode'                => '1.75',
1298             'Encode::Alias'         => '1.32',
1299             'Encode::Byte'          => '1.22',
1300             'Encode::CJKConstants'  => '1.00',
1301             'Encode::CN'            => '1.24',
1302             'Encode::CN::HZ'        => '1.04',
1303             'Encode::Config'        => '1.06',
1304             'Encode::EBCDIC'        => '1.21',
1305             'Encode::Encoder'       => '0.05',
1306             'Encode::Encoding'      => '1.30',
1307             'Encode::Guess'         => '1.06',
1308             'Encode::JP'            => '1.25',
1309             'Encode::JP::H2Z'       => '1.02',
1310             'Encode::JP::JIS7'      => '1.08',
1311             'Encode::KR'            => '1.22',
1312             'Encode::KR::2022_KR'   => '1.05',
1313             'Encode::MIME::Header'  => '1.05',
1314             'Encode::Symbol'        => '1.22',
1315             'Encode::TW'            => '1.26',
1316             'Encode::Unicode'       => '1.37',
1317             'Exporter::Heavy'       => '5.566',
1318             'ExtUtils::Command'     => '1.04',
1319             'ExtUtils::Command::MM' => '0.01',
1320             'ExtUtils::Constant'    => '0.12',
1321             'ExtUtils::Installed'   => '0.06',
1322             'ExtUtils::Liblist'     => '1.00',
1323             'ExtUtils::Liblist::Kid'=> '1.29',
1324             'ExtUtils::MM'          => '0.04',
1325             'ExtUtils::MM_Any'      => '0.04',
1326             'ExtUtils::MM_BeOS'     => '1.03',
1327             'ExtUtils::MM_Cygwin'   => '1.04',
1328             'ExtUtils::MM_DOS'      => '0.01',
1329             'ExtUtils::MM_MacOS'    => '1.03',
1330             'ExtUtils::MM_NW5'      => '2.05',
1331             'ExtUtils::MM_OS2'      => '1.03',
1332             'ExtUtils::MM_UWIN'     => '0.01',
1333             'ExtUtils::MM_Unix'     => '1.33',
1334             'ExtUtils::MM_VMS'      => '5.65',
1335             'ExtUtils::MM_Win32'    => '1.05',
1336             'ExtUtils::MM_Win95'    => '0.02',
1337             'ExtUtils::MY'          => '0.01',
1338             'ExtUtils::MakeMaker'   => '6.03',
1339             'ExtUtils::Manifest'    => '1.38',
1340             'ExtUtils::Mkbootstrap' => '1.15',
1341             'ExtUtils::Mksymlists'  => '1.19',
1342             'ExtUtils::testlib'     => '1.15',
1343             'File::CheckTree'       => '4.2',
1344             'FileCache'             => '1.021',
1345             'Filter::Simple'        => '0.78',
1346             'Getopt::Long'          => '2.32',
1347             'Hash::Util'            => '0.04',
1348             'List::Util'            => '1.07_00',
1349             'Locale::Country'       => '2.04',
1350             'Math::BigFloat'        => '1.35',
1351             'Math::BigFloat::Trace' => '0.01',
1352             'Math::BigInt'          => '1.60',
1353             'Math::BigInt::Calc'    => '0.30',
1354             'Math::BigInt::Trace'   => '0.01',
1355             'Math::BigRat'          => '0.07',
1356             'Memoize'               => '1.01',
1357             'Memoize::Expire'       => '1.00',
1358             'Memoize::ExpireFile'   => '1.01',
1359             'Net::FTP'              => '2.65',
1360             'Net::FTP::dataconn'    => '0.11',
1361             'Net::Ping'             => '2.19',
1362             'Net::SMTP'             => '2.24',
1363             'PerlIO'                => '1.01',
1364             'PerlIO::encoding'      => '0.06',
1365             'PerlIO::scalar'        => '0.01',
1366             'PerlIO::via'           => '0.01',
1367             'PerlIO::via::QuotedPrint'=> '0.04',
1368             'Pod::Man'              => '1.33',
1369             'Pod::Text'             => '2.19',
1370             'Scalar::Util'          => '1.07_00',
1371             'Storable'              => '2.04',
1372             'Switch'                => '2.09',
1373             'Sys::Syslog'           => '0.03',
1374             'Test'                  => '1.20',
1375             'Test::Builder'         => '0.15',
1376             'Test::Harness'         => '2.26',
1377             'Test::Harness::Straps' => '0.14',
1378             'Test::More'            => '0.45',
1379             'Test::Simple'          => '0.45',
1380             'Thread::Queue'         => '2.00',
1381             'Thread::Semaphore'     => '2.00',
1382             'Tie::File'             => '0.93',
1383             'Tie::RefHash'          => '1.30',
1384             'Unicode'               => '3.2.0',
1385             'Unicode::Collate'      => '0.12',
1386             'Unicode::Normalize'    => '0.17',
1387             'XS::APItest'           => '0.01',
1388             'attributes'            => '0.05',
1389             'base'                  => '1.03',
1390             'bigint'                => '0.02',
1391             'bignum'                => '0.11',
1392             'bigrat'                => '0.04',
1393             'blib'                  => '1.02',
1394             'encoding'              => '1.35',
1395             'sort'                  => '1.01',
1396             'threads'               => '0.99',
1397         },
1398         removed => {
1399             'Encode::Internal'      => 1,
1400             'Encode::JP::Constants' => 1,
1401             'Encode::JP::ISO_2022_JP'=> 1,
1402             'Encode::JP::JIS'       => 1,
1403             'Encode::JP::Tr'        => 1,
1404             'Encode::Tcl'           => 1,
1405             'Encode::Tcl::Escape'   => 1,
1406             'Encode::Tcl::Extended' => 1,
1407             'Encode::Tcl::HanZi'    => 1,
1408             'Encode::Tcl::Table'    => 1,
1409             'Encode::XS'            => 1,
1410             'Encode::iso10646_1'    => 1,
1411             'Encode::usc2_le'       => 1,
1412             'Encode::utf8'          => 1,
1413             'PerlIO::Scalar'        => 1,
1414             'PerlIO::Via'           => 1,
1415         }
1416     },
1417     5.008001 => {
1418         delta_from => 5.008,
1419         changed => {
1420             'Attribute::Handlers'   => '0.78',
1421             'AutoLoader'            => '5.60',
1422             'AutoSplit'             => '1.04',
1423             'B'                     => '1.02',
1424             'B::Asmdata'            => '1.01',
1425             'B::Assembler'          => '0.06',
1426             'B::Bblock'             => '1.02',
1427             'B::Bytecode'           => '1.01',
1428             'B::C'                  => '1.02',
1429             'B::Concise'            => '0.56',
1430             'B::Debug'              => '1.01',
1431             'B::Deparse'            => '0.64',
1432             'B::Disassembler'       => '1.03',
1433             'B::Lint'               => '1.02',
1434             'B::Terse'              => '1.02',
1435             'Benchmark'             => '1.051',
1436             'ByteLoader'            => '0.05',
1437             'CGI'                   => '3.00',
1438             'CGI::Carp'             => '1.26',
1439             'CGI::Cookie'           => '1.24',
1440             'CGI::Fast'             => '1.041',
1441             'CGI::Pretty'           => '1.07_00',
1442             'CGI::Util'             => '1.31',
1443             'CPAN'                  => '1.76_01',
1444             'CPAN::FirstTime'       => '1.60',
1445             'CPAN::Nox'             => '1.03',
1446             'Class::Struct'         => '0.63',
1447             'Cwd'                   => '2.08',
1448             'DB_File'               => '1.806',
1449             'Data::Dumper'          => '2.121',
1450             'Devel::DProf'          => '20030813.00',
1451             'Devel::PPPort'         => '2.007',
1452             'Devel::Peek'           => '1.01',
1453             'Digest'                => '1.02',
1454             'Digest::MD5'           => '2.27',
1455             'Encode'                => '1.9801',
1456             'Encode::Alias'         => '1.38',
1457             'Encode::Byte'          => '1.23',
1458             'Encode::CJKConstants'  => '1.02',
1459             'Encode::CN::HZ'        => '1.05',
1460             'Encode::Config'        => '1.07',
1461             'Encode::Encoder'       => '0.07',
1462             'Encode::Encoding'      => '1.33',
1463             'Encode::Guess'         => '1.09',
1464             'Encode::JP::JIS7'      => '1.12',
1465             'Encode::KR'            => '1.23',
1466             'Encode::KR::2022_KR'   => '1.06',
1467             'Encode::MIME::Header'  => '1.09',
1468             'Encode::Unicode'       => '1.40',
1469             'Encode::Unicode::UTF7' => '0.02',
1470             'English'               => '1.01',
1471             'Errno'                 => '1.09_00',
1472             'Exporter'              => '5.567',
1473             'Exporter::Heavy'       => '5.567',
1474             'ExtUtils::Command'     => '1.05',
1475             'ExtUtils::Command::MM' => '0.03',
1476             'ExtUtils::Constant'    => '0.14',
1477             'ExtUtils::Install'     => '1.32',
1478             'ExtUtils::Installed'   => '0.08',
1479             'ExtUtils::Liblist'     => '1.01',
1480             'ExtUtils::Liblist::Kid'=> '1.3',
1481             'ExtUtils::MM_Any'      => '0.07',
1482             'ExtUtils::MM_BeOS'     => '1.04',
1483             'ExtUtils::MM_Cygwin'   => '1.06',
1484             'ExtUtils::MM_DOS'      => '0.02',
1485             'ExtUtils::MM_MacOS'    => '1.07',
1486             'ExtUtils::MM_NW5'      => '2.06',
1487             'ExtUtils::MM_OS2'      => '1.04',
1488             'ExtUtils::MM_UWIN'     => '0.02',
1489             'ExtUtils::MM_Unix'     => '1.42',
1490             'ExtUtils::MM_VMS'      => '5.70',
1491             'ExtUtils::MM_Win32'    => '1.09',
1492             'ExtUtils::MM_Win95'    => '0.03',
1493             'ExtUtils::MakeMaker'   => '6.17',
1494             'ExtUtils::MakeMaker::bytes'=> '0.01',
1495             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1496             'ExtUtils::Manifest'    => '1.42',
1497             'Fcntl'                 => '1.05',
1498             'File::Basename'        => '2.72',
1499             'File::Copy'            => '2.06',
1500             'File::Find'            => '1.05',
1501             'File::Glob'            => '1.02',
1502             'File::Path'            => '1.06',
1503             'File::Spec'            => '0.86',
1504             'File::Spec::Cygwin'    => '1.1',
1505             'File::Spec::Epoc'      => '1.1',
1506             'File::Spec::Functions' => '1.3',
1507             'File::Spec::Mac'       => '1.4',
1508             'File::Spec::OS2'       => '1.2',
1509             'File::Spec::Unix'      => '1.5',
1510             'File::Spec::VMS'       => '1.4',
1511             'File::Spec::Win32'     => '1.4',
1512             'File::Temp'            => '0.14',
1513             'FileCache'             => '1.03',
1514             'Filter::Util::Call'    => '1.0601',
1515             'GDBM_File'             => '1.07',
1516             'Getopt::Long'          => '2.34',
1517             'Getopt::Std'           => '1.04',
1518             'Hash::Util'            => '0.05',
1519             'I18N::LangTags'        => '0.28',
1520             'I18N::LangTags::List'  => '0.26',
1521             'I18N::Langinfo'        => '0.02',
1522             'IO'                    => '1.21',
1523             'IO::Dir'               => '1.04',
1524             'IO::File'              => '1.10',
1525             'IO::Handle'            => '1.23',
1526             'IO::Seekable'          => '1.09',
1527             'IO::Select'            => '1.16',
1528             'IO::Socket'            => '1.28',
1529             'IO::Socket::INET'      => '1.27',
1530             'IO::Socket::UNIX'      => '1.21',
1531             'IPC::Msg'              => '1.02',
1532             'IPC::Open3'            => '1.0105',
1533             'IPC::Semaphore'        => '1.02',
1534             'IPC::SysV'             => '1.04',
1535             'JNI'                   => '0.2',
1536             'List::Util'            => '1.13',
1537             'Locale::Country'       => '2.61',
1538             'Locale::Currency'      => '2.21',
1539             'Locale::Language'      => '2.21',
1540             'Locale::Maketext'      => '1.06',
1541             'Locale::Maketext::Guts'=> undef,
1542             'Locale::Maketext::GutsLoader'=> undef,
1543             'Locale::Script'        => '2.21',
1544             'MIME::Base64'          => '2.20',
1545             'MIME::QuotedPrint'     => '2.20',
1546             'Math::BigFloat'        => '1.40',
1547             'Math::BigInt'          => '1.66',
1548             'Math::BigInt::Calc'    => '0.36',
1549             'Math::BigInt::Scalar'  => '0.11',
1550             'Math::BigRat'          => '0.10',
1551             'Math::Trig'            => '1.02',
1552             'NDBM_File'             => '1.05',
1553             'NEXT'                  => '0.60',
1554             'Net::Cmd'              => '2.24',
1555             'Net::Domain'           => '2.18',
1556             'Net::FTP'              => '2.71',
1557             'Net::FTP::A'           => '1.16',
1558             'Net::NNTP'             => '2.22',
1559             'Net::POP3'             => '2.24',
1560             'Net::Ping'             => '2.31',
1561             'Net::SMTP'             => '2.26',
1562             'Net::hostent'          => '1.01',
1563             'Net::servent'          => '1.01',
1564             'ODBM_File'             => '1.04',
1565             'OS2::DLL'              => '1.01',
1566             'OS2::ExtAttr'          => '0.02',
1567             'OS2::PrfDB'            => '0.03',
1568             'OS2::Process'          => '1.01',
1569             'OS2::REXX'             => '1.02',
1570             'POSIX'                 => '1.06',
1571             'PerlIO'                => '1.02',
1572             'PerlIO::encoding'      => '0.07',
1573             'PerlIO::scalar'        => '0.02',
1574             'PerlIO::via'           => '0.02',
1575             'PerlIO::via::QuotedPrint'=> '0.05',
1576             'Pod::Checker'          => '1.41',
1577             'Pod::Find'             => '0.24',
1578             'Pod::Functions'        => '1.02',
1579             'Pod::Html'             => '1.0501',
1580             'Pod::InputObjects'     => '1.14',
1581             'Pod::LaTeX'            => '0.55',
1582             'Pod::Man'              => '1.37',
1583             'Pod::ParseLink'        => '1.06',
1584             'Pod::ParseUtils'       => '0.3',
1585             'Pod::Perldoc'          => '3.10',
1586             'Pod::Perldoc::BaseTo'  => undef,
1587             'Pod::Perldoc::GetOptsOO'=> undef,
1588             'Pod::Perldoc::ToChecker'=> undef,
1589             'Pod::Perldoc::ToMan'   => undef,
1590             'Pod::Perldoc::ToNroff' => undef,
1591             'Pod::Perldoc::ToPod'   => undef,
1592             'Pod::Perldoc::ToRtf'   => undef,
1593             'Pod::Perldoc::ToText'  => undef,
1594             'Pod::Perldoc::ToTk'    => undef,
1595             'Pod::Perldoc::ToXml'   => undef,
1596             'Pod::PlainText'        => '2.01',
1597             'Pod::Text'             => '2.21',
1598             'Pod::Text::Color'      => '1.04',
1599             'Pod::Text::Overstrike' => '1.1',
1600             'Pod::Text::Termcap'    => '1.11',
1601             'Pod::Usage'            => '1.16',
1602             'SDBM_File'             => '1.04',
1603             'Safe'                  => '2.10',
1604             'Scalar::Util'          => '1.13',
1605             'SelfLoader'            => '1.0904',
1606             'Shell'                 => '0.5',
1607             'Socket'                => '1.76',
1608             'Storable'              => '2.08',
1609             'Switch'                => '2.10',
1610             'Symbol'                => '1.05',
1611             'Sys::Hostname'         => '1.11',
1612             'Sys::Syslog'           => '0.04',
1613             'Term::ANSIColor'       => '1.07',
1614             'Term::Cap'             => '1.08',
1615             'Term::Complete'        => '1.401',
1616             'Term::ReadLine'        => '1.01',
1617             'Test'                  => '1.24',
1618             'Test::Builder'         => '0.17',
1619             'Test::Harness'         => '2.30',
1620             'Test::Harness::Straps' => '0.15',
1621             'Test::More'            => '0.47',
1622             'Test::Simple'          => '0.47',
1623             'Text::Abbrev'          => '1.01',
1624             'Text::Balanced'        => '1.95',
1625             'Text::Wrap'            => '2001.09291',
1626             'Thread::Semaphore'     => '2.01',
1627             'Tie::Array'            => '1.03',
1628             'Tie::File'             => '0.97',
1629             'Tie::RefHash'          => '1.31',
1630             'Time::HiRes'           => '1.51',
1631             'Time::Local'           => '1.07',
1632             'UNIVERSAL'             => '1.01',
1633             'Unicode'               => '4.0.0',
1634             'Unicode::Collate'      => '0.28',
1635             'Unicode::Normalize'    => '0.23',
1636             'Unicode::UCD'          => '0.21',
1637             'VMS::Filespec'         => '1.11',
1638             'XS::APItest'           => '0.02',
1639             'XSLoader'              => '0.02',
1640             'attributes'            => '0.06',
1641             'base'                  => '2.03',
1642             'bigint'                => '0.04',
1643             'bignum'                => '0.14',
1644             'bigrat'                => '0.06',
1645             'bytes'                 => '1.01',
1646             'charnames'             => '1.02',
1647             'diagnostics'           => '1.11',
1648             'encoding'              => '1.47',
1649             'fields'                => '2.03',
1650             'filetest'              => '1.01',
1651             'if'                    => '0.03',
1652             'lib'                   => '0.5565',
1653             'open'                  => '1.02',
1654             'overload'              => '1.01',
1655             're'                    => '0.04',
1656             'sort'                  => '1.02',
1657             'strict'                => '1.03',
1658             'threads'               => '1.00',
1659             'threads::shared'       => '0.91',
1660             'utf8'                  => '1.02',
1661             'vmsish'                => '1.01',
1662             'warnings'              => '1.03',
1663         },
1664         removed => {
1665         }
1666     },
1667     5.008002 => {
1668         delta_from => 5.008001,
1669         changed => {
1670             'DB_File'               => '1.807',
1671             'Devel::PPPort'         => '2.009',
1672             'Digest::MD5'           => '2.30',
1673             'I18N::LangTags'        => '0.29',
1674             'I18N::LangTags::List'  => '0.29',
1675             'MIME::Base64'          => '2.21',
1676             'MIME::QuotedPrint'     => '2.21',
1677             'Net::Domain'           => '2.19',
1678             'Net::FTP'              => '2.72',
1679             'Pod::Perldoc'          => '3.11',
1680             'Time::HiRes'           => '1.52',
1681             'Unicode::Collate'      => '0.30',
1682             'Unicode::Normalize'    => '0.25',
1683         },
1684         removed => {
1685         }
1686     },
1687     5.008003 => {
1688         delta_from => 5.008002,
1689         changed => {
1690             'Benchmark'             => '1.052',
1691             'CGI'                   => '3.01',
1692             'CGI::Carp'             => '1.27',
1693             'CGI::Fast'             => '1.05',
1694             'CGI::Pretty'           => '1.08',
1695             'CGI::Util'             => '1.4',
1696             'Cwd'                   => '2.12',
1697             'DB_File'               => '1.808',
1698             'Devel::PPPort'         => '2.011',
1699             'Digest'                => '1.05',
1700             'Digest::MD5'           => '2.33',
1701             'Digest::base'          => '1.00',
1702             'Encode'                => '1.99',
1703             'Exporter'              => '5.57',
1704             'File::CheckTree'       => '4.3',
1705             'File::Copy'            => '2.07',
1706             'File::Find'            => '1.06',
1707             'File::Spec'            => '0.87',
1708             'FindBin'               => '1.44',
1709             'Getopt::Std'           => '1.05',
1710             'Math::BigFloat'        => '1.42',
1711             'Math::BigInt'          => '1.68',
1712             'Math::BigInt::Calc'    => '0.38',
1713             'Math::BigInt::CalcEmu' => '0.02',
1714             'OS2::DLL'              => '1.02',
1715             'POSIX'                 => '1.07',
1716             'PerlIO'                => '1.03',
1717             'PerlIO::via::QuotedPrint'=> '0.06',
1718             'Pod::Html'             => '1.0502',
1719             'Pod::Parser'           => '1.14',
1720             'Pod::Perldoc'          => '3.12',
1721             'Pod::PlainText'        => '2.02',
1722             'Storable'              => '2.09',
1723             'Test::Harness'         => '2.40',
1724             'Test::Harness::Assert' => '0.02',
1725             'Test::Harness::Iterator'=> '0.02',
1726             'Test::Harness::Straps' => '0.19',
1727             'Tie::Hash'             => '1.01',
1728             'Unicode::Collate'      => '0.33',
1729             'Unicode::Normalize'    => '0.28',
1730             'XS::APItest'           => '0.03',
1731             'base'                  => '2.04',
1732             'diagnostics'           => '1.12',
1733             'encoding'              => '1.48',
1734             'threads'               => '1.01',
1735             'threads::shared'       => '0.92',
1736         },
1737         removed => {
1738             'Math::BigInt::Scalar'  => 1,
1739         }
1740     },
1741     5.008004 => {
1742         delta_from => 5.008003,
1743         changed => {
1744             'Attribute::Handlers'   => '0.78_01',
1745             'B::Assembler'          => '0.07',
1746             'B::Concise'            => '0.60',
1747             'B::Deparse'            => '0.66',
1748             'Benchmark'             => '1.06',
1749             'CGI'                   => '3.04',
1750             'Carp'                  => '1.02',
1751             'Cwd'                   => '2.17',
1752             'DBM_Filter'            => '0.01',
1753             'DBM_Filter::compress'  => '0.01',
1754             'DBM_Filter::encode'    => '0.01',
1755             'DBM_Filter::int32'     => '0.01',
1756             'DBM_Filter::null'      => '0.01',
1757             'DBM_Filter::utf8'      => '0.01',
1758             'Digest'                => '1.06',
1759             'DynaLoader'            => '1.05',
1760             'Encode'                => '1.99_01',
1761             'Encode::CN::HZ'        => '1.0501',
1762             'Exporter'              => '5.58',
1763             'Exporter::Heavy'       => '5.57',
1764             'ExtUtils::Liblist::Kid'=> '1.3001',
1765             'ExtUtils::MM_NW5'      => '2.07_02',
1766             'ExtUtils::MM_Win95'    => '0.0301',
1767             'File::Find'            => '1.07',
1768             'IO::Handle'            => '1.24',
1769             'IO::Pipe'              => '1.123',
1770             'IPC::Open3'            => '1.0106',
1771             'Locale::Maketext'      => '1.08',
1772             'MIME::Base64'          => '3.01',
1773             'MIME::QuotedPrint'     => '3.01',
1774             'Math::BigFloat'        => '1.44',
1775             'Math::BigInt'          => '1.70',
1776             'Math::BigInt::Calc'    => '0.40',
1777             'Math::BigInt::CalcEmu' => '0.04',
1778             'Math::BigRat'          => '0.12',
1779             'ODBM_File'             => '1.05',
1780             'POSIX'                 => '1.08',
1781             'Shell'                 => '0.5.2',
1782             'Socket'                => '1.77',
1783             'Storable'              => '2.12',
1784             'Sys::Syslog'           => '0.05',
1785             'Term::ANSIColor'       => '1.08',
1786             'Time::HiRes'           => '1.59',
1787             'Unicode'               => '4.0.1',
1788             'Unicode::UCD'          => '0.22',
1789             'Win32'                 => '0.23',
1790             'base'                  => '2.05',
1791             'bigint'                => '0.05',
1792             'bignum'                => '0.15',
1793             'charnames'             => '1.03',
1794             'open'                  => '1.03',
1795             'threads'               => '1.03',
1796             'utf8'                  => '1.03',
1797         },
1798         removed => {
1799         }
1800     },
1801     5.008005 => {
1802         delta_from => 5.008004,
1803         changed => {
1804             'B::Concise'            => '0.61',
1805             'B::Deparse'            => '0.67',
1806             'CGI'                   => '3.05',
1807             'CGI::Carp'             => '1.28',
1808             'CGI::Util'             => '1.5',
1809             'Carp'                  => '1.03',
1810             'Carp::Heavy'           => '1.03',
1811             'Cwd'                   => '2.19',
1812             'DB_File'               => '1.809',
1813             'Digest'                => '1.08',
1814             'Encode'                => '2.01',
1815             'Encode::Alias'         => '2.00',
1816             'Encode::Byte'          => '2.00',
1817             'Encode::CJKConstants'  => '2.00',
1818             'Encode::CN'            => '2.00',
1819             'Encode::CN::HZ'        => '2.01',
1820             'Encode::Config'        => '2.00',
1821             'Encode::EBCDIC'        => '2.00',
1822             'Encode::Encoder'       => '2.00',
1823             'Encode::Encoding'      => '2.00',
1824             'Encode::Guess'         => '2.00',
1825             'Encode::JP'            => '2.00',
1826             'Encode::JP::H2Z'       => '2.00',
1827             'Encode::JP::JIS7'      => '2.00',
1828             'Encode::KR'            => '2.00',
1829             'Encode::KR::2022_KR'   => '2.00',
1830             'Encode::MIME::Header'  => '2.00',
1831             'Encode::Symbol'        => '2.00',
1832             'Encode::TW'            => '2.00',
1833             'Encode::Unicode'       => '2.00',
1834             'Encode::Unicode::UTF7' => '2.01',
1835             'File::Basename'        => '2.73',
1836             'File::Copy'            => '2.08',
1837             'File::Glob'            => '1.03',
1838             'FileCache'             => '1.04_01',
1839             'I18N::LangTags'        => '0.33',
1840             'I18N::LangTags::Detect'=> '1.03',
1841             'List::Util'            => '1.14',
1842             'Locale::Constants'     => '2.07',
1843             'Locale::Country'       => '2.07',
1844             'Locale::Currency'      => '2.07',
1845             'Locale::Language'      => '2.07',
1846             'Locale::Maketext'      => '1.09',
1847             'Locale::Script'        => '2.07',
1848             'Net::Cmd'              => '2.26',
1849             'Net::FTP'              => '2.75',
1850             'Net::NNTP'             => '2.23',
1851             'Net::POP3'             => '2.28',
1852             'Net::SMTP'             => '2.29',
1853             'Net::Time'             => '2.10',
1854             'Pod::Checker'          => '1.42',
1855             'Pod::Find'             => '0.2401',
1856             'Pod::LaTeX'            => '0.56',
1857             'Pod::ParseUtils'       => '1.2',
1858             'Pod::Perldoc'          => '3.13',
1859             'Safe'                  => '2.11',
1860             'Scalar::Util'          => '1.14',
1861             'Shell'                 => '0.6',
1862             'Storable'              => '2.13',
1863             'Term::Cap'             => '1.09',
1864             'Test'                  => '1.25',
1865             'Test::Harness'         => '2.42',
1866             'Text::ParseWords'      => '3.22',
1867             'Text::Wrap'            => '2001.09292',
1868             'Time::Local'           => '1.10',
1869             'Unicode::Collate'      => '0.40',
1870             'Unicode::Normalize'    => '0.30',
1871             'XS::APItest'           => '0.04',
1872             'autouse'               => '1.04',
1873             'base'                  => '2.06',
1874             'charnames'             => '1.04',
1875             'diagnostics'           => '1.13',
1876             'encoding'              => '2.00',
1877             'threads'               => '1.05',
1878             'utf8'                  => '1.04',
1879         },
1880         removed => {
1881         }
1882     },
1883     5.008006 => {
1884         delta_from => 5.008005,
1885         changed => {
1886             'B'                     => '1.07',
1887             'B::C'                  => '1.04',
1888             'B::Concise'            => '0.64',
1889             'B::Debug'              => '1.02',
1890             'B::Deparse'            => '0.69',
1891             'B::Lint'               => '1.03',
1892             'B::Showlex'            => '1.02',
1893             'Cwd'                   => '3.01',
1894             'DB_File'               => '1.810',
1895             'Data::Dumper'          => '2.121_02',
1896             'Devel::PPPort'         => '3.03',
1897             'Devel::Peek'           => '1.02',
1898             'Encode'                => '2.08',
1899             'Encode::Alias'         => '2.02',
1900             'Encode::Encoding'      => '2.02',
1901             'Encode::JP'            => '2.01',
1902             'Encode::Unicode'       => '2.02',
1903             'Exporter::Heavy'       => '5.58',
1904             'ExtUtils::Constant'    => '0.1401',
1905             'File::Spec'            => '3.01',
1906             'File::Spec::Win32'     => '1.5',
1907             'I18N::LangTags'        => '0.35',
1908             'I18N::LangTags::List'  => '0.35',
1909             'MIME::Base64'          => '3.05',
1910             'MIME::QuotedPrint'     => '3.03',
1911             'Math::BigFloat'        => '1.47',
1912             'Math::BigInt'          => '1.73',
1913             'Math::BigInt::Calc'    => '0.43',
1914             'Math::BigRat'          => '0.13',
1915             'Text::ParseWords'      => '3.23',
1916             'Time::HiRes'           => '1.65',
1917             'XS::APItest'           => '0.05',
1918             'diagnostics'           => '1.14',
1919             'encoding'              => '2.01',
1920             'open'                  => '1.04',
1921             'overload'              => '1.02',
1922         },
1923         removed => {
1924         }
1925     },
1926     5.008007 => {
1927         delta_from => 5.008006,
1928         changed => {
1929             'B'                     => '1.09',
1930             'B::Concise'            => '0.65',
1931             'B::Deparse'            => '0.7',
1932             'B::Disassembler'       => '1.04',
1933             'B::Terse'              => '1.03',
1934             'Benchmark'             => '1.07',
1935             'CGI'                   => '3.10',
1936             'CGI::Carp'             => '1.29',
1937             'CGI::Cookie'           => '1.25',
1938             'Carp'                  => '1.04',
1939             'Carp::Heavy'           => '1.04',
1940             'Class::ISA'            => '0.33',
1941             'Cwd'                   => '3.05',
1942             'DB_File'               => '1.811',
1943             'Data::Dumper'          => '2.121_04',
1944             'Devel::DProf'          => '20050310.00',
1945             'Devel::PPPort'         => '3.06',
1946             'Digest'                => '1.10',
1947             'Digest::file'          => '0.01',
1948             'Encode'                => '2.10',
1949             'Encode::Alias'         => '2.03',
1950             'Errno'                 => '1.09_01',
1951             'ExtUtils::Constant'    => '0.16',
1952             'ExtUtils::Constant::Base'=> '0.01',
1953             'ExtUtils::Constant::Utils'=> '0.01',
1954             'ExtUtils::Constant::XS'=> '0.01',
1955             'File::Find'            => '1.09',
1956             'File::Glob'            => '1.04',
1957             'File::Path'            => '1.07',
1958             'File::Spec'            => '3.05',
1959             'File::Temp'            => '0.16',
1960             'FileCache'             => '1.05',
1961             'IO::File'              => '1.11',
1962             'IO::Socket::INET'      => '1.28',
1963             'Math::BigFloat'        => '1.51',
1964             'Math::BigInt'          => '1.77',
1965             'Math::BigInt::Calc'    => '0.47',
1966             'Math::BigInt::CalcEmu' => '0.05',
1967             'Math::BigRat'          => '0.15',
1968             'Pod::Find'             => '1.3',
1969             'Pod::Html'             => '1.0503',
1970             'Pod::InputObjects'     => '1.3',
1971             'Pod::LaTeX'            => '0.58',
1972             'Pod::ParseUtils'       => '1.3',
1973             'Pod::Parser'           => '1.3',
1974             'Pod::Perldoc'          => '3.14',
1975             'Pod::Select'           => '1.3',
1976             'Pod::Usage'            => '1.3',
1977             'SelectSaver'           => '1.01',
1978             'Symbol'                => '1.06',
1979             'Sys::Syslog'           => '0.06',
1980             'Term::ANSIColor'       => '1.09',
1981             'Term::Complete'        => '1.402',
1982             'Test::Builder'         => '0.22',
1983             'Test::Harness'         => '2.48',
1984             'Test::Harness::Point'  => '0.01',
1985             'Test::Harness::Straps' => '0.23',
1986             'Test::More'            => '0.54',
1987             'Test::Simple'          => '0.54',
1988             'Text::ParseWords'      => '3.24',
1989             'Text::Wrap'            => '2001.09293',
1990             'Tie::RefHash'          => '1.32',
1991             'Time::HiRes'           => '1.66',
1992             'Time::Local'           => '1.11',
1993             'Unicode'               => '4.1.0',
1994             'Unicode::Normalize'    => '0.32',
1995             'Unicode::UCD'          => '0.23',
1996             'Win32'                 => '0.24',
1997             'XS::APItest'           => '0.06',
1998             'base'                  => '2.07',
1999             'bigint'                => '0.07',
2000             'bignum'                => '0.17',
2001             'bigrat'                => '0.08',
2002             'bytes'                 => '1.02',
2003             'constant'              => '1.05',
2004             'overload'              => '1.03',
2005             'threads::shared'       => '0.93',
2006             'utf8'                  => '1.05',
2007         },
2008         removed => {
2009             'JNI'                   => 1,
2010             'JPL::AutoLoader'       => 1,
2011             'JPL::Class'            => 1,
2012             'JPL::Compile'          => 1,
2013         }
2014     },
2015     5.008008 => {
2016         delta_from => 5.008007,
2017         changed => {
2018             'Attribute::Handlers'   => '0.78_02',
2019             'B'                     => '1.09_01',
2020             'B::Bblock'             => '1.02_01',
2021             'B::Bytecode'           => '1.01_01',
2022             'B::C'                  => '1.04_01',
2023             'B::CC'                 => '1.00_01',
2024             'B::Concise'            => '0.66',
2025             'B::Debug'              => '1.02_01',
2026             'B::Deparse'            => '0.71',
2027             'B::Disassembler'       => '1.05',
2028             'B::Terse'              => '1.03_01',
2029             'ByteLoader'            => '0.06',
2030             'CGI'                   => '3.15',
2031             'CGI::Cookie'           => '1.26',
2032             'CPAN'                  => '1.76_02',
2033             'Cwd'                   => '3.12',
2034             'DB'                    => '1.01',
2035             'DB_File'               => '1.814',
2036             'Data::Dumper'          => '2.121_08',
2037             'Devel::DProf'          => '20050603.00',
2038             'Devel::PPPort'         => '3.06_01',
2039             'Devel::Peek'           => '1.03',
2040             'Digest'                => '1.14',
2041             'Digest::MD5'           => '2.36',
2042             'Digest::file'          => '1.00',
2043             'Dumpvalue'             => '1.12',
2044             'Encode'                => '2.12',
2045             'Encode::Alias'         => '2.04',
2046             'Encode::Config'        => '2.01',
2047             'Encode::MIME::Header'  => '2.01',
2048             'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
2049             'English'               => '1.02',
2050             'ExtUtils::Command'     => '1.09',
2051             'ExtUtils::Command::MM' => '0.05',
2052             'ExtUtils::Constant'    => '0.17',
2053             'ExtUtils::Embed'       => '1.26',
2054             'ExtUtils::Install'     => '1.33',
2055             'ExtUtils::Liblist::Kid'=> '1.3',
2056             'ExtUtils::MM'          => '0.05',
2057             'ExtUtils::MM_AIX'      => '0.03',
2058             'ExtUtils::MM_Any'      => '0.13',
2059             'ExtUtils::MM_BeOS'     => '1.05',
2060             'ExtUtils::MM_Cygwin'   => '1.08',
2061             'ExtUtils::MM_MacOS'    => '1.08',
2062             'ExtUtils::MM_NW5'      => '2.08',
2063             'ExtUtils::MM_OS2'      => '1.05',
2064             'ExtUtils::MM_QNX'      => '0.02',
2065             'ExtUtils::MM_Unix'     => '1.50',
2066             'ExtUtils::MM_VMS'      => '5.73',
2067             'ExtUtils::MM_VOS'      => '0.02',
2068             'ExtUtils::MM_Win32'    => '1.12',
2069             'ExtUtils::MM_Win95'    => '0.04',
2070             'ExtUtils::MakeMaker'   => '6.30',
2071             'ExtUtils::MakeMaker::Config'=> '0.02',
2072             'ExtUtils::Manifest'    => '1.46',
2073             'File::Basename'        => '2.74',
2074             'File::Copy'            => '2.09',
2075             'File::Find'            => '1.10',
2076             'File::Glob'            => '1.05',
2077             'File::Path'            => '1.08',
2078             'File::Spec'            => '3.12',
2079             'File::Spec::Win32'     => '1.6',
2080             'FileCache'             => '1.06',
2081             'Filter::Simple'        => '0.82',
2082             'FindBin'               => '1.47',
2083             'GDBM_File'             => '1.08',
2084             'Getopt::Long'          => '2.35',
2085             'IO'                    => '1.22',
2086             'IO::Dir'               => '1.05',
2087             'IO::File'              => '1.13',
2088             'IO::Handle'            => '1.25',
2089             'IO::Pipe'              => '1.13',
2090             'IO::Poll'              => '0.07',
2091             'IO::Seekable'          => '1.10',
2092             'IO::Select'            => '1.17',
2093             'IO::Socket'            => '1.29',
2094             'IO::Socket::INET'      => '1.29',
2095             'IO::Socket::UNIX'      => '1.22',
2096             'IPC::Open2'            => '1.02',
2097             'IPC::Open3'            => '1.02',
2098             'List::Util'            => '1.18',
2099             'MIME::Base64'          => '3.07',
2100             'MIME::QuotedPrint'     => '3.07',
2101             'Math::Complex'         => '1.35',
2102             'Math::Trig'            => '1.03',
2103             'NDBM_File'             => '1.06',
2104             'ODBM_File'             => '1.06',
2105             'OS2::PrfDB'            => '0.04',
2106             'OS2::Process'          => '1.02',
2107             'OS2::REXX'             => '1.03',
2108             'Opcode'                => '1.06',
2109             'POSIX'                 => '1.09',
2110             'PerlIO'                => '1.04',
2111             'PerlIO::encoding'      => '0.09',
2112             'PerlIO::scalar'        => '0.04',
2113             'PerlIO::via'           => '0.03',
2114             'Pod::Checker'          => '1.43',
2115             'Pod::Find'             => '1.34',
2116             'Pod::Functions'        => '1.03',
2117             'Pod::Html'             => '1.0504',
2118             'Pod::ParseUtils'       => '1.33',
2119             'Pod::Parser'           => '1.32',
2120             'Pod::Usage'            => '1.33',
2121             'SDBM_File'             => '1.05',
2122             'Safe'                  => '2.12',
2123             'Scalar::Util'          => '1.18',
2124             'Socket'                => '1.78',
2125             'Storable'              => '2.15',
2126             'Switch'                => '2.10_01',
2127             'Sys::Syslog'           => '0.13',
2128             'Term::ANSIColor'       => '1.10',
2129             'Term::ReadLine'        => '1.02',
2130             'Test::Builder'         => '0.32',
2131             'Test::Builder::Module' => '0.02',
2132             'Test::Builder::Tester' => '1.02',
2133             'Test::Builder::Tester::Color'=> undef,
2134             'Test::Harness'         => '2.56',
2135             'Test::Harness::Straps' => '0.26',
2136             'Test::More'            => '0.62',
2137             'Test::Simple'          => '0.62',
2138             'Text::Tabs'            => '2005.0824',
2139             'Text::Wrap'            => '2005.082401',
2140             'Tie::Hash'             => '1.02',
2141             'Time::HiRes'           => '1.86',
2142             'Unicode::Collate'      => '0.52',
2143             'Unicode::UCD'          => '0.24',
2144             'User::grent'           => '1.01',
2145             'Win32'                 => '0.2601',
2146             'XS::APItest'           => '0.08',
2147             'XS::Typemap'           => '0.02',
2148             'XSLoader'              => '0.06',
2149             'attrs'                 => '1.02',
2150             'autouse'               => '1.05',
2151             'blib'                  => '1.03',
2152             'charnames'             => '1.05',
2153             'diagnostics'           => '1.15',
2154             'encoding'              => '2.02',
2155             'if'                    => '0.05',
2156             'open'                  => '1.05',
2157             'ops'                   => '1.01',
2158             'overload'              => '1.04',
2159             're'                    => '0.05',
2160             'threads'               => '1.07',
2161             'threads::shared'       => '0.94',
2162             'utf8'                  => '1.06',
2163             'vmsish'                => '1.02',
2164             'warnings'              => '1.05',
2165             'warnings::register'    => '1.01',
2166         },
2167         removed => {
2168         }
2169     },
2170     5.008009 => {
2171         delta_from => 5.008008,
2172         changed => {
2173             'Attribute::Handlers'   => '0.78_03',
2174             'AutoLoader'            => '5.67',
2175             'AutoSplit'             => '1.06',
2176             'B'                     => '1.19',
2177             'B::Asmdata'            => '1.02',
2178             'B::Assembler'          => '0.08',
2179             'B::C'                  => '1.05',
2180             'B::Concise'            => '0.76',
2181             'B::Debug'              => '1.05',
2182             'B::Deparse'            => '0.87',
2183             'B::Lint'               => '1.11',
2184             'B::Lint::Debug'        => undef,
2185             'B::Terse'              => '1.05',
2186             'Benchmark'             => '1.1',
2187             'CGI'                   => '3.42',
2188             'CGI::Carp'             => '1.30_01',
2189             'CGI::Cookie'           => '1.29',
2190             'CGI::Fast'             => '1.07',
2191             'CGI::Util'             => '1.5_01',
2192             'CPAN'                  => '1.9301',
2193             'CPAN::Debug'           => '5.5',
2194             'CPAN::DeferedCode'     => '5.50',
2195             'CPAN::Distroprefs'     => '6',
2196             'CPAN::FirstTime'       => '5.5_01',
2197             'CPAN::HandleConfig'    => '5.5',
2198             'CPAN::Kwalify'         => '5.50',
2199             'CPAN::Nox'             => '5.50',
2200             'CPAN::Queue'           => '5.5',
2201             'CPAN::Tarzip'          => '5.5',
2202             'CPAN::Version'         => '5.5',
2203             'Carp'                  => '1.10',
2204             'Carp::Heavy'           => '1.10',
2205             'Cwd'                   => '3.29',
2206             'DBM_Filter'            => '0.02',
2207             'DBM_Filter::compress'  => '0.02',
2208             'DBM_Filter::encode'    => '0.02',
2209             'DBM_Filter::int32'     => '0.02',
2210             'DBM_Filter::null'      => '0.02',
2211             'DBM_Filter::utf8'      => '0.02',
2212             'DB_File'               => '1.817',
2213             'Data::Dumper'          => '2.121_17',
2214             'Devel::DProf'          => '20080331.00',
2215             'Devel::InnerPackage'   => '0.3',
2216             'Devel::PPPort'         => '3.14',
2217             'Devel::Peek'           => '1.04',
2218             'Digest'                => '1.15',
2219             'Digest::MD5'           => '2.37',
2220             'DirHandle'             => '1.02',
2221             'DynaLoader'            => '1.09',
2222             'Encode'                => '2.26',
2223             'Encode::Alias'         => '2.10',
2224             'Encode::Byte'          => '2.03',
2225             'Encode::CJKConstants'  => '2.02',
2226             'Encode::CN'            => '2.02',
2227             'Encode::CN::HZ'        => '2.05',
2228             'Encode::Config'        => '2.05',
2229             'Encode::EBCDIC'        => '2.02',
2230             'Encode::Encoder'       => '2.01',
2231             'Encode::Encoding'      => '2.05',
2232             'Encode::GSM0338'       => '2.01',
2233             'Encode::Guess'         => '2.02',
2234             'Encode::JP'            => '2.03',
2235             'Encode::JP::H2Z'       => '2.02',
2236             'Encode::JP::JIS7'      => '2.04',
2237             'Encode::KR'            => '2.02',
2238             'Encode::KR::2022_KR'   => '2.02',
2239             'Encode::MIME::Header'  => '2.05',
2240             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2241             'Encode::MIME::Name'    => '1.01',
2242             'Encode::Symbol'        => '2.02',
2243             'Encode::TW'            => '2.02',
2244             'Encode::Unicode'       => '2.05',
2245             'Encode::Unicode::UTF7' => '2.04',
2246             'English'               => '1.03',
2247             'Errno'                 => '1.10',
2248             'Exporter'              => '5.63',
2249             'Exporter::Heavy'       => '5.63',
2250             'ExtUtils::Command'     => '1.15',
2251             'ExtUtils::Command::MM' => '6.48',
2252             'ExtUtils::Constant'    => '0.21',
2253             'ExtUtils::Constant::Base'=> '0.04',
2254             'ExtUtils::Constant::ProxySubs'=> '0.06',
2255             'ExtUtils::Constant::Utils'=> '0.02',
2256             'ExtUtils::Constant::XS'=> '0.02',
2257             'ExtUtils::Embed'       => '1.28',
2258             'ExtUtils::Install'     => '1.50_01',
2259             'ExtUtils::Installed'   => '1.43',
2260             'ExtUtils::Liblist'     => '6.48',
2261             'ExtUtils::Liblist::Kid'=> '6.48',
2262             'ExtUtils::MM'          => '6.48',
2263             'ExtUtils::MM_AIX'      => '6.48',
2264             'ExtUtils::MM_Any'      => '6.48',
2265             'ExtUtils::MM_BeOS'     => '6.48',
2266             'ExtUtils::MM_Cygwin'   => '6.48',
2267             'ExtUtils::MM_DOS'      => '6.48',
2268             'ExtUtils::MM_Darwin'   => '6.48',
2269             'ExtUtils::MM_MacOS'    => '6.48',
2270             'ExtUtils::MM_NW5'      => '6.48',
2271             'ExtUtils::MM_OS2'      => '6.48',
2272             'ExtUtils::MM_QNX'      => '6.48',
2273             'ExtUtils::MM_UWIN'     => '6.48',
2274             'ExtUtils::MM_Unix'     => '6.48',
2275             'ExtUtils::MM_VMS'      => '6.48',
2276             'ExtUtils::MM_VOS'      => '6.48',
2277             'ExtUtils::MM_Win32'    => '6.48',
2278             'ExtUtils::MM_Win95'    => '6.48',
2279             'ExtUtils::MY'          => '6.48',
2280             'ExtUtils::MakeMaker'   => '6.48',
2281             'ExtUtils::MakeMaker::Config'=> '6.48',
2282             'ExtUtils::MakeMaker::bytes'=> '6.48',
2283             'ExtUtils::MakeMaker::vmsish'=> '6.48',
2284             'ExtUtils::Manifest'    => '1.55',
2285             'ExtUtils::Mkbootstrap' => '6.48',
2286             'ExtUtils::Mksymlists'  => '6.48',
2287             'ExtUtils::Packlist'    => '1.43',
2288             'ExtUtils::ParseXS'     => '2.19',
2289             'ExtUtils::XSSymSet'    => '1.1',
2290             'ExtUtils::testlib'     => '6.48',
2291             'Fatal'                 => '1.06',
2292             'Fcntl'                 => '1.06',
2293             'File::Basename'        => '2.77',
2294             'File::CheckTree'       => '4.4',
2295             'File::Compare'         => '1.1005',
2296             'File::Copy'            => '2.13',
2297             'File::DosGlob'         => '1.01',
2298             'File::Find'            => '1.13',
2299             'File::Glob'            => '1.06',
2300             'File::Path'            => '2.07_02',
2301             'File::Spec'            => '3.29',
2302             'File::Spec::Cygwin'    => '3.29',
2303             'File::Spec::Epoc'      => '3.29',
2304             'File::Spec::Functions' => '3.29',
2305             'File::Spec::Mac'       => '3.29',
2306             'File::Spec::OS2'       => '3.29',
2307             'File::Spec::Unix'      => '3.29',
2308             'File::Spec::VMS'       => '3.29',
2309             'File::Spec::Win32'     => '3.29',
2310             'File::Temp'            => '0.20',
2311             'File::stat'            => '1.01',
2312             'FileCache'             => '1.07',
2313             'Filter::Simple'        => '0.83',
2314             'Filter::Util::Call'    => '1.07',
2315             'FindBin'               => '1.49',
2316             'GDBM_File'             => '1.09',
2317             'Getopt::Long'          => '2.37',
2318             'Getopt::Std'           => '1.06',
2319             'Hash::Util'            => '0.06',
2320             'IO'                    => '1.23',
2321             'IO::Dir'               => '1.06',
2322             'IO::File'              => '1.14',
2323             'IO::Handle'            => '1.27',
2324             'IO::Socket'            => '1.30',
2325             'IO::Socket::INET'      => '1.31',
2326             'IO::Socket::UNIX'      => '1.23',
2327             'IPC::Msg'              => '2.00',
2328             'IPC::Open2'            => '1.03',
2329             'IPC::Open3'            => '1.03',
2330             'IPC::Semaphore'        => '2.00',
2331             'IPC::SharedMem'        => '2.00',
2332             'IPC::SysV'             => '2.00',
2333             'List::Util'            => '1.19',
2334             'Locale::Maketext'      => '1.13',
2335             'Locale::Maketext::Guts'=> '1.13',
2336             'Locale::Maketext::GutsLoader'=> '1.13',
2337             'Math::BigFloat'        => '1.60',
2338             'Math::BigInt'          => '1.89',
2339             'Math::BigInt::Calc'    => '0.52',
2340             'Math::BigRat'          => '0.22',
2341             'Math::Complex'         => '1.54',
2342             'Math::Trig'            => '1.18',
2343             'Module::CoreList'      => '2.17',
2344             'Module::Pluggable'     => '3.8',
2345             'Module::Pluggable::Object'=> '3.6',
2346             'NDBM_File'             => '1.07',
2347             'NEXT'                  => '0.61',
2348             'Net::Cmd'              => '2.29',
2349             'Net::Config'           => '1.11',
2350             'Net::Domain'           => '2.20',
2351             'Net::FTP'              => '2.77',
2352             'Net::FTP::A'           => '1.18',
2353             'Net::NNTP'             => '2.24',
2354             'Net::POP3'             => '2.29',
2355             'Net::Ping'             => '2.35',
2356             'Net::SMTP'             => '2.31',
2357             'O'                     => '1.01',
2358             'ODBM_File'             => '1.07',
2359             'OS2::DLL'              => '1.03',
2360             'OS2::Process'          => '1.03',
2361             'Opcode'                => '1.0601',
2362             'POSIX'                 => '1.15',
2363             'PerlIO'                => '1.05',
2364             'PerlIO::encoding'      => '0.11',
2365             'PerlIO::scalar'        => '0.06',
2366             'PerlIO::via'           => '0.05',
2367             'Pod::Html'             => '1.09',
2368             'Pod::ParseUtils'       => '1.35',
2369             'Pod::Parser'           => '1.35',
2370             'Pod::Select'           => '1.35',
2371             'Pod::Usage'            => '1.35',
2372             'SDBM_File'             => '1.06',
2373             'Safe'                  => '2.16',
2374             'Scalar::Util'          => '1.19',
2375             'SelfLoader'            => '1.17',
2376             'Shell'                 => '0.72',
2377             'Socket'                => '1.81',
2378             'Storable'              => '2.19',
2379             'Switch'                => '2.13',
2380             'Sys::Syslog'           => '0.27',
2381             'Sys::Syslog::win32::Win32'=> undef,
2382             'Term::ANSIColor'       => '1.12',
2383             'Term::Cap'             => '1.12',
2384             'Term::ReadLine'        => '1.03',
2385             'Test::Builder'         => '0.80',
2386             'Test::Builder::Module' => '0.80',
2387             'Test::Builder::Tester' => '1.13',
2388             'Test::Harness'         => '2.64',
2389             'Test::Harness::Results'=> '0.01_01',
2390             'Test::Harness::Straps' => '0.26_01',
2391             'Test::Harness::Util'   => '0.01',
2392             'Test::More'            => '0.80',
2393             'Test::Simple'          => '0.80',
2394             'Text::Balanced'        => '1.98',
2395             'Text::ParseWords'      => '3.27',
2396             'Text::Soundex'         => '3.03',
2397             'Text::Tabs'            => '2007.1117',
2398             'Text::Wrap'            => '2006.1117',
2399             'Thread'                => '2.01',
2400             'Thread::Queue'         => '2.11',
2401             'Thread::Semaphore'     => '2.09',
2402             'Tie::Handle'           => '4.2',
2403             'Tie::Hash'             => '1.03',
2404             'Tie::Memoize'          => '1.1',
2405             'Tie::RefHash'          => '1.38',
2406             'Tie::Scalar'           => '1.01',
2407             'Tie::StdHandle'        => '4.2',
2408             'Time::HiRes'           => '1.9715',
2409             'Time::Local'           => '1.1901',
2410             'Time::gmtime'          => '1.03',
2411             'Unicode'               => '5.1.0',
2412             'Unicode::Normalize'    => '1.02',
2413             'Unicode::UCD'          => '0.25',
2414             'VMS::DCLsym'           => '1.03',
2415             'VMS::Stdio'            => '2.4',
2416             'Win32'                 => '0.38',
2417             'Win32API::File'        => '0.1001_01',
2418             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2419             'Win32CORE'             => '0.02',
2420             'XS::APItest'           => '0.15',
2421             'XS::Typemap'           => '0.03',
2422             'XSLoader'              => '0.10',
2423             'attributes'            => '0.09',
2424             'autouse'               => '1.06',
2425             'base'                  => '2.13',
2426             'bigint'                => '0.23',
2427             'bignum'                => '0.23',
2428             'bigrat'                => '0.23',
2429             'blib'                  => '1.04',
2430             'charnames'             => '1.06',
2431             'constant'              => '1.17',
2432             'diagnostics'           => '1.16',
2433             'encoding'              => '2.6_01',
2434             'fields'                => '2.12',
2435             'filetest'              => '1.02',
2436             'lib'                   => '0.61',
2437             'open'                  => '1.06',
2438             'ops'                   => '1.02',
2439             'overload'              => '1.06',
2440             're'                    => '0.0601',
2441             'sigtrap'               => '1.04',
2442             'threads'               => '1.71',
2443             'threads::shared'       => '1.27',
2444             'utf8'                  => '1.07',
2445             'warnings'              => '1.05_01',
2446         },
2447         removed => {
2448         }
2449     },
2450     5.009 => {
2451         delta_from => 5.008002,
2452         changed => {
2453             'B'                     => '1.03',
2454             'B::C'                  => '1.03',
2455             'B::Concise'            => '0.57',
2456             'B::Deparse'            => '0.65',
2457             'DB_File'               => '1.806',
2458             'Devel::PPPort'         => '2.008',
2459             'English'               => '1.02',
2460             'Fatal'                 => '1.04',
2461             'OS2::DLL'              => '1.02',
2462             'Opcode'                => '1.06',
2463             'Time::HiRes'           => '1.51',
2464             'Unicode::Collate'      => '0.28',
2465             'Unicode::Normalize'    => '0.23',
2466             'XSLoader'              => '0.03',
2467             'assertions'            => '0.01',
2468             'assertions::activate'  => '0.01',
2469             'overload'              => '1.02',
2470             'version'               => '0.29',
2471         },
2472         removed => {
2473         }
2474     },
2475     5.009001 => {
2476         delta_from => 5.008004,
2477         changed => {
2478             'B'                     => '1.05',
2479             'B::Assembler'          => '0.06',
2480             'B::C'                  => '1.04',
2481             'B::Concise'            => '0.59',
2482             'B::Debug'              => '1.02',
2483             'B::Deparse'            => '0.65',
2484             'DB_File'               => '1.808_01',
2485             'Devel::PPPort'         => '2.011_01',
2486             'Digest'                => '1.05',
2487             'DynaLoader'            => '1.04',
2488             'English'               => '1.02',
2489             'Exporter::Heavy'       => '5.567',
2490             'ExtUtils::Command'     => '1.07',
2491             'ExtUtils::Liblist::Kid'=> '1.3',
2492             'ExtUtils::MM_Any'      => '0.0901',
2493             'ExtUtils::MM_Cygwin'   => '1.07',
2494             'ExtUtils::MM_NW5'      => '2.07_01',
2495             'ExtUtils::MM_Unix'     => '1.45_01',
2496             'ExtUtils::MM_VMS'      => '5.71_01',
2497             'ExtUtils::MM_Win32'    => '1.10_01',
2498             'ExtUtils::MM_Win95'    => '0.03',
2499             'ExtUtils::MakeMaker'   => '6.21_02',
2500             'ExtUtils::Manifest'    => '1.43',
2501             'Fatal'                 => '1.04',
2502             'Getopt::Long'          => '2.3401',
2503             'IO::Handle'            => '1.23',
2504             'IO::Pipe'              => '1.122',
2505             'IPC::Open3'            => '1.0105',
2506             'MIME::Base64'          => '3.00_01',
2507             'MIME::QuotedPrint'     => '3.00',
2508             'Memoize'               => '1.01_01',
2509             'ODBM_File'             => '1.04',
2510             'Opcode'                => '1.06',
2511             'POSIX'                 => '1.07',
2512             'Storable'              => '2.11',
2513             'Time::HiRes'           => '1.56',
2514             'Time::Local'           => '1.07_94',
2515             'UNIVERSAL'             => '1.02',
2516             'Unicode'               => '4.0.0',
2517             'Unicode::UCD'          => '0.21',
2518             'XSLoader'              => '0.03',
2519             'assertions'            => '0.01',
2520             'assertions::activate'  => '0.01',
2521             'base'                  => '2.04',
2522             'if'                    => '0.0401',
2523             'open'                  => '1.02',
2524             'overload'              => '1.02',
2525             'threads'               => '1.02',
2526             'utf8'                  => '1.02',
2527             'version'               => '0.36',
2528         },
2529         removed => {
2530         }
2531     },
2532     5.009002 => {
2533         delta_from => 5.008007,
2534         changed => {
2535             'B'                     => '1.07',
2536             'B::Concise'            => '0.64',
2537             'B::Deparse'            => '0.69',
2538             'B::Disassembler'       => '1.03',
2539             'B::Terse'              => '1.02',
2540             'CGI'                   => '3.07',
2541             'Config::Extensions'    => '0.01',
2542             'Devel::DProf'          => '20030813.00',
2543             'DynaLoader'            => '1.07',
2544             'Encode'                => '2.09',
2545             'Encode::Alias'         => '2.02',
2546             'English'               => '1.03',
2547             'Exporter'              => '5.59',
2548             'Exporter::Heavy'       => '5.59',
2549             'ExtUtils::Command'     => '1.07',
2550             'ExtUtils::Command::MM' => '0.03_01',
2551             'ExtUtils::Embed'       => '1.26',
2552             'ExtUtils::Liblist::Kid'=> '1.3',
2553             'ExtUtils::MM_Any'      => '0.10',
2554             'ExtUtils::MM_Cygwin'   => '1.07',
2555             'ExtUtils::MM_MacOS'    => '1.08',
2556             'ExtUtils::MM_NW5'      => '2.07',
2557             'ExtUtils::MM_Unix'     => '1.46_01',
2558             'ExtUtils::MM_VMS'      => '5.71',
2559             'ExtUtils::MM_Win32'    => '1.10',
2560             'ExtUtils::MM_Win95'    => '0.03',
2561             'ExtUtils::MakeMaker'   => '6.25',
2562             'ExtUtils::Manifest'    => '1.44',
2563             'Fatal'                 => '1.04',
2564             'File::Path'            => '1.06',
2565             'FileCache'             => '1.04_01',
2566             'Getopt::Long'          => '2.3401',
2567             'IO::File'              => '1.10',
2568             'IO::Socket::INET'      => '1.27',
2569             'Math::BigFloat'        => '1.49',
2570             'Math::BigInt'          => '1.75',
2571             'Math::BigInt::Calc'    => '0.45',
2572             'Math::BigRat'          => '0.14',
2573             'Memoize'               => '1.01_01',
2574             'Module::CoreList'      => '1.99',
2575             'NEXT'                  => '0.60_01',
2576             'Opcode'                => '1.06',
2577             'Pod::Html'             => '1.0502',
2578             'Scalar::Util'          => '1.14_1',
2579             'Storable'              => '2.14',
2580             'Symbol'                => '1.05',
2581             'Test::Harness'         => '2.46',
2582             'Test::Harness::Straps' => '0.20_01',
2583             'Text::Balanced'        => '1.95_01',
2584             'Text::Wrap'            => '2001.09292',
2585             'UNIVERSAL'             => '1.02',
2586             'Unicode'               => '4.0.1',
2587             'Unicode::Normalize'    => '0.30',
2588             'Unicode::UCD'          => '0.22',
2589             'Win32'                 => '0.23',
2590             'XS::APItest'           => '0.05',
2591             'XSLoader'              => '0.03',
2592             'assertions'            => '0.01',
2593             'assertions::activate'  => '0.01',
2594             'base'                  => '2.06',
2595             'bigint'                => '0.06',
2596             'bignum'                => '0.16',
2597             'bigrat'                => '0.07',
2598             'bytes'                 => '1.01',
2599             'encoding::warnings'    => '0.05',
2600             'if'                    => '0.0401',
2601             're'                    => '0.05',
2602             'threads::shared'       => '0.92',
2603             'utf8'                  => '1.04',
2604             'version'               => '0.42',
2605             'warnings'              => '1.04',
2606         },
2607         removed => {
2608             'Test::Harness::Point'  => 1,
2609         }
2610     },
2611     5.009003 => {
2612         delta_from => 5.008008,
2613         changed => {
2614             'Archive::Tar'          => '1.26_01',
2615             'Archive::Tar::Constant'=> '0.02',
2616             'Archive::Tar::File'    => '0.02',
2617             'AutoSplit'             => '1.04_01',
2618             'B'                     => '1.10',
2619             'B::Bblock'             => '1.02',
2620             'B::Bytecode'           => '1.01',
2621             'B::C'                  => '1.04',
2622             'B::CC'                 => '1.00',
2623             'B::Concise'            => '0.67',
2624             'B::Debug'              => '1.02',
2625             'B::Deparse'            => '0.73',
2626             'B::Lint'               => '1.04',
2627             'B::Terse'              => '1.03',
2628             'CGI'                   => '3.15_01',
2629             'CPAN'                  => '1.83_58',
2630             'CPAN::Debug'           => '4.44',
2631             'CPAN::FirstTime'       => '4.50',
2632             'CPAN::HandleConfig'    => '4.31',
2633             'CPAN::Nox'             => '2.31',
2634             'CPAN::Tarzip'          => '3.36',
2635             'CPAN::Version'         => '2.55',
2636             'Carp'                  => '1.05',
2637             'Carp::Heavy'           => '1.05',
2638             'Compress::Zlib'        => '2.000_07',
2639             'Compress::Zlib::Common'=> '2.000_07',
2640             'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2641             'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2642             'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2643             'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2644             'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2645             'Compress::Zlib::FileConstants'=> '2.000_07',
2646             'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2647             'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2648             'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2649             'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2650             'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2651             'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2652             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2653             'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2654             'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2655             'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2656             'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2657             'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2658             'Compress::Zlib::ParseParameters'=> '2.000_07',
2659             'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2660             'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2661             'Config::Extensions'    => '0.01',
2662             'Cwd'                   => '3.15',
2663             'Devel::PPPort'         => '3.08',
2664             'Digest::SHA'           => '5.32',
2665             'DirHandle'             => '1.01',
2666             'DynaLoader'            => '1.07',
2667             'Encode'                => '2.14',
2668             'Encode::CN::HZ'        => '2.02',
2669             'Encode::MIME::Header'  => '2.02',
2670             'English'               => '1.04',
2671             'Exporter'              => '5.59',
2672             'Exporter::Heavy'       => '5.59',
2673             'ExtUtils::CBuilder'    => '0.15',
2674             'ExtUtils::CBuilder::Base'=> '0.12',
2675             'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2676             'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2677             'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2678             'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2679             'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2680             'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2681             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2682             'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2683             'ExtUtils::Command::MM' => '0.05_01',
2684             'ExtUtils::Constant'    => '0.2',
2685             'ExtUtils::Constant::Base'=> '0.02',
2686             'ExtUtils::Constant::ProxySubs'=> '0.01',
2687             'ExtUtils::Constant::XS'=> '0.02',
2688             'ExtUtils::MM_Any'      => '0.13_01',
2689             'ExtUtils::MM_Unix'     => '1.50_01',
2690             'ExtUtils::MakeMaker'   => '6.30_01',
2691             'ExtUtils::ParseXS'     => '2.15_02',
2692             'Fatal'                 => '1.04',
2693             'File::Compare'         => '1.1005',
2694             'File::Spec'            => '3.15',
2695             'File::Temp'            => '0.16_01',
2696             'IO::File'              => '1.13_01',
2697             'IO::Handle'            => '1.26',
2698             'IO::Socket'            => '1.29_01',
2699             'IO::Socket::INET'      => '1.29_02',
2700             'IO::Socket::UNIX'      => '1.22_01',
2701             'IO::Zlib'              => '1.04_02',
2702             'Locale::Maketext'      => '1.10_01',
2703             'Math::BigInt::FastCalc'=> '0.10',
2704             'Memoize'               => '1.01_01',
2705             'Module::CoreList'      => '2.02',
2706             'Moped::Msg'            => '0.01',
2707             'NEXT'                  => '0.60_01',
2708             'Net::Cmd'              => '2.26_01',
2709             'Net::Domain'           => '2.19_01',
2710             'Net::Ping'             => '2.31_04',
2711             'Opcode'                => '1.08',
2712             'POSIX'                 => '1.10',
2713             'Pod::Escapes'          => '1.04',
2714             'Pod::Man'              => '2.04',
2715             'Pod::Perldoc'          => '3.14_01',
2716             'Pod::Simple'           => '3.04',
2717             'Pod::Simple::BlackBox' => undef,
2718             'Pod::Simple::Checker'  => '2.02',
2719             'Pod::Simple::Debug'    => undef,
2720             'Pod::Simple::DumpAsText'=> '2.02',
2721             'Pod::Simple::DumpAsXML'=> '2.02',
2722             'Pod::Simple::HTML'     => '3.03',
2723             'Pod::Simple::HTMLBatch'=> '3.02',
2724             'Pod::Simple::HTMLLegacy'=> '5.01',
2725             'Pod::Simple::LinkSection'=> undef,
2726             'Pod::Simple::Methody'  => '2.02',
2727             'Pod::Simple::Progress' => '1.01',
2728             'Pod::Simple::PullParser'=> '2.02',
2729             'Pod::Simple::PullParserEndToken'=> undef,
2730             'Pod::Simple::PullParserStartToken'=> undef,
2731             'Pod::Simple::PullParserTextToken'=> undef,
2732             'Pod::Simple::PullParserToken'=> '2.02',
2733             'Pod::Simple::RTF'      => '2.02',
2734             'Pod::Simple::Search'   => '3.04',
2735             'Pod::Simple::SimpleTree'=> '2.02',
2736             'Pod::Simple::Text'     => '2.02',
2737             'Pod::Simple::TextContent'=> '2.02',
2738             'Pod::Simple::TiedOutFH'=> undef,
2739             'Pod::Simple::Transcode'=> undef,
2740             'Pod::Simple::TranscodeDumb'=> '2.02',
2741             'Pod::Simple::TranscodeSmart'=> undef,
2742             'Pod::Simple::XMLOutStream'=> '2.02',
2743             'Pod::Text'             => '3.01',
2744             'Pod::Text::Color'      => '2.01',
2745             'Pod::Text::Overstrike' => '2',
2746             'Pod::Text::Termcap'    => '2.01',
2747             'Pod::Usage'            => '1.33_01',
2748             'SelfLoader'            => '1.0905',
2749             'Storable'              => '2.15_02',
2750             'Test::Builder::Module' => '0.03',
2751             'Text::Balanced'        => '1.95_01',
2752             'Tie::File'             => '0.97_01',
2753             'UNIVERSAL'             => '1.03',
2754             'XS::APItest'           => '0.09',
2755             'assertions'            => '0.02',
2756             'assertions::activate'  => '0.02',
2757             'assertions::compat'    => undef,
2758             'constant'              => '1.07',
2759             'encoding::warnings'    => '0.05',
2760             'feature'               => '1.00',
2761             're'                    => '0.06',
2762             'sort'                  => '2.00',
2763             'version'               => '0.53',
2764         },
2765         removed => {
2766         }
2767     },
2768     5.009004 => {
2769         delta_from => 5.009003,
2770         changed => {
2771             'Archive::Tar'          => '1.30_01',
2772             'AutoLoader'            => '5.61',
2773             'B'                     => '1.11',
2774             'B::Bytecode'           => '1.02',
2775             'B::C'                  => '1.05',
2776             'B::Concise'            => '0.69',
2777             'B::Deparse'            => '0.76',
2778             'B::Lint'               => '1.08',
2779             'Benchmark'             => '1.08',
2780             'CGI'                   => '3.20',
2781             'CGI::Cookie'           => '1.27',
2782             'CGI::Fast'             => '1.07',
2783             'CPAN'                  => '1.87_55',
2784             'CPAN::Debug'           => '5.400561',
2785             'CPAN::FirstTime'       => '5.400742',
2786             'CPAN::HandleConfig'    => '5.400740',
2787             'CPAN::Nox'             => '5.400561',
2788             'CPAN::Tarzip'          => '5.400714',
2789             'CPAN::Version'         => '5.400561',
2790             'Compress::Raw::Zlib'   => '2.000_13',
2791             'Compress::Zlib'        => '2.000_13',
2792             'Cwd'                   => '3.19',
2793             'Devel::PPPort'         => '3.10',
2794             'Digest'                => '1.15',
2795             'Digest::SHA'           => '5.43',
2796             'Encode'                => '2.18_01',
2797             'Encode::Alias'         => '2.06',
2798             'Encode::Byte'          => '2.02',
2799             'Encode::CJKConstants'  => '2.02',
2800             'Encode::CN'            => '2.02',
2801             'Encode::CN::HZ'        => '2.04',
2802             'Encode::Config'        => '2.03',
2803             'Encode::EBCDIC'        => '2.02',
2804             'Encode::Encoder'       => '2.01',
2805             'Encode::Encoding'      => '2.04',
2806             'Encode::Guess'         => '2.02',
2807             'Encode::JP'            => '2.03',
2808             'Encode::JP::H2Z'       => '2.02',
2809             'Encode::JP::JIS7'      => '2.02',
2810             'Encode::KR'            => '2.02',
2811             'Encode::KR::2022_KR'   => '2.02',
2812             'Encode::MIME::Header'  => '2.04',
2813             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2814             'Encode::Symbol'        => '2.02',
2815             'Encode::TW'            => '2.02',
2816             'Encode::Unicode'       => '2.03',
2817             'Encode::Unicode::UTF7' => '2.04',
2818             'ExtUtils::CBuilder'    => '0.18',
2819             'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2820             'ExtUtils::Constant::Base'=> '0.03',
2821             'ExtUtils::Constant::ProxySubs'=> '0.03',
2822             'ExtUtils::Install'     => '1.41',
2823             'ExtUtils::Installed'   => '1.41',
2824             'ExtUtils::MM_Any'      => '0.13_02',
2825             'ExtUtils::MM_NW5'      => '2.08_01',
2826             'ExtUtils::MM_Unix'     => '1.5003',
2827             'ExtUtils::MM_VMS'      => '5.73_03',
2828             'ExtUtils::MM_Win32'    => '1.12_02',
2829             'ExtUtils::MM_Win95'    => '0.04_01',
2830             'ExtUtils::MakeMaker'   => '6.30_02',
2831             'ExtUtils::Manifest'    => '1.46_01',
2832             'ExtUtils::Mkbootstrap' => '1.15_01',
2833             'ExtUtils::Mksymlists'  => '1.19_01',
2834             'ExtUtils::Packlist'    => '1.41',
2835             'File::Basename'        => '2.75',
2836             'File::Find'            => '1.11',
2837             'File::GlobMapper'      => '0.000_02',
2838             'File::Spec'            => '3.19',
2839             'FileCache'             => '1.07',
2840             'Getopt::Long'          => '2.3501',
2841             'Hash::Util'            => '0.07',
2842             'Hash::Util::FieldHash' => '0.01',
2843             'IO'                    => '1.23_01',
2844             'IO::Compress::Adapter::Deflate'=> '2.000_13',
2845             'IO::Compress::Adapter::Identity'=> '2.000_13',
2846             'IO::Compress::Base'    => '2.000_13',
2847             'IO::Compress::Base::Common'=> '2.000_13',
2848             'IO::Compress::Deflate' => '2.000_13',
2849             'IO::Compress::Gzip'    => '2.000_13',
2850             'IO::Compress::Gzip::Constants'=> '2.000_13',
2851             'IO::Compress::RawDeflate'=> '2.000_13',
2852             'IO::Compress::Zip'     => '2.000_13',
2853             'IO::Compress::Zip::Constants'=> '2.000_13',
2854             'IO::Compress::Zlib::Constants'=> '2.000_13',
2855             'IO::Compress::Zlib::Extra'=> '2.000_13',
2856             'IO::Dir'               => '1.06',
2857             'IO::File'              => '1.14',
2858             'IO::Handle'            => '1.27',
2859             'IO::Socket'            => '1.30_01',
2860             'IO::Socket::INET'      => '1.31',
2861             'IO::Socket::UNIX'      => '1.23',
2862             'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2863             'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2864             'IO::Uncompress::AnyInflate'=> '2.000_13',
2865             'IO::Uncompress::AnyUncompress'=> '2.000_13',
2866             'IO::Uncompress::Base'  => '2.000_13',
2867             'IO::Uncompress::Gunzip'=> '2.000_13',
2868             'IO::Uncompress::Inflate'=> '2.000_13',
2869             'IO::Uncompress::RawInflate'=> '2.000_13',
2870             'IO::Uncompress::Unzip' => '2.000_13',
2871             'MIME::Base64'          => '3.07_01',
2872             'Math::Complex'         => '1.36',
2873             'Math::Trig'            => '1.04',
2874             'Module::Build'         => '0.2805',
2875             'Module::Build::Base'   => undef,
2876             'Module::Build::Compat' => '0.03',
2877             'Module::Build::ConfigData'=> undef,
2878             'Module::Build::Cookbook'=> undef,
2879             'Module::Build::ModuleInfo'=> undef,
2880             'Module::Build::Notes'  => undef,
2881             'Module::Build::PPMMaker'=> undef,
2882             'Module::Build::Platform::Amiga'=> undef,
2883             'Module::Build::Platform::Default'=> undef,
2884             'Module::Build::Platform::EBCDIC'=> undef,
2885             'Module::Build::Platform::MPEiX'=> undef,
2886             'Module::Build::Platform::MacOS'=> undef,
2887             'Module::Build::Platform::RiscOS'=> undef,
2888             'Module::Build::Platform::Unix'=> undef,
2889             'Module::Build::Platform::VMS'=> undef,
2890             'Module::Build::Platform::VOS'=> undef,
2891             'Module::Build::Platform::Windows'=> undef,
2892             'Module::Build::Platform::aix'=> undef,
2893             'Module::Build::Platform::cygwin'=> undef,
2894             'Module::Build::Platform::darwin'=> undef,
2895             'Module::Build::Platform::os2'=> undef,
2896             'Module::Build::PodParser'=> undef,
2897             'Module::Build::Version'=> '0',
2898             'Module::Build::YAML'   => '0.50',
2899             'Module::CoreList'      => '2.08',
2900             'Module::Load'          => '0.10',
2901             'Module::Loaded'        => '0.01',
2902             'Package::Constants'    => '0.01',
2903             'Pod::Html'             => '1.07',
2904             'Pod::Man'              => '2.09',
2905             'Pod::Text'             => '3.07',
2906             'Pod::Text::Color'      => '2.03',
2907             'Pod::Text::Termcap'    => '2.03',
2908             'SDBM_File'             => '1.06',
2909             'Shell'                 => '0.7',
2910             'Sys::Syslog'           => '0.17',
2911             'Term::ANSIColor'       => '1.11',
2912             'Test::Builder'         => '0.33',
2913             'Test::Builder::Tester' => '1.04',
2914             'Test::Harness'         => '2.62',
2915             'Test::Harness::Util'   => '0.01',
2916             'Test::More'            => '0.64',
2917             'Test::Simple'          => '0.64',
2918             'Text::Balanced'        => '1.98_01',
2919             'Text::ParseWords'      => '3.25',
2920             'Text::Tabs'            => '2007.071101',
2921             'Text::Wrap'            => '2006.0711',
2922             'Tie::RefHash'          => '1.34_01',
2923             'Time::HiRes'           => '1.87',
2924             'Time::Local'           => '1.13',
2925             'Time::gmtime'          => '1.03',
2926             'UNIVERSAL'             => '1.04',
2927             'Unicode::Normalize'    => '1.01',
2928             'Win32API::File'        => '0.1001',
2929             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2930             'assertions'            => '0.03',
2931             'assertions::compat'    => '0.02',
2932             'autouse'               => '1.06',
2933             'diagnostics'           => '1.16',
2934             'encoding'              => '2.04',
2935             'encoding::warnings'    => '0.10',
2936             'feature'               => '1.01',
2937             're'                    => '0.0601',
2938             'threads'               => '1.38',
2939             'threads::shared'       => '0.94_01',
2940             'version'               => '0.67',
2941         },
2942         removed => {
2943             'Compress::Zlib::Common'=> 1,
2944             'Compress::Zlib::Compress::Gzip::Constants'=> 1,
2945             'Compress::Zlib::Compress::Zip::Constants'=> 1,
2946             'Compress::Zlib::CompressPlugin::Deflate'=> 1,
2947             'Compress::Zlib::CompressPlugin::Identity'=> 1,
2948             'Compress::Zlib::File::GlobMapper'=> 1,
2949             'Compress::Zlib::FileConstants'=> 1,
2950             'Compress::Zlib::IO::Compress::Base'=> 1,
2951             'Compress::Zlib::IO::Compress::Deflate'=> 1,
2952             'Compress::Zlib::IO::Compress::Gzip'=> 1,
2953             'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
2954             'Compress::Zlib::IO::Compress::Zip'=> 1,
2955             'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
2956             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
2957             'Compress::Zlib::IO::Uncompress::Base'=> 1,
2958             'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
2959             'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
2960             'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
2961             'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
2962             'Compress::Zlib::ParseParameters'=> 1,
2963             'Compress::Zlib::UncompressPlugin::Identity'=> 1,
2964             'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
2965         }
2966     },
2967     5.009005 => {
2968         delta_from => 5.009004,
2969         changed => {
2970             'Archive::Extract'      => '0.22_01',
2971             'Archive::Tar'          => '1.32',
2972             'Attribute::Handlers'   => '0.78_06',
2973             'AutoLoader'            => '5.63',
2974             'AutoSplit'             => '1.05',
2975             'B'                     => '1.16',
2976             'B::Concise'            => '0.72',
2977             'B::Debug'              => '1.05',
2978             'B::Deparse'            => '0.82',
2979             'B::Lint'               => '1.09',
2980             'B::Terse'              => '1.05',
2981             'Benchmark'             => '1.1',
2982             'CGI'                   => '3.29',
2983             'CGI::Cookie'           => '1.28',
2984             'CGI::Util'             => '1.5_01',
2985             'CPAN'                  => '1.9102',
2986             'CPAN::Debug'           => '5.400955',
2987             'CPAN::FirstTime'       => '5.401669',
2988             'CPAN::HandleConfig'    => '5.401744',
2989             'CPAN::Kwalify'         => '5.401418',
2990             'CPAN::Nox'             => '5.400844',
2991             'CPAN::Queue'           => '5.401704',
2992             'CPAN::Tarzip'          => '5.401717',
2993             'CPAN::Version'         => '5.401387',
2994             'CPANPLUS'              => '0.81_01',
2995             'CPANPLUS::Backend'     => undef,
2996             'CPANPLUS::Backend::RV' => undef,
2997             'CPANPLUS::Config'      => undef,
2998             'CPANPLUS::Configure'   => undef,
2999             'CPANPLUS::Configure::Setup'=> undef,
3000             'CPANPLUS::Dist'        => undef,
3001             'CPANPLUS::Dist::Base'  => '0.01',
3002             'CPANPLUS::Dist::Build' => '0.06_01',
3003             'CPANPLUS::Dist::Build::Constants'=> '0.01',
3004             'CPANPLUS::Dist::MM'    => undef,
3005             'CPANPLUS::Dist::Sample'=> undef,
3006             'CPANPLUS::Error'       => undef,
3007             'CPANPLUS::Internals'   => '0.81_01',
3008             'CPANPLUS::Internals::Constants'=> '0.01',
3009             'CPANPLUS::Internals::Constants::Report'=> '0.01',
3010             'CPANPLUS::Internals::Extract'=> undef,
3011             'CPANPLUS::Internals::Fetch'=> undef,
3012             'CPANPLUS::Internals::Report'=> undef,
3013             'CPANPLUS::Internals::Search'=> undef,
3014             'CPANPLUS::Internals::Source'=> undef,
3015             'CPANPLUS::Internals::Utils'=> undef,
3016             'CPANPLUS::Internals::Utils::Autoflush'=> undef,
3017             'CPANPLUS::Module'      => undef,
3018             'CPANPLUS::Module::Author'=> undef,
3019             'CPANPLUS::Module::Author::Fake'=> undef,
3020             'CPANPLUS::Module::Checksums'=> undef,
3021             'CPANPLUS::Module::Fake'=> undef,
3022             'CPANPLUS::Module::Signature'=> undef,
3023             'CPANPLUS::Selfupdate'  => undef,
3024             'CPANPLUS::Shell'       => undef,
3025             'CPANPLUS::Shell::Classic'=> '0.0562',
3026             'CPANPLUS::Shell::Default'=> '0.81_01',
3027             'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
3028             'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
3029             'CPANPLUS::inc'         => undef,
3030             'Carp'                  => '1.07',
3031             'Carp::Heavy'           => '1.07',
3032             'Compress::Raw::Zlib'   => '2.005',
3033             'Compress::Zlib'        => '2.005',
3034             'Cwd'                   => '3.25',
3035             'DBM_Filter'            => '0.02',
3036             'DB_File'               => '1.815',
3037             'Data::Dumper'          => '2.121_13',
3038             'Devel::InnerPackage'   => '0.3',
3039             'Devel::PPPort'         => '3.11_01',
3040             'Digest::MD5'           => '2.36_01',
3041             'Digest::SHA'           => '5.44',
3042             'DynaLoader'            => '1.08',
3043             'Encode'                => '2.23',
3044             'Encode::Alias'         => '2.07',
3045             'Encode::Byte'          => '2.03',
3046             'Encode::Config'        => '2.04',
3047             'Encode::Encoding'      => '2.05',
3048             'Encode::GSM0338'       => '2.00',
3049             'Encode::JP::JIS7'      => '2.03',
3050             'Encode::MIME::Header'  => '2.05',
3051             'Encode::MIME::Name'    => '1.01',
3052             'Encode::Unicode'       => '2.05',
3053             'Errno'                 => '1.10',
3054             'Exporter'              => '5.60',
3055             'Exporter::Heavy'       => '5.60',
3056             'ExtUtils::CBuilder'    => '0.19',
3057             'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
3058             'ExtUtils::Command'     => '1.13',
3059             'ExtUtils::Command::MM' => '0.07',
3060             'ExtUtils::Constant::Base'=> '0.04',
3061             'ExtUtils::Install'     => '1.41_01',
3062             'ExtUtils::Liblist'     => '1.03',
3063             'ExtUtils::Liblist::Kid'=> '1.33',
3064             'ExtUtils::MM'          => '0.07',
3065             'ExtUtils::MM_AIX'      => '0.05',
3066             'ExtUtils::MM_Any'      => '0.15',
3067             'ExtUtils::MM_BeOS'     => '1.07',
3068             'ExtUtils::MM_Cygwin'   => '1.1',
3069             'ExtUtils::MM_DOS'      => '0.04',
3070             'ExtUtils::MM_MacOS'    => '1.1',
3071             'ExtUtils::MM_NW5'      => '2.1',
3072             'ExtUtils::MM_OS2'      => '1.07',
3073             'ExtUtils::MM_QNX'      => '0.04',
3074             'ExtUtils::MM_UWIN'     => '0.04',
3075             'ExtUtils::MM_Unix'     => '1.54_01',
3076             'ExtUtils::MM_VMS'      => '5.76',
3077             'ExtUtils::MM_VOS'      => '0.04',
3078             'ExtUtils::MM_Win32'    => '1.15',
3079             'ExtUtils::MM_Win95'    => '0.06',
3080             'ExtUtils::MY'          => '0.03',
3081             'ExtUtils::MakeMaker'   => '6.36',
3082             'ExtUtils::MakeMaker::Config'=> '0.04',
3083             'ExtUtils::MakeMaker::bytes'=> '0.03',
3084             'ExtUtils::MakeMaker::vmsish'=> '0.03',
3085             'ExtUtils::Manifest'    => '1.51_01',
3086             'ExtUtils::Mkbootstrap' => '1.17',
3087             'ExtUtils::Mksymlists'  => '1.21',
3088             'ExtUtils::ParseXS'     => '2.18',
3089             'ExtUtils::XSSymSet'    => '1.1',
3090             'ExtUtils::testlib'     => '1.17',
3091             'Fatal'                 => '1.05',
3092             'Fcntl'                 => '1.06',
3093             'File::Basename'        => '2.76',
3094             'File::Copy'            => '2.10',
3095             'File::Fetch'           => '0.10',
3096             'File::Glob'            => '1.06',
3097             'File::Path'            => '2.01',
3098             'File::Spec'            => '3.25',
3099             'File::Spec::Cygwin'    => '1.1_01',
3100             'File::Spec::VMS'       => '1.4_01',
3101             'File::Temp'            => '0.18',
3102             'Filter::Util::Call'    => '1.0602',
3103             'FindBin'               => '1.49',
3104             'Getopt::Long'          => '2.36',
3105             'Hash::Util::FieldHash' => '1.01',
3106             'IO::Compress::Adapter::Deflate'=> '2.005',
3107             'IO::Compress::Adapter::Identity'=> '2.005',
3108             'IO::Compress::Base'    => '2.005',
3109             'IO::Compress::Base::Common'=> '2.005',
3110             'IO::Compress::Deflate' => '2.005',
3111             'IO::Compress::Gzip'    => '2.005',
3112             'IO::Compress::Gzip::Constants'=> '2.005',
3113             'IO::Compress::RawDeflate'=> '2.005',
3114             'IO::Compress::Zip'     => '2.005',
3115             'IO::Compress::Zip::Constants'=> '2.005',
3116             'IO::Compress::Zlib::Constants'=> '2.005',
3117             'IO::Compress::Zlib::Extra'=> '2.005',
3118             'IO::Uncompress::Adapter::Identity'=> '2.005',
3119             'IO::Uncompress::Adapter::Inflate'=> '2.005',
3120             'IO::Uncompress::AnyInflate'=> '2.005',
3121             'IO::Uncompress::AnyUncompress'=> '2.005',
3122             'IO::Uncompress::Base'  => '2.005',
3123             'IO::Uncompress::Gunzip'=> '2.005',
3124             'IO::Uncompress::Inflate'=> '2.005',
3125             'IO::Uncompress::RawInflate'=> '2.005',
3126             'IO::Uncompress::Unzip' => '2.005',
3127             'IO::Zlib'              => '1.05_01',
3128             'IPC::Cmd'              => '0.36_01',
3129             'List::Util'            => '1.19',
3130             'Locale::Maketext::Simple'=> '0.18',
3131             'Log::Message'          => '0.01',
3132             'Log::Message::Config'  => '0.01',
3133             'Log::Message::Handlers'=> undef,
3134             'Log::Message::Item'    => undef,
3135             'Log::Message::Simple'  => '0.0201',
3136             'Math::BigFloat'        => '1.58',
3137             'Math::BigInt'          => '1.87',
3138             'Math::BigInt::Calc'    => '0.51',
3139             'Math::BigInt::FastCalc'=> '0.15_01',
3140             'Math::BigRat'          => '0.19',
3141             'Math::Complex'         => '1.37',
3142             'Memoize'               => '1.01_02',
3143             'Module::Build'         => '0.2808',
3144             'Module::Build::Config' => undef,
3145             'Module::Build::Version'=> '0.7203',
3146             'Module::CoreList'      => '2.12',
3147             'Module::Load::Conditional'=> '0.16',
3148             'Module::Pluggable'     => '3.6',
3149             'Module::Pluggable::Object'=> '3.6',
3150             'NDBM_File'             => '1.07',
3151             'Net::Cmd'              => '2.28',
3152             'Net::Config'           => '1.11',
3153             'Net::Domain'           => '2.20',
3154             'Net::FTP'              => '2.77',
3155             'Net::FTP::A'           => '1.18',
3156             'Net::NNTP'             => '2.24',
3157             'Net::POP3'             => '2.29',
3158             'Net::SMTP'             => '2.31',
3159             'ODBM_File'             => '1.07',
3160             'OS2::DLL'              => '1.03',
3161             'Object::Accessor'      => '0.32',
3162             'Opcode'                => '1.09',
3163             'POSIX'                 => '1.13',
3164             'Params::Check'         => '0.26',
3165             'PerlIO::encoding'      => '0.10',
3166             'PerlIO::scalar'        => '0.05',
3167             'PerlIO::via'           => '0.04',
3168             'Pod::Html'             => '1.08',
3169             'Pod::Man'              => '2.12',
3170             'Pod::ParseUtils'       => '1.35',
3171             'Pod::Parser'           => '1.35',
3172             'Pod::Select'           => '1.35',
3173             'Pod::Simple'           => '3.05',
3174             'Pod::Text'             => '3.08',
3175             'Pod::Usage'            => '1.35',
3176             'Scalar::Util'          => '1.19',
3177             'SelfLoader'            => '1.11',
3178             'Shell'                 => '0.72_01',
3179             'Socket'                => '1.79',
3180             'Storable'              => '2.16',
3181             'Switch'                => '2.13',
3182             'Sys::Syslog'           => '0.18_01',
3183             'Term::ANSIColor'       => '1.12',
3184             'Term::UI'              => '0.14_01',
3185             'Term::UI::History'     => undef,
3186             'Test::Builder'         => '0.70',
3187             'Test::Builder::Module' => '0.68',
3188             'Test::Builder::Tester' => '1.07',
3189             'Test::Harness'         => '2.64',
3190             'Test::Harness::Results'=> '0.01',
3191             'Test::More'            => '0.70',
3192             'Test::Simple'          => '0.70',
3193             'Text::Balanced'        => '2.0.0',
3194             'Text::Soundex'         => '3.02',
3195             'Text::Tabs'            => '2007.1117',
3196             'Text::Wrap'            => '2006.1117',
3197             'Thread'                => '3.02',
3198             'Tie::File'             => '0.97_02',
3199             'Tie::Hash::NamedCapture'=> '0.06',
3200             'Tie::Memoize'          => '1.1',
3201             'Tie::RefHash'          => '1.37',
3202             'Time::HiRes'           => '1.9707',
3203             'Time::Local'           => '1.17',
3204             'Time::Piece'           => '1.11_02',
3205             'Time::Seconds'         => undef,
3206             'Unicode'               => '5.0.0',
3207             'Unicode::Normalize'    => '1.02',
3208             'Unicode::UCD'          => '0.25',
3209             'VMS::DCLsym'           => '1.03',
3210             'Win32'                 => '0.30',
3211             'Win32API::File'        => '0.1001_01',
3212             'Win32CORE'             => '0.02',
3213             'XS::APItest'           => '0.12',
3214             'XSLoader'              => '0.08',
3215             'attributes'            => '0.08',
3216             'base'                  => '2.12',
3217             'bigint'                => '0.22',
3218             'bignum'                => '0.22',
3219             'bigrat'                => '0.22',
3220             'bytes'                 => '1.03',
3221             'charnames'             => '1.06',
3222             'constant'              => '1.10',
3223             'diagnostics'           => '1.17',
3224             'encoding'              => '2.06',
3225             'encoding::warnings'    => '0.11',
3226             'feature'               => '1.10',
3227             'fields'                => '2.12',
3228             'less'                  => '0.02',
3229             'mro'                   => '1.00',
3230             'overload'              => '1.06',
3231             're'                    => '0.08',
3232             'sigtrap'               => '1.04',
3233             'sort'                  => '2.01',
3234             'strict'                => '1.04',
3235             'threads'               => '1.63',
3236             'threads::shared'       => '1.12',
3237             'utf8'                  => '1.07',
3238             'version'               => '0.7203',
3239             'warnings'              => '1.06',
3240         },
3241         removed => {
3242             'B::Asmdata'            => 1,
3243             'B::Assembler'          => 1,
3244             'B::Bblock'             => 1,
3245             'B::Bytecode'           => 1,
3246             'B::C'                  => 1,
3247             'B::CC'                 => 1,
3248             'B::Disassembler'       => 1,
3249             'B::Stackobj'           => 1,
3250             'B::Stash'              => 1,
3251             'ByteLoader'            => 1,
3252             'Thread::Signal'        => 1,
3253             'Thread::Specific'      => 1,
3254             'assertions'            => 1,
3255             'assertions::activate'  => 1,
3256             'assertions::compat'    => 1,
3257         }
3258     },
3259     5.01 => {
3260         delta_from => 5.009005,
3261         changed => {
3262             'Archive::Extract'      => '0.24',
3263             'Archive::Tar'          => '1.38',
3264             'Attribute::Handlers'   => '0.79',
3265             'B'                     => '1.17',
3266             'B::Concise'            => '0.74',
3267             'B::Deparse'            => '0.83',
3268             'CPAN'                  => '1.9205',
3269             'CPAN::API::HOWTO'      => undef,
3270             'CPAN::Debug'           => '5.402212',
3271             'CPAN::DeferedCode'     => '5.50',
3272             'CPAN::FirstTime'       => '5.402229',
3273             'CPAN::HandleConfig'    => '5.402212',
3274             'CPAN::Nox'             => '5.402411',
3275             'CPAN::Queue'           => '5.402212',
3276             'CPAN::Tarzip'          => '5.402213',
3277             'CPAN::Version'         => '5.5',
3278             'CPANPLUS'              => '0.84',
3279             'CPANPLUS::Dist::Build' => '0.06_02',
3280             'CPANPLUS::Internals'   => '0.84',
3281             'CPANPLUS::Shell::Default'=> '0.84',
3282             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
3283             'Carp'                  => '1.08',
3284             'Carp::Heavy'           => '1.08',
3285             'Compress::Raw::Zlib'   => '2.008',
3286             'Compress::Zlib'        => '2.008',
3287             'Cwd'                   => '3.2501',
3288             'DB_File'               => '1.816_1',
3289             'Data::Dumper'          => '2.121_14',
3290             'Devel::PPPort'         => '3.13',
3291             'Digest::SHA'           => '5.45',
3292             'Exporter'              => '5.62',
3293             'Exporter::Heavy'       => '5.62',
3294             'ExtUtils::CBuilder'    => '0.21',
3295             'ExtUtils::CBuilder::Base'=> '0.21',
3296             'ExtUtils::CBuilder::Platform::Unix'=> '0.21',
3297             'ExtUtils::CBuilder::Platform::VMS'=> '0.22',
3298             'ExtUtils::CBuilder::Platform::Windows'=> '0.21',
3299             'ExtUtils::CBuilder::Platform::aix'=> '0.21',
3300             'ExtUtils::CBuilder::Platform::cygwin'=> '0.21',
3301             'ExtUtils::CBuilder::Platform::darwin'=> '0.21',
3302             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21',
3303             'ExtUtils::CBuilder::Platform::os2'=> '0.21',
3304             'ExtUtils::Command::MM' => '6.42',
3305             'ExtUtils::Constant::ProxySubs'=> '0.05',
3306             'ExtUtils::Embed'       => '1.27',
3307             'ExtUtils::Install'     => '1.44',
3308             'ExtUtils::Installed'   => '1.43',
3309             'ExtUtils::Liblist'     => '6.42',
3310             'ExtUtils::Liblist::Kid'=> '6.42',
3311             'ExtUtils::MM'          => '6.42',
3312             'ExtUtils::MM_AIX'      => '6.42',
3313             'ExtUtils::MM_Any'      => '6.42',
3314             'ExtUtils::MM_BeOS'     => '6.42',
3315             'ExtUtils::MM_Cygwin'   => '6.42',
3316             'ExtUtils::MM_DOS'      => '6.42',
3317             'ExtUtils::MM_MacOS'    => '6.42',
3318             'ExtUtils::MM_NW5'      => '6.42',
3319             'ExtUtils::MM_OS2'      => '6.42',
3320             'ExtUtils::MM_QNX'      => '6.42',
3321             'ExtUtils::MM_UWIN'     => '6.42',
3322             'ExtUtils::MM_Unix'     => '6.42',
3323             'ExtUtils::MM_VMS'      => '6.42',
3324             'ExtUtils::MM_VOS'      => '6.42',
3325             'ExtUtils::MM_Win32'    => '6.42',
3326             'ExtUtils::MM_Win95'    => '6.42',
3327             'ExtUtils::MY'          => '6.42',
3328             'ExtUtils::MakeMaker'   => '6.42',
3329             'ExtUtils::MakeMaker::Config'=> '6.42',
3330             'ExtUtils::MakeMaker::bytes'=> '6.42',
3331             'ExtUtils::MakeMaker::vmsish'=> '6.42',
3332             'ExtUtils::Mkbootstrap' => '6.42',
3333             'ExtUtils::Mksymlists'  => '6.42',
3334             'ExtUtils::Packlist'    => '1.43',
3335             'ExtUtils::ParseXS'     => '2.18_02',
3336             'ExtUtils::testlib'     => '6.42',
3337             'File::Copy'            => '2.11',
3338             'File::Fetch'           => '0.14',
3339             'File::Find'            => '1.12',
3340             'File::Path'            => '2.04',
3341             'File::Spec'            => '3.2501',
3342             'File::Spec::Cygwin'    => '3.2501',
3343             'File::Spec::Epoc'      => '3.2501',
3344             'File::Spec::Functions' => '3.2501',
3345             'File::Spec::Mac'       => '3.2501',
3346             'File::Spec::OS2'       => '3.2501',
3347             'File::Spec::Unix'      => '3.2501',
3348             'File::Spec::VMS'       => '3.2501',
3349             'File::Spec::Win32'     => '3.2501',
3350             'Filter::Util::Call'    => '1.07',
3351             'Getopt::Long'          => '2.37',
3352             'Hash::Util::FieldHash' => '1.03',
3353             'IO::Compress::Adapter::Deflate'=> '2.008',
3354             'IO::Compress::Adapter::Identity'=> '2.008',
3355             'IO::Compress::Base'    => '2.008',
3356             'IO::Compress::Base::Common'=> '2.008',
3357             'IO::Compress::Deflate' => '2.008',
3358             'IO::Compress::Gzip'    => '2.008',
3359             'IO::Compress::Gzip::Constants'=> '2.008',
3360             'IO::Compress::RawDeflate'=> '2.008',
3361             'IO::Compress::Zip'     => '2.008',
3362             'IO::Compress::Zip::Constants'=> '2.008',
3363             'IO::Compress::Zlib::Constants'=> '2.008',
3364             'IO::Compress::Zlib::Extra'=> '2.008',
3365             'IO::Uncompress::Adapter::Identity'=> '2.008',
3366             'IO::Uncompress::Adapter::Inflate'=> '2.008',
3367             'IO::Uncompress::AnyInflate'=> '2.008',
3368             'IO::Uncompress::AnyUncompress'=> '2.008',
3369             'IO::Uncompress::Base'  => '2.008',
3370             'IO::Uncompress::Gunzip'=> '2.008',
3371             'IO::Uncompress::Inflate'=> '2.008',
3372             'IO::Uncompress::RawInflate'=> '2.008',
3373             'IO::Uncompress::Unzip' => '2.008',
3374             'IO::Zlib'              => '1.07',
3375             'IPC::Cmd'              => '0.40_1',
3376             'IPC::SysV'             => '1.05',
3377             'Locale::Maketext'      => '1.12',
3378             'Log::Message::Simple'  => '0.04',
3379             'Math::BigFloat'        => '1.59',
3380             'Math::BigInt'          => '1.88',
3381             'Math::BigInt::Calc'    => '0.52',
3382             'Math::BigInt::FastCalc'=> '0.16',
3383             'Math::BigRat'          => '0.21',
3384             'Module::Build'         => '0.2808_01',
3385             'Module::Build::Base'   => '0.2808_01',
3386             'Module::Build::Compat' => '0.2808_01',
3387             'Module::Build::Config' => '0.2808_01',
3388             'Module::Build::Dumper' => undef,
3389             'Module::Build::ModuleInfo'=> '0.2808_01',
3390             'Module::Build::Notes'  => '0.2808_01',
3391             'Module::Build::PPMMaker'=> '0.2808_01',
3392             'Module::Build::Platform::Amiga'=> '0.2808_01',
3393             'Module::Build::Platform::Default'=> '0.2808_01',
3394             'Module::Build::Platform::EBCDIC'=> '0.2808_01',
3395             'Module::Build::Platform::MPEiX'=> '0.2808_01',
3396             'Module::Build::Platform::MacOS'=> '0.2808_01',
3397             'Module::Build::Platform::RiscOS'=> '0.2808_01',
3398             'Module::Build::Platform::Unix'=> '0.2808_01',
3399             'Module::Build::Platform::VMS'=> '0.2808_01',
3400             'Module::Build::Platform::VOS'=> '0.2808_01',
3401             'Module::Build::Platform::Windows'=> '0.2808_01',
3402             'Module::Build::Platform::aix'=> '0.2808_01',
3403             'Module::Build::Platform::cygwin'=> '0.2808_01',
3404             'Module::Build::Platform::darwin'=> '0.2808_01',
3405             'Module::Build::Platform::os2'=> '0.2808_01',
3406             'Module::Build::PodParser'=> '0.2808_01',
3407             'Module::CoreList'      => '2.13',
3408             'Module::Load'          => '0.12',
3409             'Module::Load::Conditional'=> '0.22',
3410             'Net::Cmd'              => '2.29',
3411             'Net::Ping'             => '2.33',
3412             'Opcode'                => '1.11',
3413             'Pod::Checker'          => '1.43_01',
3414             'Pod::Man'              => '2.16',
3415             'Pod::Perldoc'          => '3.14_02',
3416             'Socket'                => '1.80',
3417             'Storable'              => '2.18',
3418             'Sys::Syslog'           => '0.22',
3419             'Sys::Syslog::win32::Win32'=> undef,
3420             'Term::Cap'             => '1.12',
3421             'Term::ReadLine'        => '1.03',
3422             'Term::UI'              => '0.18',
3423             'Test::Builder'         => '0.72',
3424             'Test::Builder::Module' => '0.72',
3425             'Test::Builder::Tester' => '1.09',
3426             'Test::Harness::Straps' => '0.26_01',
3427             'Test::More'            => '0.72',
3428             'Test::Simple'          => '0.72',
3429             'Text::ParseWords'      => '3.26',
3430             'Text::Soundex'         => '3.03',
3431             'Tie::StdHandle'        => undef,
3432             'Time::HiRes'           => '1.9711',
3433             'Time::Local'           => '1.18',
3434             'Time::Piece'           => '1.12',
3435             'VMS::Filespec'         => '1.12',
3436             'Win32'                 => '0.34',
3437             'base'                  => '2.13',
3438             'constant'              => '1.13',
3439             'feature'               => '1.11',
3440             'fields'                => '2.13',
3441             'filetest'              => '1.02',
3442             'open'                  => '1.06',
3443             'threads'               => '1.67',
3444             'threads::shared'       => '1.14',
3445             'version'               => '0.74',
3446         },
3447         removed => {
3448         }
3449     },
3450     5.010001 => {
3451         delta_from => 5.01,
3452         changed => {
3453             'App::Prove'            => '3.17',
3454             'App::Prove::State'     => '3.17',
3455             'App::Prove::State::Result'=> '3.17',
3456             'App::Prove::State::Result::Test'=> '3.17',
3457             'Archive::Extract'      => '0.34',
3458             'Archive::Tar'          => '1.52',
3459             'Attribute::Handlers'   => '0.85',
3460             'AutoLoader'            => '5.68',
3461             'AutoSplit'             => '1.06',
3462             'B'                     => '1.22',
3463             'B::Concise'            => '0.76',
3464             'B::Debug'              => '1.11',
3465             'B::Deparse'            => '0.89',
3466             'B::Lint'               => '1.11',
3467             'B::Lint::Debug'        => undef,
3468             'B::Xref'               => '1.02',
3469             'Benchmark'             => '1.11',
3470             'CGI'                   => '3.43',
3471             'CGI::Carp'             => '1.30_01',
3472             'CGI::Cookie'           => '1.29',
3473             'CPAN'                  => '1.9402',
3474             'CPAN::Author'          => '5.5',
3475             'CPAN::Bundle'          => '5.5',
3476             'CPAN::CacheMgr'        => '5.5',
3477             'CPAN::Complete'        => '5.5',
3478             'CPAN::Debug'           => '5.5',
3479             'CPAN::DeferredCode'    => '5.50',
3480             'CPAN::Distribution'    => '1.93',
3481             'CPAN::Distroprefs'     => '6',
3482             'CPAN::Distrostatus'    => '5.5',
3483             'CPAN::Exception::RecursiveDependency'=> '5.5',
3484             'CPAN::Exception::blocked_urllist'=> '1.0',
3485             'CPAN::Exception::yaml_not_installed'=> '5.5',
3486             'CPAN::FTP'             => '5.5001',
3487             'CPAN::FTP::netrc'      => '1.00',
3488             'CPAN::FirstTime'       => '5.53',
3489             'CPAN::HandleConfig'    => '5.5',
3490             'CPAN::Index'           => '1.93',
3491             'CPAN::InfoObj'         => '5.5',
3492             'CPAN::Kwalify'         => '5.50',
3493             'CPAN::LWP::UserAgent'  => '1.00',
3494             'CPAN::Module'          => '5.5',
3495             'CPAN::Nox'             => '5.50',
3496             'CPAN::Prompt'          => '5.5',
3497             'CPAN::Queue'           => '5.5',
3498             'CPAN::Shell'           => '5.5',
3499             'CPAN::Tarzip'          => '5.501',
3500             'CPAN::URL'             => '5.5',
3501             'CPANPLUS'              => '0.88',
3502             'CPANPLUS::Dist::Autobundle'=> undef,
3503             'CPANPLUS::Dist::Base'  => undef,
3504             'CPANPLUS::Dist::Build' => '0.36',
3505             'CPANPLUS::Dist::Build::Constants'=> '0.36',
3506             'CPANPLUS::Internals'   => '0.88',
3507             'CPANPLUS::Internals::Constants'=> undef,
3508             'CPANPLUS::Internals::Constants::Report'=> undef,
3509             'CPANPLUS::Internals::Source::Memory'=> undef,
3510             'CPANPLUS::Internals::Source::SQLite'=> undef,
3511             'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
3512             'CPANPLUS::Shell::Default'=> '0.88',
3513             'Carp'                  => '1.11',
3514             'Carp::Heavy'           => '1.11',
3515             'Compress::Raw::Bzip2'  => '2.020',
3516             'Compress::Raw::Zlib'   => '2.020',
3517             'Compress::Zlib'        => '2.020',
3518             'Cwd'                   => '3.30',
3519             'DB'                    => '1.02',
3520             'DBM_Filter::compress'  => '0.02',
3521             'DBM_Filter::encode'    => '0.02',
3522             'DBM_Filter::int32'     => '0.02',
3523             'DBM_Filter::null'      => '0.02',
3524             'DBM_Filter::utf8'      => '0.02',
3525             'DB_File'               => '1.820',
3526             'Data::Dumper'          => '2.124',
3527             'Devel::DProf'          => '20080331.00',
3528             'Devel::PPPort'         => '3.19',
3529             'Devel::Peek'           => '1.04',
3530             'Digest'                => '1.16',
3531             'Digest::MD5'           => '2.39',
3532             'Digest::SHA'           => '5.47',
3533             'Digest::base'          => '1.16',
3534             'Digest::file'          => '1.16',
3535             'DirHandle'             => '1.03',
3536             'Dumpvalue'             => '1.13',
3537             'DynaLoader'            => '1.10',
3538             'Encode'                => '2.35',
3539             'Encode::Alias'         => '2.12',
3540             'Encode::CN::HZ'        => '2.05',
3541             'Encode::Config'        => '2.05',
3542             'Encode::GSM0338'       => '2.01',
3543             'Encode::Guess'         => '2.03',
3544             'Encode::JP::JIS7'      => '2.04',
3545             'Encode::MIME::Header'  => '2.11',
3546             'Encode::Unicode'       => '2.06',
3547             'Errno'                 => '1.11',
3548             'Exporter'              => '5.63',
3549             'Exporter::Heavy'       => '5.63',
3550             'ExtUtils::CBuilder'    => '0.2602',
3551             'ExtUtils::CBuilder::Base'=> '0.2602',
3552             'ExtUtils::CBuilder::Platform::Unix'=> '0.2602',
3553             'ExtUtils::CBuilder::Platform::VMS'=> '0.2602',
3554             'ExtUtils::CBuilder::Platform::Windows'=> '0.2602',
3555             'ExtUtils::CBuilder::Platform::aix'=> '0.2602',
3556             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602',
3557             'ExtUtils::CBuilder::Platform::darwin'=> '0.2602',
3558             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602',
3559             'ExtUtils::CBuilder::Platform::os2'=> '0.2602',
3560             'ExtUtils::Command'     => '1.16',
3561             'ExtUtils::Command::MM' => '6.55_02',
3562             'ExtUtils::Constant'    => '0.22',
3563             'ExtUtils::Constant::ProxySubs'=> '0.06',
3564             'ExtUtils::Constant::Utils'=> '0.02',
3565             'ExtUtils::Constant::XS'=> '0.03',
3566             'ExtUtils::Embed'       => '1.28',
3567             'ExtUtils::Install'     => '1.54',
3568             'ExtUtils::Installed'   => '1.999_001',
3569             'ExtUtils::Liblist'     => '6.55_02',
3570             'ExtUtils::Liblist::Kid'=> '6.5502',
3571             'ExtUtils::MM'          => '6.55_02',
3572             'ExtUtils::MM_AIX'      => '6.55_02',
3573             'ExtUtils::MM_Any'      => '6.55_02',
3574             'ExtUtils::MM_BeOS'     => '6.55_02',
3575             'ExtUtils::MM_Cygwin'   => '6.55_02',
3576             'ExtUtils::MM_DOS'      => '6.5502',
3577             'ExtUtils::MM_Darwin'   => '6.55_02',
3578             'ExtUtils::MM_MacOS'    => '6.5502',
3579             'ExtUtils::MM_NW5'      => '6.55_02',
3580             'ExtUtils::MM_OS2'      => '6.55_02',
3581             'ExtUtils::MM_QNX'      => '6.55_02',
3582             'ExtUtils::MM_UWIN'     => '6.5502',
3583             'ExtUtils::MM_Unix'     => '6.55_02',
3584             'ExtUtils::MM_VMS'      => '6.55_02',
3585             'ExtUtils::MM_VOS'      => '6.55_02',
3586             'ExtUtils::MM_Win32'    => '6.55_02',
3587             'ExtUtils::MM_Win95'    => '6.55_02',
3588             'ExtUtils::MY'          => '6.5502',
3589             'ExtUtils::MakeMaker'   => '6.55_02',
3590             'ExtUtils::MakeMaker::Config'=> '6.55_02',
3591             'ExtUtils::Manifest'    => '1.56',
3592             'ExtUtils::Mkbootstrap' => '6.55_02',
3593             'ExtUtils::Mksymlists'  => '6.55_02',
3594             'ExtUtils::ParseXS'     => '2.2002',
3595             'ExtUtils::testlib'     => '6.5502',
3596             'Fatal'                 => '2.06_01',
3597             'File::Basename'        => '2.77',
3598             'File::CheckTree'       => '4.4',
3599             'File::Compare'         => '1.1006',
3600             'File::Copy'            => '2.14',
3601             'File::DosGlob'         => '1.01',
3602             'File::Fetch'           => '0.20',
3603             'File::Find'            => '1.14',
3604             'File::GlobMapper'      => '1.000',
3605             'File::Path'            => '2.07_03',
3606             'File::Spec'            => '3.30',
3607             'File::Spec::Cygwin'    => '3.30',
3608             'File::Spec::Epoc'      => '3.30',
3609             'File::Spec::Functions' => '3.30',
3610             'File::Spec::Mac'       => '3.30',
3611             'File::Spec::OS2'       => '3.30',
3612             'File::Spec::Unix'      => '3.30',
3613             'File::Spec::VMS'       => '3.30',
3614             'File::Spec::Win32'     => '3.30',
3615             'File::Temp'            => '0.22',
3616             'File::stat'            => '1.01',
3617             'FileCache'             => '1.08',
3618             'FileHandle'            => '2.02',
3619             'Filter::Simple'        => '0.84',
3620             'Filter::Util::Call'    => '1.08',
3621             'FindBin'               => '1.50',
3622             'GDBM_File'             => '1.09',
3623             'Getopt::Long'          => '2.38',
3624             'Getopt::Std'           => '1.06',
3625             'Hash::Util::FieldHash' => '1.04',
3626             'I18N::Collate'         => '1.01',
3627             'IO'                    => '1.25',
3628             'IO::Compress::Adapter::Bzip2'=> '2.020',
3629             'IO::Compress::Adapter::Deflate'=> '2.020',
3630             'IO::Compress::Adapter::Identity'=> '2.020',
3631             'IO::Compress::Base'    => '2.020',
3632             'IO::Compress::Base::Common'=> '2.020',
3633             'IO::Compress::Bzip2'   => '2.020',
3634             'IO::Compress::Deflate' => '2.020',
3635             'IO::Compress::Gzip'    => '2.020',
3636             'IO::Compress::Gzip::Constants'=> '2.020',
3637             'IO::Compress::RawDeflate'=> '2.020',
3638             'IO::Compress::Zip'     => '2.020',
3639             'IO::Compress::Zip::Constants'=> '2.020',
3640             'IO::Compress::Zlib::Constants'=> '2.020',
3641             'IO::Compress::Zlib::Extra'=> '2.020',
3642             'IO::Dir'               => '1.07',
3643             'IO::Handle'            => '1.28',
3644             'IO::Socket'            => '1.31',
3645             'IO::Uncompress::Adapter::Bunzip2'=> '2.020',
3646             'IO::Uncompress::Adapter::Identity'=> '2.020',
3647             'IO::Uncompress::Adapter::Inflate'=> '2.020',
3648             'IO::Uncompress::AnyInflate'=> '2.020',
3649             'IO::Uncompress::AnyUncompress'=> '2.020',
3650             'IO::Uncompress::Base'  => '2.020',
3651             'IO::Uncompress::Bunzip2'=> '2.020',
3652             'IO::Uncompress::Gunzip'=> '2.020',
3653             'IO::Uncompress::Inflate'=> '2.020',
3654             'IO::Uncompress::RawInflate'=> '2.020',
3655             'IO::Uncompress::Unzip' => '2.020',
3656             'IO::Zlib'              => '1.09',
3657             'IPC::Cmd'              => '0.46',
3658             'IPC::Msg'              => '2.01',
3659             'IPC::Open2'            => '1.03',
3660             'IPC::Open3'            => '1.04',
3661             'IPC::Semaphore'        => '2.01',
3662             'IPC::SharedMem'        => '2.01',
3663             'IPC::SysV'             => '2.01',
3664             'List::Util'            => '1.21',
3665             'List::Util::PP'        => '1.21',
3666             'List::Util::XS'        => '1.21',
3667             'Locale::Maketext'      => '1.13',
3668             'Locale::Maketext::Guts'=> '1.13',
3669             'Locale::Maketext::GutsLoader'=> '1.13',
3670             'Log::Message'          => '0.02',
3671             'MIME::Base64'          => '3.08',
3672             'MIME::QuotedPrint'     => '3.08',
3673             'Math::BigFloat'        => '1.60',
3674             'Math::BigInt'          => '1.89',
3675             'Math::BigInt::FastCalc'=> '0.19',
3676             'Math::BigRat'          => '0.22',
3677             'Math::Complex'         => '1.56',
3678             'Math::Trig'            => '1.2',
3679             'Memoize'               => '1.01_03',
3680             'Module::Build'         => '0.340201',
3681             'Module::Build::Base'   => '0.340201',
3682             'Module::Build::Compat' => '0.340201',
3683             'Module::Build::Config' => '0.340201',
3684             'Module::Build::Cookbook'=> '0.340201',
3685             'Module::Build::Dumper' => '0.340201',
3686             'Module::Build::ModuleInfo'=> '0.340201',
3687             'Module::Build::Notes'  => '0.340201',
3688             'Module::Build::PPMMaker'=> '0.340201',
3689             'Module::Build::Platform::Amiga'=> '0.340201',
3690             'Module::Build::Platform::Default'=> '0.340201',
3691             'Module::Build::Platform::EBCDIC'=> '0.340201',
3692             'Module::Build::Platform::MPEiX'=> '0.340201',
3693             'Module::Build::Platform::MacOS'=> '0.340201',
3694             'Module::Build::Platform::RiscOS'=> '0.340201',
3695             'Module::Build::Platform::Unix'=> '0.340201',
3696             'Module::Build::Platform::VMS'=> '0.340201',
3697             'Module::Build::Platform::VOS'=> '0.340201',
3698             'Module::Build::Platform::Windows'=> '0.340201',
3699             'Module::Build::Platform::aix'=> '0.340201',
3700             'Module::Build::Platform::cygwin'=> '0.340201',
3701             'Module::Build::Platform::darwin'=> '0.340201',
3702             'Module::Build::Platform::os2'=> '0.340201',
3703             'Module::Build::PodParser'=> '0.340201',
3704             'Module::Build::Version'=> '0.77',
3705             'Module::CoreList'      => '2.18',
3706             'Module::Load'          => '0.16',
3707             'Module::Load::Conditional'=> '0.30',
3708             'Module::Loaded'        => '0.02',
3709             'Module::Pluggable'     => '3.9',
3710             'Module::Pluggable::Object'=> '3.9',
3711             'NDBM_File'             => '1.08',
3712             'NEXT'                  => '0.64',
3713             'Net::Ping'             => '2.36',
3714             'O'                     => '1.01',
3715             'OS2::Process'          => '1.03',
3716             'OS2::REXX'             => '1.04',
3717             'Object::Accessor'      => '0.34',
3718             'POSIX'                 => '1.17',
3719             'Package::Constants'    => '0.02',
3720             'Parse::CPAN::Meta'     => '1.39',
3721             'PerlIO'                => '1.06',
3722             'PerlIO::encoding'      => '0.11',
3723             'PerlIO::scalar'        => '0.07',
3724             'PerlIO::via'           => '0.07',
3725             'Pod::Checker'          => '1.45',
3726             'Pod::Find'             => '1.35',
3727             'Pod::Html'             => '1.09',
3728             'Pod::InputObjects'     => '1.31',
3729             'Pod::Man'              => '2.22',
3730             'Pod::ParseLink'        => '1.09',
3731             'Pod::ParseUtils'       => '1.36',
3732             'Pod::Parser'           => '1.37',
3733             'Pod::Perldoc'          => '3.14_04',
3734             'Pod::PlainText'        => '2.04',
3735             'Pod::Select'           => '1.36',
3736             'Pod::Simple'           => '3.07',
3737             'Pod::Simple::XHTML'    => '3.04',
3738             'Pod::Text'             => '3.13',
3739             'Pod::Text::Color'      => '2.05',
3740             'Pod::Text::Overstrike' => '2.03',
3741             'Pod::Text::Termcap'    => '2.05',
3742             'Pod::Usage'            => '1.36',
3743             'Safe'                  => '2.18',
3744             'Scalar::Util'          => '1.21',
3745             'Scalar::Util::PP'      => '1.21',
3746             'SelectSaver'           => '1.02',
3747             'SelfLoader'            => '1.17',
3748             'Socket'                => '1.82',
3749             'Storable'              => '2.20',
3750             'Switch'                => '2.14',
3751             'Symbol'                => '1.07',
3752             'Sys::Syslog'           => '0.27',
3753             'TAP::Base'             => '3.17',
3754             'TAP::Formatter::Base'  => '3.17',
3755             'TAP::Formatter::Color' => '3.17',
3756             'TAP::Formatter::Console'=> '3.17',
3757             'TAP::Formatter::Console::ParallelSession'=> '3.17',
3758             'TAP::Formatter::Console::Session'=> '3.17',
3759             'TAP::Formatter::File'  => '3.17',
3760             'TAP::Formatter::File::Session'=> '3.17',
3761             'TAP::Formatter::Session'=> '3.17',
3762             'TAP::Harness'          => '3.17',
3763             'TAP::Object'           => '3.17',
3764             'TAP::Parser'           => '3.17',
3765             'TAP::Parser::Aggregator'=> '3.17',
3766             'TAP::Parser::Grammar'  => '3.17',
3767             'TAP::Parser::Iterator' => '3.17',
3768             'TAP::Parser::Iterator::Array'=> '3.17',
3769             'TAP::Parser::Iterator::Process'=> '3.17',
3770             'TAP::Parser::Iterator::Stream'=> '3.17',
3771             'TAP::Parser::IteratorFactory'=> '3.17',
3772             'TAP::Parser::Multiplexer'=> '3.17',
3773             'TAP::Parser::Result'   => '3.17',
3774             'TAP::Parser::Result::Bailout'=> '3.17',
3775             'TAP::Parser::Result::Comment'=> '3.17',
3776             'TAP::Parser::Result::Plan'=> '3.17',
3777             'TAP::Parser::Result::Pragma'=> '3.17',
3778             'TAP::Parser::Result::Test'=> '3.17',
3779             'TAP::Parser::Result::Unknown'=> '3.17',
3780             'TAP::Parser::Result::Version'=> '3.17',
3781             'TAP::Parser::Result::YAML'=> '3.17',
3782             'TAP::Parser::ResultFactory'=> '3.17',
3783             'TAP::Parser::Scheduler'=> '3.17',
3784             'TAP::Parser::Scheduler::Job'=> '3.17',
3785             'TAP::Parser::Scheduler::Spinner'=> '3.17',
3786             'TAP::Parser::Source'   => '3.17',
3787             'TAP::Parser::Source::Perl'=> '3.17',
3788             'TAP::Parser::Utils'    => '3.17',
3789             'TAP::Parser::YAMLish::Reader'=> '3.17',
3790             'TAP::Parser::YAMLish::Writer'=> '3.17',
3791             'Term::ANSIColor'       => '2.00',
3792             'Term::ReadLine'        => '1.04',
3793             'Term::UI'              => '0.20',
3794             'Test'                  => '1.25_02',
3795             'Test::Builder'         => '0.92',
3796             'Test::Builder::Module' => '0.92',
3797             'Test::Builder::Tester' => '1.18',
3798             'Test::Builder::Tester::Color'=> '1.18',
3799             'Test::Harness'         => '3.17',
3800             'Test::More'            => '0.92',
3801             'Test::Simple'          => '0.92',
3802             'Text::ParseWords'      => '3.27',
3803             'Text::Tabs'            => '2009.0305',
3804             'Text::Wrap'            => '2009.0305',
3805             'Thread::Queue'         => '2.11',
3806             'Thread::Semaphore'     => '2.09',
3807             'Tie::Handle'           => '4.2',
3808             'Tie::Hash'             => '1.03',
3809             'Tie::RefHash'          => '1.38',
3810             'Tie::Scalar'           => '1.01',
3811             'Tie::StdHandle'        => '4.2',
3812             'Time::HiRes'           => '1.9719',
3813             'Time::Local'           => '1.1901',
3814             'Time::Piece'           => '1.15',
3815             'UNIVERSAL'             => '1.05',
3816             'Unicode'               => '5.1.0',
3817             'Unicode::Normalize'    => '1.03',
3818             'Unicode::UCD'          => '0.27',
3819             'VMS::Stdio'            => '2.4',
3820             'Win32'                 => '0.39',
3821             'Win32API::File'        => '0.1101',
3822             'XS::APItest'           => '0.15',
3823             'XS::Typemap'           => '0.03',
3824             'XSLoader'              => '0.10',
3825             'attributes'            => '0.09',
3826             'attrs'                 => '1.03',
3827             'autodie'               => '2.06_01',
3828             'autodie::exception'    => '2.06_01',
3829             'autodie::exception::system'=> '2.06_01',
3830             'autodie::hints'        => '2.06_01',
3831             'base'                  => '2.14',
3832             'bigint'                => '0.23',
3833             'bignum'                => '0.23',
3834             'bigrat'                => '0.23',
3835             'blib'                  => '1.04',
3836             'charnames'             => '1.07',
3837             'constant'              => '1.17',
3838             'encoding'              => '2.6_01',
3839             'feature'               => '1.13',
3840             'fields'                => '2.14',
3841             'lib'                   => '0.62',
3842             'mro'                   => '1.01',
3843             'open'                  => '1.07',
3844             'ops'                   => '1.02',
3845             'overload'              => '1.07',
3846             'overload::numbers'     => undef,
3847             'overloading'           => '0.01',
3848             'parent'                => '0.221',
3849             're'                    => '0.09',
3850             'threads'               => '1.72',
3851             'threads::shared'       => '1.29',
3852             'version'               => '0.77',
3853         },
3854         removed => {
3855             'CPAN::API::HOWTO'      => 1,
3856             'CPAN::DeferedCode'     => 1,
3857             'CPANPLUS::inc'         => 1,
3858             'ExtUtils::MakeMaker::bytes'=> 1,
3859             'ExtUtils::MakeMaker::vmsish'=> 1,
3860             'Test::Harness::Assert' => 1,
3861             'Test::Harness::Iterator'=> 1,
3862             'Test::Harness::Point'  => 1,
3863             'Test::Harness::Results'=> 1,
3864             'Test::Harness::Straps' => 1,
3865             'Test::Harness::Util'   => 1,
3866         }
3867     },
3868     5.011 => {
3869         delta_from => 5.010001,
3870         changed => {
3871             'Archive::Tar'          => '1.54',
3872             'Attribute::Handlers'   => '0.87',
3873             'AutoLoader'            => '5.70',
3874             'B::Deparse'            => '0.91',
3875             'B::Lint'               => '1.11_01',
3876             'B::Lint::Debug'        => '0.01',
3877             'CGI'                   => '3.45',
3878             'CGI::Apache'           => '1.01',
3879             'CGI::Carp'             => '3.45',
3880             'CGI::Pretty'           => '3.44',
3881             'CGI::Switch'           => '1.01',
3882             'CGI::Util'             => '3.45',
3883             'CPAN'                  => '1.94_51',
3884             'CPAN::Distribution'    => '1.94',
3885             'CPAN::FTP'             => '5.5002',
3886             'CPAN::Index'           => '1.94',
3887             'CPAN::LWP::UserAgent'  => '1.94',
3888             'CPANPLUS::Dist::Build' => '0.40',
3889             'CPANPLUS::Dist::Build::Constants'=> '0.40',
3890             'Carp'                  => '1.12',
3891             'Carp::Heavy'           => '1.12',
3892             'Class::ISA'            => '0.36',
3893             'Compress::Raw::Bzip2'  => '2.021',
3894             'Compress::Raw::Zlib'   => '2.021',
3895             'Compress::Zlib'        => '2.021',
3896             'Cwd'                   => '3.3002',
3897             'Data::Dumper'          => '2.125',
3898             'Encode'                => '2.37',
3899             'Exporter'              => '5.64',
3900             'Exporter::Heavy'       => '5.64',
3901             'ExtUtils::ParseXS'     => '2.200403',
3902             'File::Basename'        => '2.78',
3903             'File::Copy'            => '2.16',
3904             'File::stat'            => '1.02',
3905             'IO'                    => '1.25_01',
3906             'IO::Compress::Adapter::Bzip2'=> '2.021',
3907             'IO::Compress::Adapter::Deflate'=> '2.021',
3908             'IO::Compress::Adapter::Identity'=> '2.021',
3909             'IO::Compress::Base'    => '2.021',
3910             'IO::Compress::Base::Common'=> '2.021',
3911             'IO::Compress::Bzip2'   => '2.021',
3912             'IO::Compress::Deflate' => '2.021',
3913             'IO::Compress::Gzip'    => '2.021',
3914             'IO::Compress::Gzip::Constants'=> '2.021',
3915             'IO::Compress::RawDeflate'=> '2.021',
3916             'IO::Compress::Zip'     => '2.021',
3917             'IO::Compress::Zip::Constants'=> '2.021',
3918             'IO::Compress::Zlib::Constants'=> '2.021',
3919             'IO::Compress::Zlib::Extra'=> '2.021',
3920             'IO::Uncompress::Adapter::Bunzip2'=> '2.021',
3921             'IO::Uncompress::Adapter::Identity'=> '2.021',
3922             'IO::Uncompress::Adapter::Inflate'=> '2.021',
3923             'IO::Uncompress::AnyInflate'=> '2.021',
3924             'IO::Uncompress::AnyUncompress'=> '2.021',
3925             'IO::Uncompress::Base'  => '2.021',
3926             'IO::Uncompress::Bunzip2'=> '2.021',
3927             'IO::Uncompress::Gunzip'=> '2.021',
3928             'IO::Uncompress::Inflate'=> '2.021',
3929             'IO::Uncompress::RawInflate'=> '2.021',
3930             'IO::Uncompress::Unzip' => '2.021',
3931             'IO::Zlib'              => '1.10',
3932             'IPC::Cmd'              => '0.50',
3933             'IPC::Open3'            => '1.05',
3934             'Locale::Maketext::Simple'=> '0.21',
3935             'Log::Message::Simple'  => '0.06',
3936             'Math::BigInt'          => '1.89_01',
3937             'Math::BigRat'          => '0.24',
3938             'Module::Build'         => '0.35',
3939             'Module::Build::Base'   => '0.35',
3940             'Module::Build::Compat' => '0.35',
3941             'Module::Build::Config' => '0.35',
3942             'Module::Build::Cookbook'=> '0.35',
3943             'Module::Build::Dumper' => '0.35',
3944             'Module::Build::ModuleInfo'=> '0.35',
3945             'Module::Build::Notes'  => '0.35',
3946             'Module::Build::PPMMaker'=> '0.35',
3947             'Module::Build::Platform::Amiga'=> '0.35',
3948             'Module::Build::Platform::Default'=> '0.35',
3949             'Module::Build::Platform::EBCDIC'=> '0.35',
3950             'Module::Build::Platform::MPEiX'=> '0.35',
3951             'Module::Build::Platform::MacOS'=> '0.35',
3952             'Module::Build::Platform::RiscOS'=> '0.35',
3953             'Module::Build::Platform::Unix'=> '0.35',
3954             'Module::Build::Platform::VMS'=> '0.35',
3955             'Module::Build::Platform::VOS'=> '0.35',
3956             'Module::Build::Platform::Windows'=> '0.35',
3957             'Module::Build::Platform::aix'=> '0.35',
3958             'Module::Build::Platform::cygwin'=> '0.35',
3959             'Module::Build::Platform::darwin'=> '0.35',
3960             'Module::Build::Platform::os2'=> '0.35',
3961             'Module::Build::PodParser'=> '0.35',
3962             'Module::CoreList'      => '2.19',
3963             'Module::Loaded'        => '0.06',
3964             'Opcode'                => '1.13',
3965             'PerlIO::via'           => '0.08',
3966             'Pod::Perldoc'          => '3.15_01',
3967             'Pod::Plainer'          => '1.01',
3968             'Safe'                  => '2.19',
3969             'Socket'                => '1.84',
3970             'Switch'                => '2.14_01',
3971             'Term::ANSIColor'       => '2.02',
3972             'Term::ReadLine'        => '1.05',
3973             'Text::Balanced'        => '2.02',
3974             'Text::Soundex'         => '3.03_01',
3975             'Time::Local'           => '1.1901_01',
3976             'Unicode::Collate'      => '0.52_01',
3977             'attributes'            => '0.12',
3978             'constant'              => '1.19',
3979             'deprecate'             => '0.01',
3980             'overload'              => '1.08',
3981             'parent'                => '0.223',
3982             're'                    => '0.10',
3983             'threads'               => '1.74',
3984             'threads::shared'       => '1.31',
3985             'warnings'              => '1.07',
3986         },
3987         removed => {
3988             'attrs'                 => 1,
3989         }
3990     },
3991     5.011001 => {
3992         delta_from => 5.011,
3993         changed => {
3994             'B'                     => '1.23',
3995             'B::Concise'            => '0.77',
3996             'B::Deparse'            => '0.92',
3997             'CGI'                   => '3.48',
3998             'CGI::Pretty'           => '3.46',
3999             'CGI::Util'             => '3.48',
4000             'CPANPLUS'              => '0.89_03',
4001             'CPANPLUS::Internals'   => '0.89_03',
4002             'CPANPLUS::Shell::Default'=> '0.89_03',
4003             'Carp'                  => '1.13',
4004             'Carp::Heavy'           => '1.13',
4005             'ExtUtils::CBuilder'    => '0.260301',
4006             'ExtUtils::CBuilder::Base'=> '0.260301',
4007             'ExtUtils::CBuilder::Platform::Unix'=> '0.260301',
4008             'ExtUtils::CBuilder::Platform::VMS'=> '0.260301',
4009             'ExtUtils::CBuilder::Platform::Windows'=> '0.260301',
4010             'ExtUtils::CBuilder::Platform::aix'=> '0.260301',
4011             'ExtUtils::CBuilder::Platform::cygwin'=> '0.260301',
4012             'ExtUtils::CBuilder::Platform::darwin'=> '0.260301',
4013             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.260301',
4014             'ExtUtils::CBuilder::Platform::os2'=> '0.260301',
4015             'ExtUtils::Install'     => '1.55',
4016             'ExtUtils::Manifest'    => '1.57',
4017             'ExtUtils::Packlist'    => '1.44',
4018             'ExtUtils::ParseXS'     => '2.21',
4019             'File::Glob'            => '1.07',
4020             'File::Path'            => '2.08',
4021             'IO'                    => '1.25_02',
4022             'Module::CoreList'      => '2.21',
4023             'OS2::DLL'              => '1.04',
4024             'OS2::Process'          => '1.04',
4025             'Object::Accessor'      => '0.36',
4026             'Opcode'                => '1.15',
4027             'POSIX'                 => '1.18',
4028             'Parse::CPAN::Meta'     => '1.40',
4029             'PerlIO::via'           => '0.09',
4030             'Pod::Simple'           => '3.08',
4031             'Socket'                => '1.85',
4032             'Storable'              => '2.22',
4033             'Switch'                => '2.15',
4034             'Test::Builder'         => '0.94',
4035             'Test::Builder::Module' => '0.94',
4036             'Test::More'            => '0.94',
4037             'Test::Simple'          => '0.94',
4038             'XS::APItest'           => '0.16',
4039             'mro'                   => '1.02',
4040             'overload'              => '1.09',
4041             'threads::shared'       => '1.32',
4042         },
4043         removed => {
4044         }
4045     },
4046     5.011002 => {
4047         delta_from => 5.011001,
4048         changed => {
4049             'B::Concise'            => '0.78',
4050             'B::Deparse'            => '0.93',
4051             'CPANPLUS'              => '0.89_09',
4052             'CPANPLUS::Dist::Build' => '0.44',
4053             'CPANPLUS::Dist::Build::Constants'=> '0.44',
4054             'CPANPLUS::Internals'   => '0.89_09',
4055             'CPANPLUS::Shell::Default'=> '0.89_09',
4056             'Carp'                  => '1.14',
4057             'Carp::Heavy'           => '1.14',
4058             'Compress::Zlib'        => '2.022',
4059             'DBM_Filter'            => '0.03',
4060             'Encode'                => '2.38',
4061             'Encode::Byte'          => '2.04',
4062             'Encode::CN'            => '2.03',
4063             'Encode::JP'            => '2.04',
4064             'Encode::KR'            => '2.03',
4065             'Encode::TW'            => '2.03',
4066             'Encode::Unicode'       => '2.07',
4067             'Env'                   => '1.01',
4068             'Exporter'              => '5.64_01',
4069             'Exporter::Heavy'       => '5.64_01',
4070             'ExtUtils::CBuilder'    => '0.27',
4071             'ExtUtils::CBuilder::Base'=> '0.27',
4072             'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
4073             'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
4074             'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
4075             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
4076             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
4077             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
4078             'ExtUtils::CBuilder::Platform::aix'=> '0.27',
4079             'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
4080             'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
4081             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
4082             'ExtUtils::CBuilder::Platform::os2'=> '0.27',
4083             'File::Fetch'           => '0.22',
4084             'I18N::LangTags::Detect'=> '1.04',
4085             'I18N::Langinfo'        => '0.03',
4086             'IO::Compress::Adapter::Bzip2'=> '2.022',
4087             'IO::Compress::Adapter::Deflate'=> '2.022',
4088             'IO::Compress::Adapter::Identity'=> '2.022',
4089             'IO::Compress::Base'    => '2.022',
4090             'IO::Compress::Base::Common'=> '2.022',
4091             'IO::Compress::Bzip2'   => '2.022',
4092             'IO::Compress::Deflate' => '2.022',
4093             'IO::Compress::Gzip'    => '2.022',
4094             'IO::Compress::Gzip::Constants'=> '2.022',
4095             'IO::Compress::RawDeflate'=> '2.022',
4096             'IO::Compress::Zip'     => '2.022',
4097             'IO::Compress::Zip::Constants'=> '2.022',
4098             'IO::Compress::Zlib::Constants'=> '2.022',
4099             'IO::Compress::Zlib::Extra'=> '2.022',
4100             'IO::Uncompress::Adapter::Bunzip2'=> '2.022',
4101             'IO::Uncompress::Adapter::Identity'=> '2.022',
4102             'IO::Uncompress::Adapter::Inflate'=> '2.022',
4103             'IO::Uncompress::AnyInflate'=> '2.022',
4104             'IO::Uncompress::AnyUncompress'=> '2.022',
4105             'IO::Uncompress::Base'  => '2.022',
4106             'IO::Uncompress::Bunzip2'=> '2.022',
4107             'IO::Uncompress::Gunzip'=> '2.022',
4108             'IO::Uncompress::Inflate'=> '2.022',
4109             'IO::Uncompress::RawInflate'=> '2.022',
4110             'IO::Uncompress::Unzip' => '2.022',
4111             'IPC::Cmd'              => '0.54',
4112             'List::Util'            => '1.22',
4113             'List::Util::PP'        => '1.22',
4114             'List::Util::XS'        => '1.22',
4115             'Locale::Maketext'      => '1.14',
4116             'Module::Build'         => '0.35_09',
4117             'Module::Build::Base'   => '0.35_09',
4118             'Module::Build::Compat' => '0.35_09',
4119             'Module::Build::Config' => '0.35_09',
4120             'Module::Build::Cookbook'=> '0.35_09',
4121             'Module::Build::Dumper' => '0.35_09',
4122             'Module::Build::ModuleInfo'=> '0.35_09',
4123             'Module::Build::Notes'  => '0.35_09',
4124             'Module::Build::PPMMaker'=> '0.35_09',
4125             'Module::Build::Platform::Amiga'=> '0.35_09',
4126             'Module::Build::Platform::Default'=> '0.35_09',
4127             'Module::Build::Platform::EBCDIC'=> '0.35_09',
4128             'Module::Build::Platform::MPEiX'=> '0.35_09',
4129             'Module::Build::Platform::MacOS'=> '0.35_09',
4130             'Module::Build::Platform::RiscOS'=> '0.35_09',
4131             'Module::Build::Platform::Unix'=> '0.35_09',
4132             'Module::Build::Platform::VMS'=> '0.35_09',
4133             'Module::Build::Platform::VOS'=> '0.35_09',
4134             'Module::Build::Platform::Windows'=> '0.35_09',
4135             'Module::Build::Platform::aix'=> '0.35_09',
4136             'Module::Build::Platform::cygwin'=> '0.35_09',
4137             'Module::Build::Platform::darwin'=> '0.35_09',
4138             'Module::Build::Platform::os2'=> '0.35_09',
4139             'Module::Build::PodParser'=> '0.35_09',
4140             'Module::Build::YAML'   => '1.40',
4141             'Module::CoreList'      => '2.23',
4142             'Module::Load::Conditional'=> '0.34',
4143             'Pod::Simple'           => '3.10',
4144             'Pod::Simple::XHTML'    => '3.10',
4145             'Scalar::Util'          => '1.22',
4146             'Scalar::Util::PP'      => '1.22',
4147             'Switch'                => '2.16',
4148             'XS::APItest'           => '0.17',
4149             'XS::APItest::KeywordRPN'=> '0.003',
4150             'base'                  => '2.15',
4151             'diagnostics'           => '1.18',
4152             'fields'                => '2.15',
4153             'inc::latest'           => '0.35_09',
4154             'legacy'                => '1.00',
4155             'overload'              => '1.10',
4156         },
4157         removed => {
4158         }
4159     },
4160     5.011003 => {
4161         delta_from => 5.011002,
4162         changed => {
4163             'App::Cpan'             => '1.570001',
4164             'Archive::Extract'      => '0.36',
4165             'CPAN'                  => '1.94_5301',
4166             'CPAN::FTP'             => '5.5004',
4167             'CPAN::FirstTime'       => '5.530001',
4168             'CPAN::Mirrors'         => '1.770001',
4169             'CPANPLUS'              => '0.90',
4170             'CPANPLUS::Internals'   => '0.90',
4171             'CPANPLUS::Shell::Default'=> '0.90',
4172             'Cwd'                   => '3.31',
4173             'Encode'                => '2.39',
4174             'ExtUtils::Command::MM' => '6.56',
4175             'ExtUtils::Liblist'     => '6.56',
4176             'ExtUtils::Liblist::Kid'=> '6.56',
4177             'ExtUtils::MM'          => '6.56',
4178             'ExtUtils::MM_AIX'      => '6.56',
4179             'ExtUtils::MM_Any'      => '6.56',
4180             'ExtUtils::MM_BeOS'     => '6.56',
4181             'ExtUtils::MM_Cygwin'   => '6.56',
4182             'ExtUtils::MM_DOS'      => '6.56',
4183             'ExtUtils::MM_Darwin'   => '6.56',
4184             'ExtUtils::MM_MacOS'    => '6.56',
4185             'ExtUtils::MM_NW5'      => '6.56',
4186             'ExtUtils::MM_OS2'      => '6.56',
4187             'ExtUtils::MM_QNX'      => '6.56',
4188             'ExtUtils::MM_UWIN'     => '6.56',
4189             'ExtUtils::MM_Unix'     => '6.56',
4190             'ExtUtils::MM_VMS'      => '6.56',
4191             'ExtUtils::MM_VOS'      => '6.56',
4192             'ExtUtils::MM_Win32'    => '6.56',
4193             'ExtUtils::MM_Win95'    => '6.56',
4194             'ExtUtils::MY'          => '6.56',
4195             'ExtUtils::MakeMaker'   => '6.56',
4196             'ExtUtils::MakeMaker::Config'=> '6.56',
4197             'ExtUtils::Mkbootstrap' => '6.56',
4198             'ExtUtils::Mksymlists'  => '6.56',
4199             'ExtUtils::testlib'     => '6.56',
4200             'File::Find'            => '1.15',
4201             'File::Path'            => '2.08_01',
4202             'File::Spec'            => '3.31',
4203             'Module::Build'         => '0.36',
4204             'Module::Build::Base'   => '0.36',
4205             'Module::Build::Compat' => '0.36',
4206             'Module::Build::Config' => '0.36',
4207             'Module::Build::Cookbook'=> '0.36',
4208             'Module::Build::Dumper' => '0.36',
4209             'Module::Build::ModuleInfo'=> '0.36',
4210             'Module::Build::Notes'  => '0.36',
4211             'Module::Build::PPMMaker'=> '0.36',
4212             'Module::Build::Platform::Amiga'=> '0.36',
4213             'Module::Build::Platform::Default'=> '0.36',
4214             'Module::Build::Platform::EBCDIC'=> '0.36',
4215             'Module::Build::Platform::MPEiX'=> '0.36',
4216             'Module::Build::Platform::MacOS'=> '0.36',
4217             'Module::Build::Platform::RiscOS'=> '0.36',
4218             'Module::Build::Platform::Unix'=> '0.36',
4219             'Module::Build::Platform::VMS'=> '0.36',
4220             'Module::Build::Platform::VOS'=> '0.36',
4221             'Module::Build::Platform::Windows'=> '0.36',
4222             'Module::Build::Platform::aix'=> '0.36',
4223             'Module::Build::Platform::cygwin'=> '0.36',
4224             'Module::Build::Platform::darwin'=> '0.36',
4225             'Module::Build::Platform::os2'=> '0.36',
4226             'Module::Build::PodParser'=> '0.36',
4227             'Module::CoreList'      => '2.24',
4228             'POSIX'                 => '1.19',
4229             'Pod::Simple'           => '3.13',
4230             'Pod::Simple::BlackBox' => '3.13',
4231             'Pod::Simple::Checker'  => '3.13',
4232             'Pod::Simple::Debug'    => '3.13',
4233             'Pod::Simple::DumpAsText'=> '3.13',
4234             'Pod::Simple::DumpAsXML'=> '3.13',
4235             'Pod::Simple::HTML'     => '3.13',
4236             'Pod::Simple::HTMLBatch'=> '3.13',
4237             'Pod::Simple::LinkSection'=> '3.13',
4238             'Pod::Simple::Methody'  => '3.13',
4239             'Pod::Simple::Progress' => '3.13',
4240             'Pod::Simple::PullParser'=> '3.13',
4241             'Pod::Simple::PullParserEndToken'=> '3.13',
4242             'Pod::Simple::PullParserStartToken'=> '3.13',
4243             'Pod::Simple::PullParserTextToken'=> '3.13',
4244             'Pod::Simple::PullParserToken'=> '3.13',
4245             'Pod::Simple::RTF'      => '3.13',
4246             'Pod::Simple::Search'   => '3.13',
4247             'Pod::Simple::SimpleTree'=> '3.13',
4248             'Pod::Simple::Text'     => '3.13',
4249             'Pod::Simple::TextContent'=> '3.13',
4250             'Pod::Simple::TiedOutFH'=> '3.13',
4251             'Pod::Simple::Transcode'=> '3.13',
4252             'Pod::Simple::TranscodeDumb'=> '3.13',
4253             'Pod::Simple::TranscodeSmart'=> '3.13',
4254             'Pod::Simple::XHTML'    => '3.13',
4255             'Pod::Simple::XMLOutStream'=> '3.13',
4256             'Safe'                  => '2.20',
4257             'Unicode'               => '5.2.0',
4258             'constant'              => '1.20',
4259             'diagnostics'           => '1.19',
4260             'feature'               => '1.14',
4261             'inc::latest'           => '0.36',
4262             'threads'               => '1.75',
4263             'warnings'              => '1.08',
4264         },
4265         removed => {
4266             'legacy'                => 1,
4267         }
4268     },
4269     5.011004 => {
4270         delta_from => 5.011003,
4271         changed => {
4272             'App::Cpan'             => '1.5701',
4273             'Archive::Extract'      => '0.38',
4274             'B::Deparse'            => '0.94',
4275             'CPAN'                  => '1.94_54',
4276             'CPAN::FirstTime'       => '5.53',
4277             'CPAN::Mirrors'         => '1.77',
4278             'Carp'                  => '1.15',
4279             'Carp::Heavy'           => '1.15',
4280             'Compress::Raw::Bzip2'  => '2.024',
4281             'Compress::Raw::Zlib'   => '2.024',
4282             'Compress::Zlib'        => '2.024',
4283             'File::Copy'            => '2.17',
4284             'File::Fetch'           => '0.24',
4285             'GDBM_File'             => '1.10',
4286             'IO::Compress::Adapter::Bzip2'=> '2.024',
4287             'IO::Compress::Adapter::Deflate'=> '2.024',
4288             'IO::Compress::Adapter::Identity'=> '2.024',
4289             'IO::Compress::Base'    => '2.024',
4290             'IO::Compress::Base::Common'=> '2.024',
4291             'IO::Compress::Bzip2'   => '2.024',
4292             'IO::Compress::Deflate' => '2.024',
4293             'IO::Compress::Gzip'    => '2.024',
4294             'IO::Compress::Gzip::Constants'=> '2.024',
4295             'IO::Compress::RawDeflate'=> '2.024',
4296             'IO::Compress::Zip'     => '2.024',
4297             'IO::Compress::Zip::Constants'=> '2.024',
4298             'IO::Compress::Zlib::Constants'=> '2.024',
4299             'IO::Compress::Zlib::Extra'=> '2.024',
4300             'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
4301             'IO::Uncompress::Adapter::Identity'=> '2.024',
4302             'IO::Uncompress::Adapter::Inflate'=> '2.024',
4303             'IO::Uncompress::AnyInflate'=> '2.024',
4304             'IO::Uncompress::AnyUncompress'=> '2.024',
4305             'IO::Uncompress::Base'  => '2.024',
4306             'IO::Uncompress::Bunzip2'=> '2.024',
4307             'IO::Uncompress::Gunzip'=> '2.024',
4308             'IO::Uncompress::Inflate'=> '2.024',
4309             'IO::Uncompress::RawInflate'=> '2.024',
4310             'IO::Uncompress::Unzip' => '2.024',
4311             'Module::Build'         => '0.3603',
4312             'Module::Build::Base'   => '0.3603',
4313             'Module::Build::Compat' => '0.3603',
4314             'Module::Build::Config' => '0.3603',
4315             'Module::Build::Cookbook'=> '0.3603',
4316             'Module::Build::Dumper' => '0.3603',
4317             'Module::Build::ModuleInfo'=> '0.3603',
4318             'Module::Build::Notes'  => '0.3603',
4319             'Module::Build::PPMMaker'=> '0.3603',
4320             'Module::Build::Platform::Amiga'=> '0.3603',
4321             'Module::Build::Platform::Default'=> '0.3603',
4322             'Module::Build::Platform::EBCDIC'=> '0.3603',
4323             'Module::Build::Platform::MPEiX'=> '0.3603',
4324             'Module::Build::Platform::MacOS'=> '0.3603',
4325             'Module::Build::Platform::RiscOS'=> '0.3603',
4326             'Module::Build::Platform::Unix'=> '0.3603',
4327             'Module::Build::Platform::VMS'=> '0.3603',
4328             'Module::Build::Platform::VOS'=> '0.3603',
4329             'Module::Build::Platform::Windows'=> '0.3603',
4330             'Module::Build::Platform::aix'=> '0.3603',
4331             'Module::Build::Platform::cygwin'=> '0.3603',
4332             'Module::Build::Platform::darwin'=> '0.3603',
4333             'Module::Build::Platform::os2'=> '0.3603',
4334             'Module::Build::PodParser'=> '0.3603',
4335             'Module::CoreList'      => '2.25',
4336             'PerlIO::encoding'      => '0.12',
4337             'Safe'                  => '2.21',
4338             'UNIVERSAL'             => '1.06',
4339             'feature'               => '1.15',
4340             'inc::latest'           => '0.3603',
4341             'less'                  => '0.03',
4342             're'                    => '0.11',
4343             'version'               => '0.81',
4344             'warnings'              => '1.09',
4345         },
4346         removed => {
4347         }
4348     },
4349     5.011005 => {
4350         delta_from => 5.011004,
4351         changed => {
4352             'B::Debug'              => '1.12',
4353             'CPAN'                  => '1.94_56',
4354             'CPAN::Debug'           => '5.5001',
4355             'CPAN::Distribution'    => '1.9456',
4356             'CPAN::FirstTime'       => '5.5301',
4357             'CPAN::HandleConfig'    => '5.5001',
4358             'CPAN::Shell'           => '5.5001',
4359             'CPAN::Tarzip'          => '5.5011',
4360             'CPANPLUS::Dist::Build' => '0.46',
4361             'CPANPLUS::Dist::Build::Constants'=> '0.46',
4362             'Module::CoreList'      => '2.26',
4363             'Pod::Man'              => '2.23',
4364             'Pod::ParseLink'        => '1.10',
4365             'Pod::Perldoc'          => '3.15_02',
4366             'Pod::Plainer'          => '1.02',
4367             'Pod::Text'             => '3.14',
4368             'Pod::Text::Color'      => '2.06',
4369             'Pod::Text::Overstrike' => '2.04',
4370             'Pod::Text::Termcap'    => '2.06',
4371             'Safe'                  => '2.22',
4372             'Socket'                => '1.86',
4373             'version'               => '0.82',
4374         },
4375         removed => {
4376         }
4377     },
4378     5.012 => {
4379         delta_from => 5.011005,
4380         changed => {
4381             'B::Deparse'            => '0.96',
4382             'CPAN::Distribution'    => '1.9456_01',
4383             'Module::CoreList'      => '2.29',
4384             'Safe'                  => '2.25',
4385             'Socket'                => '1.87',
4386             'Tie::Scalar'           => '1.02',
4387             'Time::Piece'           => '1.15_01',
4388             'bytes'                 => '1.04',
4389             'feature'               => '1.16',
4390             'utf8'                  => '1.08',
4391         },
4392         removed => {
4393         }
4394     },
4395     5.012001 => {
4396         delta_from => 5.012,
4397         changed => {
4398             'B::Deparse'            => '0.97',
4399             'CGI'                   => '3.49',
4400             'CGI::Fast'             => '1.08',
4401             'Carp'                  => '1.16',
4402             'Carp::Heavy'           => '1.16',
4403             'File::Copy'            => '2.18',
4404             'Module::CoreList'      => '2.32',
4405             'Pod::Functions'        => '1.04',
4406             'Pod::Simple'           => '3.14',
4407             'Pod::Simple::BlackBox' => '3.14',
4408             'Pod::Simple::Checker'  => '3.14',
4409             'Pod::Simple::Debug'    => '3.14',
4410             'Pod::Simple::DumpAsText'=> '3.14',
4411             'Pod::Simple::DumpAsXML'=> '3.14',
4412             'Pod::Simple::HTML'     => '3.14',
4413             'Pod::Simple::HTMLBatch'=> '3.14',
4414             'Pod::Simple::LinkSection'=> '3.14',
4415             'Pod::Simple::Methody'  => '3.14',
4416             'Pod::Simple::Progress' => '3.14',
4417             'Pod::Simple::PullParser'=> '3.14',
4418             'Pod::Simple::PullParserEndToken'=> '3.14',
4419             'Pod::Simple::PullParserStartToken'=> '3.14',
4420             'Pod::Simple::PullParserTextToken'=> '3.14',
4421             'Pod::Simple::PullParserToken'=> '3.14',
4422             'Pod::Simple::RTF'      => '3.14',
4423             'Pod::Simple::Search'   => '3.14',
4424             'Pod::Simple::SimpleTree'=> '3.14',
4425             'Pod::Simple::Text'     => '3.14',
4426             'Pod::Simple::TextContent'=> '3.14',
4427             'Pod::Simple::TiedOutFH'=> '3.14',
4428             'Pod::Simple::Transcode'=> '3.14',
4429             'Pod::Simple::TranscodeDumb'=> '3.14',
4430             'Pod::Simple::TranscodeSmart'=> '3.14',
4431             'Pod::Simple::XHTML'    => '3.14',
4432             'Pod::Simple::XMLOutStream'=> '3.14',
4433             'Safe'                  => '2.27',
4434         },
4435         removed => {
4436         }
4437     },
4438     5.012002 => {
4439         delta_from => 5.012001,
4440         changed => {
4441             'Carp'                  => '1.17',
4442             'Carp::Heavy'           => '1.17',
4443             'File::Spec'            => '3.31_01',
4444             'Module::CoreList'      => '2.38',
4445             'Module::Load::Conditional'=> '0.38',
4446             'PerlIO::scalar'        => '0.08',
4447         },
4448         removed => {
4449         }
4450     },
4451     5.012003 => {
4452         delta_from => 5.012002,
4453         changed => {
4454             'B::Deparse'            => '0.9701',
4455             'Module::Build::Platform::cygwin'=> '0.360301',
4456             'Module::CoreList'      => '2.43',
4457             'Socket'                => '1.87_01',
4458         },
4459         removed => {
4460         }
4461     },
4462     5.012004 => {
4463         delta_from => 5.012003,
4464         changed => {
4465             'Module::CoreList'      => '2.50',
4466         },
4467         removed => {
4468         }
4469     },
4470     5.012005 => {
4471         delta_from => 5.012004,
4472         changed => {
4473             'B::Concise'            => '0.78_01',
4474             'Encode'                => '2.39_01',
4475             'File::Glob'            => '1.07_01',
4476             'Module::CoreList'      => '2.50_02',
4477             'Unicode::UCD'          => '0.29',
4478             'charnames'             => '1.07_01',
4479         },
4480         removed => {
4481         }
4482     },
4483     5.013 => {
4484         delta_from => 5.012,
4485         changed => {
4486             'CGI'                   => '3.49',
4487             'CGI::Fast'             => '1.08',
4488             'Data::Dumper'          => '2.126',
4489             'ExtUtils::MM_Unix'     => '6.5601',
4490             'ExtUtils::MakeMaker'   => '6.5601',
4491             'File::Copy'            => '2.18',
4492             'IPC::Open3'            => '1.06',
4493             'MIME::Base64'          => '3.09',
4494             'MIME::QuotedPrint'     => '3.09',
4495             'Module::CoreList'      => '2.31',
4496             'Pod::Functions'        => '1.04',
4497             'XS::APItest'           => '0.18',
4498             'XS::APItest::KeywordRPN'=> '0.004',
4499             'feature'               => '1.17',
4500             'threads'               => '1.77_01',
4501             'threads::shared'       => '1.33',
4502         },
4503         removed => {
4504         }
4505     },
4506     5.013001 => {
4507         delta_from => 5.012001,
4508         changed => {
4509             'Data::Dumper'          => '2.126',
4510             'Dumpvalue'             => '1.14',
4511             'Errno'                 => '1.12',
4512             'ExtUtils::MM_Unix'     => '6.5601',
4513             'ExtUtils::MakeMaker'   => '6.5601',
4514             'ExtUtils::ParseXS'     => '2.2205',
4515             'File::Find'            => '1.16',
4516             'IPC::Cmd'              => '0.58',
4517             'IPC::Open3'            => '1.06',
4518             'List::Util'            => '1.23',
4519             'List::Util::PP'        => '1.23',
4520             'List::Util::XS'        => '1.23',
4521             'Locale::Codes'         => '3.12',
4522             'Locale::Codes::Country'=> '3.12',
4523             'Locale::Codes::Currency'=> '3.12',
4524             'Locale::Codes::Language'=> '3.12',
4525             'Locale::Codes::Script' => '3.12',
4526             'Locale::Constants'     => '3.12',
4527             'Locale::Country'       => '3.12',
4528             'Locale::Currency'      => '3.12',
4529             'Locale::Language'      => '3.12',
4530             'Locale::Script'        => '3.12',
4531             'MIME::Base64'          => '3.09',
4532             'MIME::QuotedPrint'     => '3.09',
4533             'Module::Build::Platform::cygwin'=> '0.360301',
4534             'Module::CoreList'      => '2.34',
4535             'Module::Load::Conditional'=> '0.38',
4536             'PerlIO::scalar'        => '0.08',
4537             'Scalar::Util'          => '1.23',
4538             'Scalar::Util::PP'      => '1.23',
4539             'Socket'                => '1.88',
4540             'Term::ReadLine'        => '1.06',
4541             'Unicode::UCD'          => '0.28',
4542             'XS::APItest'           => '0.19',
4543             'XS::APItest::KeywordRPN'=> '0.004',
4544             'charnames'             => '1.08',
4545             'feature'               => '1.17',
4546             'threads'               => '1.77_01',
4547             'threads::shared'       => '1.33',
4548         },
4549         removed => {
4550             'Class::ISA'            => 1,
4551             'Pod::Plainer'          => 1,
4552             'Switch'                => 1,
4553         }
4554     },
4555     5.013002 => {
4556         delta_from => 5.013001,
4557         changed => {
4558             'B::Concise'            => '0.79',
4559             'B::Deparse'            => '0.98',
4560             'CPAN'                  => '1.94_57',
4561             'CPAN::Distribution'    => '1.9600',
4562             'Exporter'              => '5.64_02',
4563             'Exporter::Heavy'       => '5.64_02',
4564             'File::Copy'            => '2.19',
4565             'Hash::Util'            => '0.08',
4566             'IO::Socket'            => '1.32',
4567             'Locale::Codes'         => '3.13',
4568             'Locale::Codes::Country'=> '3.13',
4569             'Locale::Codes::Currency'=> '3.13',
4570             'Locale::Codes::Language'=> '3.13',
4571             'Locale::Codes::Script' => '3.13',
4572             'Locale::Constants'     => '3.13',
4573             'Locale::Country'       => '3.13',
4574             'Locale::Currency'      => '3.13',
4575             'Locale::Language'      => '3.13',
4576             'Locale::Script'        => '3.13',
4577             'Search::Dict'          => '1.03',
4578             'Socket'                => '1.89',
4579             'Thread::Semaphore'     => '2.11',
4580             'UNIVERSAL'             => '1.07',
4581             'VMS::DCLsym'           => '1.04',
4582             'mro'                   => '1.03',
4583             'threads'               => '1.77_02',
4584             'threads::shared'       => '1.33_01',
4585         },
4586         removed => {
4587         }
4588     },
4589     5.013003 => {
4590         delta_from => 5.013002,
4591         changed => {
4592             'App::Prove'            => '3.21',
4593             'App::Prove::State'     => '3.21',
4594             'App::Prove::State::Result'=> '3.21',
4595             'App::Prove::State::Result::Test'=> '3.21',
4596             'Archive::Extract'      => '0.42',
4597             'Archive::Tar'          => '1.64',
4598             'Archive::Tar::Constant'=> '1.64',
4599             'Archive::Tar::File'    => '1.64',
4600             'Attribute::Handlers'   => '0.88',
4601             'CPANPLUS'              => '0.9007',
4602             'CPANPLUS::Internals'   => '0.9007',
4603             'CPANPLUS::Shell::Default'=> '0.9007',
4604             'Compress::Raw::Bzip2'  => '2.027',
4605             'Compress::Raw::Zlib'   => '2.027_01',
4606             'Compress::Zlib'        => '2.027',
4607             'DB'                    => '1.03',
4608             'Digest::MD5'           => '2.40',
4609             'Digest::SHA'           => '5.48',
4610             'Exporter'              => '5.64_03',
4611             'Exporter::Heavy'       => '5.64_03',
4612             'ExtUtils::CBuilder'    => '0.2703',
4613             'ExtUtils::CBuilder::Base'=> '0.2703_01',
4614             'ExtUtils::CBuilder::Platform::Unix'=> '0.2703',
4615             'ExtUtils::CBuilder::Platform::VMS'=> '0.2703',
4616             'ExtUtils::CBuilder::Platform::Windows'=> '0.2703',
4617             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703',
4618             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703',
4619             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703',
4620             'ExtUtils::CBuilder::Platform::aix'=> '0.2703',
4621             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703',
4622             'ExtUtils::CBuilder::Platform::darwin'=> '0.2703',
4623             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703',
4624             'ExtUtils::CBuilder::Platform::os2'=> '0.2703',
4625             'ExtUtils::Manifest'    => '1.58',
4626             'ExtUtils::ParseXS'     => '2.2206',
4627             'Fatal'                 => '2.10',
4628             'File::Basename'        => '2.79',
4629             'File::Copy'            => '2.20',
4630             'File::DosGlob'         => '1.02',
4631             'File::Find'            => '1.17',
4632             'File::Glob'            => '1.08',
4633             'File::stat'            => '1.03',
4634             'I18N::LangTags'        => '0.35_01',
4635             'I18N::LangTags::List'  => '0.35_01',
4636             'IO::Compress::Adapter::Bzip2'=> '2.027',
4637             'IO::Compress::Adapter::Deflate'=> '2.027',
4638             'IO::Compress::Adapter::Identity'=> '2.027',
4639             'IO::Compress::Base'    => '2.027',
4640             'IO::Compress::Base::Common'=> '2.027',
4641             'IO::Compress::Bzip2'   => '2.027',
4642             'IO::Compress::Deflate' => '2.027',
4643             'IO::Compress::Gzip'    => '2.027',
4644             'IO::Compress::Gzip::Constants'=> '2.027',
4645             'IO::Compress::RawDeflate'=> '2.027',
4646             'IO::Compress::Zip'     => '2.027',
4647             'IO::Compress::Zip::Constants'=> '2.027',
4648             'IO::Compress::Zlib::Constants'=> '2.027',
4649             'IO::Compress::Zlib::Extra'=> '2.027',
4650             'IO::Uncompress::Adapter::Bunzip2'=> '2.027',
4651             'IO::Uncompress::Adapter::Identity'=> '2.027',
4652             'IO::Uncompress::Adapter::Inflate'=> '2.027',
4653             'IO::Uncompress::AnyInflate'=> '2.027',
4654             'IO::Uncompress::AnyUncompress'=> '2.027',
4655             'IO::Uncompress::Base'  => '2.027',
4656             'IO::Uncompress::Bunzip2'=> '2.027',
4657             'IO::Uncompress::Gunzip'=> '2.027',
4658             'IO::Uncompress::Inflate'=> '2.027',
4659             'IO::Uncompress::RawInflate'=> '2.027',
4660             'IO::Uncompress::Unzip' => '2.027',
4661             'IPC::Cmd'              => '0.60',
4662             'IPC::Msg'              => '2.03',
4663             'IPC::Semaphore'        => '2.03',
4664             'IPC::SharedMem'        => '2.03',
4665             'IPC::SysV'             => '2.03',
4666             'Locale::Maketext'      => '1.15',
4667             'Locale::Maketext::Guts'=> undef,
4668             'Locale::Maketext::GutsLoader'=> undef,
4669             'Module::Build'         => '0.3607',
4670             'Module::Build::Base'   => '0.3607',
4671             'Module::Build::Compat' => '0.3607',
4672             'Module::Build::Config' => '0.3607',
4673             'Module::Build::Cookbook'=> '0.3607',
4674             'Module::Build::Dumper' => '0.3607',
4675             'Module::Build::ModuleInfo'=> '0.3607',
4676             'Module::Build::Notes'  => '0.3607',
4677             'Module::Build::PPMMaker'=> '0.3607',
4678             'Module::Build::Platform::Amiga'=> '0.3607',
4679             'Module::Build::Platform::Default'=> '0.3607',
4680             'Module::Build::Platform::EBCDIC'=> '0.3607',
4681             'Module::Build::Platform::MPEiX'=> '0.3607',
4682             'Module::Build::Platform::MacOS'=> '0.3607',
4683             'Module::Build::Platform::RiscOS'=> '0.3607',
4684             'Module::Build::Platform::Unix'=> '0.3607',
4685             'Module::Build::Platform::VMS'=> '0.3607',
4686             'Module::Build::Platform::VOS'=> '0.3607',
4687             'Module::Build::Platform::Windows'=> '0.3607',
4688             'Module::Build::Platform::aix'=> '0.3607',
4689             'Module::Build::Platform::cygwin'=> '0.3607',
4690             'Module::Build::Platform::darwin'=> '0.3607',
4691             'Module::Build::Platform::os2'=> '0.3607',
4692             'Module::Build::PodParser'=> '0.3607',
4693             'Module::CoreList'      => '2.36',
4694             'Module::Load'          => '0.18',
4695             'TAP::Base'             => '3.21',
4696             'TAP::Formatter::Base'  => '3.21',
4697             'TAP::Formatter::Color' => '3.21',
4698             'TAP::Formatter::Console'=> '3.21',
4699             'TAP::Formatter::Console::ParallelSession'=> '3.21',
4700             'TAP::Formatter::Console::Session'=> '3.21',
4701             'TAP::Formatter::File'  => '3.21',
4702             'TAP::Formatter::File::Session'=> '3.21',
4703             'TAP::Formatter::Session'=> '3.21',
4704             'TAP::Harness'          => '3.21',
4705             'TAP::Object'           => '3.21',
4706             'TAP::Parser'           => '3.21',
4707             'TAP::Parser::Aggregator'=> '3.21',
4708             'TAP::Parser::Grammar'  => '3.21',
4709             'TAP::Parser::Iterator' => '3.21',
4710             'TAP::Parser::Iterator::Array'=> '3.21',
4711             'TAP::Parser::Iterator::Process'=> '3.21',
4712             'TAP::Parser::Iterator::Stream'=> '3.21',
4713             'TAP::Parser::IteratorFactory'=> '3.21',
4714             'TAP::Parser::Multiplexer'=> '3.21',
4715             'TAP::Parser::Result'   => '3.21',
4716             'TAP::Parser::Result::Bailout'=> '3.21',
4717             'TAP::Parser::Result::Comment'=> '3.21',
4718             'TAP::Parser::Result::Plan'=> '3.21',
4719             'TAP::Parser::Result::Pragma'=> '3.21',
4720             'TAP::Parser::Result::Test'=> '3.21',
4721             'TAP::Parser::Result::Unknown'=> '3.21',
4722             'TAP::Parser::Result::Version'=> '3.21',
4723             'TAP::Parser::Result::YAML'=> '3.21',
4724             'TAP::Parser::ResultFactory'=> '3.21',
4725             'TAP::Parser::Scheduler'=> '3.21',
4726             'TAP::Parser::Scheduler::Job'=> '3.21',
4727             'TAP::Parser::Scheduler::Spinner'=> '3.21',
4728             'TAP::Parser::Source'   => '3.21',
4729             'TAP::Parser::SourceHandler'=> '3.21',
4730             'TAP::Parser::SourceHandler::Executable'=> '3.21',
4731             'TAP::Parser::SourceHandler::File'=> '3.21',
4732             'TAP::Parser::SourceHandler::Handle'=> '3.21',
4733             'TAP::Parser::SourceHandler::Perl'=> '3.21',
4734             'TAP::Parser::SourceHandler::RawTAP'=> '3.21',
4735             'TAP::Parser::SourceHandler::pgTAP'=> '3.21',
4736             'TAP::Parser::Utils'    => '3.21',
4737             'TAP::Parser::YAMLish::Reader'=> '3.21',
4738             'TAP::Parser::YAMLish::Writer'=> '3.21',
4739             'Term::ANSIColor'       => '3.00',
4740             'Term::ReadLine'        => '1.07',
4741             'Test::Harness'         => '3.21',
4742             'Tie::Array'            => '1.04',
4743             'Time::HiRes'           => '1.9721',
4744             'Time::Piece'           => '1.20_01',
4745             'Unicode::Collate'      => '0.53',
4746             'Unicode::Normalize'    => '1.06',
4747             'Unicode::UCD'          => '0.29',
4748             'autodie'               => '2.10',
4749             'autodie::exception'    => '2.10',
4750             'autodie::exception::system'=> '2.10',
4751             'autodie::hints'        => '2.10',
4752             'blib'                  => '1.05',
4753             'charnames'             => '1.11',
4754             'diagnostics'           => '1.20',
4755             'inc::latest'           => '0.3607',
4756             'lib'                   => '0.63',
4757             're'                    => '0.12',
4758             'threads'               => '1.77_03',
4759             'threads::shared'       => '1.33_02',
4760             'vars'                  => '1.02',
4761             'warnings'              => '1.10',
4762         },
4763         removed => {
4764             'TAP::Parser::Source::Perl'=> 1,
4765         }
4766     },
4767     5.013004 => {
4768         delta_from => 5.013003,
4769         changed => {
4770             'App::Prove'            => '3.22',
4771             'App::Prove::State'     => '3.22',
4772             'App::Prove::State::Result'=> '3.22',
4773             'App::Prove::State::Result::Test'=> '3.22',
4774             'Archive::Tar'          => '1.68',
4775             'Archive::Tar::Constant'=> '1.68',
4776             'Archive::Tar::File'    => '1.68',
4777             'B::Lint'               => '1.12',
4778             'B::Lint::Debug'        => '1.12',
4779             'Carp'                  => '1.18',
4780             'Carp::Heavy'           => '1.18',
4781             'Compress::Raw::Bzip2'  => '2.030',
4782             'Compress::Raw::Zlib'   => '2.030',
4783             'Compress::Zlib'        => '2.030',
4784             'ExtUtils::ParseXS'     => '2.2207',
4785             'File::Spec'            => '3.31_01',
4786             'I18N::Langinfo'        => '0.04',
4787             'IO::Compress::Adapter::Bzip2'=> '2.030',
4788             'IO::Compress::Adapter::Deflate'=> '2.030',
4789             'IO::Compress::Adapter::Identity'=> '2.030',
4790             'IO::Compress::Base'    => '2.030',
4791             'IO::Compress::Base::Common'=> '2.030',
4792             'IO::Compress::Bzip2'   => '2.030',
4793             'IO::Compress::Deflate' => '2.030',
4794             'IO::Compress::Gzip'    => '2.030',
4795             'IO::Compress::Gzip::Constants'=> '2.030',
4796             'IO::Compress::RawDeflate'=> '2.030',
4797             'IO::Compress::Zip'     => '2.030',
4798             'IO::Compress::Zip::Constants'=> '2.030',
4799             'IO::Compress::Zlib::Constants'=> '2.030',
4800             'IO::Compress::Zlib::Extra'=> '2.030',
4801             'IO::Uncompress::Adapter::Bunzip2'=> '2.030',
4802             'IO::Uncompress::Adapter::Identity'=> '2.030',
4803             'IO::Uncompress::Adapter::Inflate'=> '2.030',
4804             'IO::Uncompress::AnyInflate'=> '2.030',
4805             'IO::Uncompress::AnyUncompress'=> '2.030',
4806             'IO::Uncompress::Base'  => '2.030',
4807             'IO::Uncompress::Bunzip2'=> '2.030',
4808             'IO::Uncompress::Gunzip'=> '2.030',
4809             'IO::Uncompress::Inflate'=> '2.030',
4810             'IO::Uncompress::RawInflate'=> '2.030',
4811             'IO::Uncompress::Unzip' => '2.030',
4812             'Module::CoreList'      => '2.37',
4813             'TAP::Base'             => '3.22',
4814             'TAP::Formatter::Base'  => '3.22',
4815             'TAP::Formatter::Color' => '3.22',
4816             'TAP::Formatter::Console'=> '3.22',
4817             'TAP::Formatter::Console::ParallelSession'=> '3.22',
4818             'TAP::Formatter::Console::Session'=> '3.22',
4819             'TAP::Formatter::File'  => '3.22',
4820             'TAP::Formatter::File::Session'=> '3.22',
4821             'TAP::Formatter::Session'=> '3.22',
4822             'TAP::Harness'          => '3.22',
4823             'TAP::Object'           => '3.22',
4824             'TAP::Parser'           => '3.22',
4825             'TAP::Parser::Aggregator'=> '3.22',
4826             'TAP::Parser::Grammar'  => '3.22',
4827             'TAP::Parser::Iterator' => '3.22',
4828             'TAP::Parser::Iterator::Array'=> '3.22',
4829             'TAP::Parser::Iterator::Process'=> '3.22',
4830             'TAP::Parser::Iterator::Stream'=> '3.22',
4831             'TAP::Parser::IteratorFactory'=> '3.22',
4832             'TAP::Parser::Multiplexer'=> '3.22',
4833             'TAP::Parser::Result'   => '3.22',
4834             'TAP::Parser::Result::Bailout'=> '3.22',
4835             'TAP::Parser::Result::Comment'=> '3.22',
4836             'TAP::Parser::Result::Plan'=> '3.22',
4837             'TAP::Parser::Result::Pragma'=> '3.22',
4838             'TAP::Parser::Result::Test'=> '3.22',
4839             'TAP::Parser::Result::Unknown'=> '3.22',
4840             'TAP::Parser::Result::Version'=> '3.22',
4841             'TAP::Parser::Result::YAML'=> '3.22',
4842             'TAP::Parser::ResultFactory'=> '3.22',
4843             'TAP::Parser::Scheduler'=> '3.22',
4844             'TAP::Parser::Scheduler::Job'=> '3.22',
4845             'TAP::Parser::Scheduler::Spinner'=> '3.22',
4846             'TAP::Parser::Source'   => '3.22',
4847             'TAP::Parser::SourceHandler'=> '3.22',
4848             'TAP::Parser::SourceHandler::Executable'=> '3.22',
4849             'TAP::Parser::SourceHandler::File'=> '3.22',
4850             'TAP::Parser::SourceHandler::Handle'=> '3.22',
4851             'TAP::Parser::SourceHandler::Perl'=> '3.22',
4852             'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
4853             'TAP::Parser::Utils'    => '3.22',
4854             'TAP::Parser::YAMLish::Reader'=> '3.22',
4855             'TAP::Parser::YAMLish::Writer'=> '3.22',
4856             'Test::Builder'         => '0.96',
4857             'Test::Builder::Module' => '0.96',
4858             'Test::Builder::Tester' => '1.20',
4859             'Test::Builder::Tester::Color'=> '1.20',
4860             'Test::Harness'         => '3.22',
4861             'Test::More'            => '0.96',
4862             'Test::Simple'          => '0.96',
4863             'Unicode::Collate'      => '0.56',
4864             'Unicode::Collate::Locale'=> '0.56',
4865             'XS::APItest'           => '0.20',
4866             'charnames'             => '1.15',
4867             'feature'               => '1.18',
4868         },
4869         removed => {
4870             'TAP::Parser::SourceHandler::pgTAP'=> 1,
4871         }
4872     },
4873     5.013005 => {
4874         delta_from => 5.013004,
4875         changed => {
4876             'B::Debug'              => '1.16',
4877             'CPANPLUS::Dist::Build' => '0.48',
4878             'CPANPLUS::Dist::Build::Constants'=> '0.48',
4879             'Data::Dumper'          => '2.128',
4880             'Encode'                => '2.40',
4881             'Encode::Guess'         => '2.04',
4882             'Encode::MIME::Header'  => '2.12',
4883             'Encode::Unicode::UTF7' => '2.05',
4884             'Errno'                 => '1.13',
4885             'ExtUtils::Command::MM' => '6.57_05',
4886             'ExtUtils::Liblist'     => '6.57_05',
4887             'ExtUtils::Liblist::Kid'=> '6.5705',
4888             'ExtUtils::MM'          => '6.57_05',
4889             'ExtUtils::MM_AIX'      => '6.57_05',
4890             'ExtUtils::MM_Any'      => '6.57_05',
4891             'ExtUtils::MM_BeOS'     => '6.57_05',
4892             'ExtUtils::MM_Cygwin'   => '6.57_05',
4893             'ExtUtils::MM_DOS'      => '6.5705',
4894             'ExtUtils::MM_Darwin'   => '6.57_05',
4895             'ExtUtils::MM_MacOS'    => '6.5705',
4896             'ExtUtils::MM_NW5'      => '6.57_05',
4897             'ExtUtils::MM_OS2'      => '6.57_05',
4898             'ExtUtils::MM_QNX'      => '6.57_05',
4899             'ExtUtils::MM_UWIN'     => '6.5705',
4900             'ExtUtils::MM_Unix'     => '6.57_05',
4901             'ExtUtils::MM_VMS'      => '6.57_05',
4902             'ExtUtils::MM_VOS'      => '6.57_05',
4903             'ExtUtils::MM_Win32'    => '6.57_05',
4904             'ExtUtils::MM_Win95'    => '6.57_05',
4905             'ExtUtils::MY'          => '6.5705',
4906             'ExtUtils::MakeMaker'   => '6.57_05',
4907             'ExtUtils::MakeMaker::Config'=> '6.57_05',
4908             'ExtUtils::MakeMaker::YAML'=> '1.44',
4909             'ExtUtils::Mkbootstrap' => '6.57_05',
4910             'ExtUtils::Mksymlists'  => '6.57_05',
4911             'ExtUtils::testlib'     => '6.5705',
4912             'Filter::Simple'        => '0.85',
4913             'Hash::Util'            => '0.09',
4914             'Math::BigFloat'        => '1.62',
4915             'Math::BigInt'          => '1.95',
4916             'Math::BigInt::Calc'    => '0.54',
4917             'Math::BigInt::CalcEmu' => '0.06',
4918             'Math::BigInt::FastCalc'=> '0.22',
4919             'Math::BigRat'          => '0.26',
4920             'Module::CoreList'      => '2.39',
4921             'POSIX'                 => '1.20',
4922             'PerlIO::scalar'        => '0.09',
4923             'Safe'                  => '2.28',
4924             'Test::Builder'         => '0.97_01',
4925             'Test::Builder::Module' => '0.97_01',
4926             'Test::Builder::Tester' => '1.21_01',
4927             'Test::Builder::Tester::Color'=> '1.21_01',
4928             'Test::More'            => '0.97_01',
4929             'Test::Simple'          => '0.97_01',
4930             'Tie::Hash'             => '1.04',
4931             'Unicode::Collate'      => '0.59',
4932             'Unicode::Collate::Locale'=> '0.59',
4933             'XS::APItest'           => '0.21',
4934             'XS::APItest::KeywordRPN'=> '0.005',
4935             'XSLoader'              => '0.11',
4936             'bigint'                => '0.25',
4937             'bignum'                => '0.25',
4938             'bigrat'                => '0.25',
4939             'blib'                  => '1.06',
4940             'open'                  => '1.08',
4941             'threads::shared'       => '1.33_03',
4942             'warnings'              => '1.11',
4943             'warnings::register'    => '1.02',
4944         },
4945         removed => {
4946         }
4947     },
4948     5.013006 => {
4949         delta_from => 5.013005,
4950         changed => {
4951             'Archive::Extract'      => '0.44',
4952             'B'                     => '1.24',
4953             'B::Deparse'            => '0.99',
4954             'CPAN'                  => '1.94_61',
4955             'CPAN::FTP'             => '5.5005',
4956             'CPAN::Queue'           => '5.5001',
4957             'CPAN::Version'         => '5.5001',
4958             'Carp'                  => '1.19',
4959             'Carp::Heavy'           => '1.19',
4960             'Compress::Raw::Bzip2'  => '2.031',
4961             'Cwd'                   => '3.34',
4962             'Data::Dumper'          => '2.129',
4963             'Devel::Peek'           => '1.05',
4964             'Digest::MD5'           => '2.51',
4965             'ExtUtils::Constant::Base'=> '0.05',
4966             'ExtUtils::Constant::ProxySubs'=> '0.07',
4967             'ExtUtils::Embed'       => '1.29',
4968             'ExtUtils::XSSymSet'    => '1.2',
4969             'Fcntl'                 => '1.09',
4970             'File::DosGlob'         => '1.03',
4971             'File::Find'            => '1.18',
4972             'File::Glob'            => '1.09',
4973             'File::Spec'            => '3.33',
4974             'File::Spec::Cygwin'    => '3.33',
4975             'File::Spec::Epoc'      => '3.33',
4976             'File::Spec::Functions' => '3.33',
4977             'File::Spec::Mac'       => '3.33',
4978             'File::Spec::OS2'       => '3.33',
4979             'File::Spec::Unix'      => '3.33',
4980             'File::Spec::VMS'       => '3.33',
4981             'File::Spec::Win32'     => '3.33',
4982             'GDBM_File'             => '1.11',
4983             'Hash::Util::FieldHash' => '1.05',
4984             'I18N::Langinfo'        => '0.06',
4985             'IPC::Cmd'              => '0.64',
4986             'IPC::Open3'            => '1.07',
4987             'Locale::Codes'         => '3.14',
4988             'Locale::Codes::Country'=> '3.14',
4989             'Locale::Codes::Currency'=> '3.14',
4990             'Locale::Codes::Language'=> '3.14',
4991             'Locale::Codes::Script' => '3.14',
4992             'Locale::Constants'     => '3.14',
4993             'Locale::Country'       => '3.14',
4994             'Locale::Currency'      => '3.14',
4995             'Locale::Language'      => '3.14',
4996             'Locale::Maketext'      => '1.16',
4997             'Locale::Script'        => '3.14',
4998             'Math::BigFloat'        => '1.63',
4999             'Math::BigInt'          => '1.97',
5000             'Math::BigInt::Calc'    => '0.55',
5001             'Math::BigInt::CalcEmu' => '0.07',
5002             'Module::CoreList'      => '2.40',
5003             'NDBM_File'             => '1.09',
5004             'NEXT'                  => '0.65',
5005             'ODBM_File'             => '1.08',
5006             'Opcode'                => '1.16',
5007             'POSIX'                 => '1.21',
5008             'PerlIO::encoding'      => '0.13',
5009             'PerlIO::scalar'        => '0.10',
5010             'PerlIO::via'           => '0.10',
5011             'Pod::Man'              => '2.25',
5012             'Pod::Text'             => '3.15',
5013             'SDBM_File'             => '1.07',
5014             'Socket'                => '1.90',
5015             'Sys::Hostname'         => '1.13',
5016             'Tie::Hash::NamedCapture'=> '0.07',
5017             'Unicode::Collate'      => '0.63',
5018             'Unicode::Collate::Locale'=> '0.63',
5019             'Unicode::Normalize'    => '1.07',
5020             'XS::APItest'           => '0.23',
5021             'XSLoader'              => '0.13',
5022             'attributes'            => '0.13',
5023             'charnames'             => '1.16',
5024             'if'                    => '0.06',
5025             'mro'                   => '1.04',
5026             'overload'              => '1.11',
5027             're'                    => '0.13',
5028             'sigtrap'               => '1.05',
5029             'threads'               => '1.81_01',
5030             'threads::shared'       => '1.34',
5031         },
5032         removed => {
5033             'XS::APItest::KeywordRPN'=> 1,
5034         }
5035     },
5036     5.013007 => {
5037         delta_from => 5.013006,
5038         changed => {
5039             'Archive::Extract'      => '0.46',
5040             'Archive::Tar'          => '1.72',
5041             'Archive::Tar::Constant'=> '1.72',
5042             'Archive::Tar::File'    => '1.72',
5043             'AutoLoader'            => '5.71',
5044             'B'                     => '1.26',
5045             'B::Concise'            => '0.81',
5046             'B::Deparse'            => '1.01',
5047             'CGI'                   => '3.50',
5048             'CPAN'                  => '1.94_62',
5049             'CPANPLUS'              => '0.9010',
5050             'CPANPLUS::Dist::Build' => '0.50',
5051             'CPANPLUS::Dist::Build::Constants'=> '0.50',
5052             'CPANPLUS::Internals'   => '0.9010',
5053             'CPANPLUS::Shell::Default'=> '0.9010',
5054             'Data::Dumper'          => '2.130_01',
5055             'DynaLoader'            => '1.11',
5056             'ExtUtils::Constant'    => '0.23',
5057             'ExtUtils::Constant::ProxySubs'=> '0.08',
5058             'Fcntl'                 => '1.10',
5059             'File::Fetch'           => '0.28',
5060             'File::Glob'            => '1.10',
5061             'File::stat'            => '1.04',
5062             'GDBM_File'             => '1.12',
5063             'Hash::Util'            => '0.10',
5064             'Hash::Util::FieldHash' => '1.06',
5065             'I18N::Langinfo'        => '0.07',
5066             'Locale::Maketext'      => '1.17',
5067             'Locale::Maketext::Guts'=> '1.17',
5068             'Locale::Maketext::GutsLoader'=> '1.17',
5069             'MIME::Base64'          => '3.10',
5070             'MIME::QuotedPrint'     => '3.10',
5071             'Math::BigFloat'        => '1.99_01',
5072             'Math::BigInt'          => '1.99_01',
5073             'Math::BigInt::Calc'    => '1.99_01',
5074             'Math::BigInt::CalcEmu' => '1.99_01',
5075             'Math::BigInt::FastCalc'=> '0.24_01',
5076             'Math::BigRat'          => '0.26_01',
5077             'Module::CoreList'      => '2.41',
5078             'NDBM_File'             => '1.10',
5079             'ODBM_File'             => '1.09',
5080             'Opcode'                => '1.17',
5081             'POSIX'                 => '1.22',
5082             'Pod::Simple'           => '3.15',
5083             'Pod::Simple::BlackBox' => '3.15',
5084             'Pod::Simple::Checker'  => '3.15',
5085             'Pod::Simple::Debug'    => '3.15',
5086             'Pod::Simple::DumpAsText'=> '3.15',
5087             'Pod::Simple::DumpAsXML'=> '3.15',
5088             'Pod::Simple::HTML'     => '3.15',
5089             'Pod::Simple::HTMLBatch'=> '3.15',
5090             'Pod::Simple::LinkSection'=> '3.15',
5091             'Pod::Simple::Methody'  => '3.15',
5092             'Pod::Simple::Progress' => '3.15',
5093             'Pod::Simple::PullParser'=> '3.15',
5094             'Pod::Simple::PullParserEndToken'=> '3.15',
5095             'Pod::Simple::PullParserStartToken'=> '3.15',
5096             'Pod::Simple::PullParserTextToken'=> '3.15',
5097             'Pod::Simple::PullParserToken'=> '3.15',
5098             'Pod::Simple::RTF'      => '3.15',
5099             'Pod::Simple::Search'   => '3.15',
5100             'Pod::Simple::SimpleTree'=> '3.15',
5101             'Pod::Simple::Text'     => '3.15',
5102             'Pod::Simple::TextContent'=> '3.15',
5103             'Pod::Simple::TiedOutFH'=> '3.15',
5104             'Pod::Simple::Transcode'=> '3.15',
5105             'Pod::Simple::TranscodeDumb'=> '3.15',
5106             'Pod::Simple::TranscodeSmart'=> '3.15',
5107             'Pod::Simple::XHTML'    => '3.15',
5108             'Pod::Simple::XMLOutStream'=> '3.15',
5109             'SDBM_File'             => '1.08',
5110             'Safe'                  => '2.29',
5111             'SelfLoader'            => '1.18',
5112             'Socket'                => '1.91',
5113             'Storable'              => '2.24',
5114             'Sys::Hostname'         => '1.14',
5115             'Unicode'               => '6.0.0',
5116             'Unicode::Collate'      => '0.67',
5117             'Unicode::Collate::CJK::Big5'=> '0.65',
5118             'Unicode::Collate::CJK::GB2312'=> '0.65',
5119             'Unicode::Collate::CJK::JISX0208'=> '0.64',
5120             'Unicode::Collate::CJK::Korean'=> '0.66',
5121             'Unicode::Collate::CJK::Pinyin'=> '0.65',
5122             'Unicode::Collate::CJK::Stroke'=> '0.65',
5123             'Unicode::Collate::Locale'=> '0.67',
5124             'XS::APItest'           => '0.26',
5125             'XS::Typemap'           => '0.04',
5126             'charnames'             => '1.17',
5127             'mro'                   => '1.05',
5128             'parent'                => '0.224',
5129             're'                    => '0.14',
5130             'threads'               => '1.81_02',
5131         },
5132         removed => {
5133         }
5134     },
5135     5.013008 => {
5136         delta_from => 5.013007,
5137         changed => {
5138             'Archive::Tar'          => '1.74',
5139             'Archive::Tar::Constant'=> '1.74',
5140             'Archive::Tar::File'    => '1.74',
5141             'B'                     => '1.27',
5142             'B::Concise'            => '0.82',
5143             'B::Deparse'            => '1.02',
5144             'Carp::Heavy'           => '1.17',
5145             'Cwd'                   => '3.35',
5146             'Data::Dumper'          => '2.130_02',
5147             'Devel::Peek'           => '1.06',
5148             'Devel::SelfStubber'    => '1.05',
5149             'Digest::SHA'           => '5.50',
5150             'Dumpvalue'             => '1.15',
5151             'DynaLoader'            => '1.12',
5152             'Env'                   => '1.02',
5153             'Exporter::Heavy'       => '5.64_01',
5154             'ExtUtils::CBuilder'    => '0.280201',
5155             'ExtUtils::CBuilder::Base'=> '0.280201',
5156             'ExtUtils::CBuilder::Platform::Unix'=> '0.280201',
5157             'ExtUtils::CBuilder::Platform::VMS'=> '0.280201',
5158             'ExtUtils::CBuilder::Platform::Windows'=> '0.280201',
5159             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280201',
5160             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280201',
5161             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280201',
5162             'ExtUtils::CBuilder::Platform::aix'=> '0.280201',
5163             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280201',
5164             'ExtUtils::CBuilder::Platform::darwin'=> '0.280201',
5165             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280201',
5166             'ExtUtils::CBuilder::Platform::os2'=> '0.280201',
5167             'ExtUtils::Constant::Utils'=> '0.03',
5168             'ExtUtils::Embed'       => '1.30',
5169             'ExtUtils::ParseXS'     => '2.2208',
5170             'Fatal'                 => '2.1001',
5171             'Fcntl'                 => '1.11',
5172             'File::CheckTree'       => '4.41',
5173             'File::Glob'            => '1.11',
5174             'GDBM_File'             => '1.13',
5175             'Hash::Util::FieldHash' => '1.07',
5176             'I18N::Collate'         => '1.02',
5177             'IO'                    => '1.25_03',
5178             'IPC::Cmd'              => '0.66',
5179             'IPC::Open3'            => '1.08',
5180             'Locale::Codes'         => '3.15',
5181             'Locale::Codes::Country'=> '3.15',
5182             'Locale::Codes::Currency'=> '3.15',
5183             'Locale::Codes::Language'=> '3.15',
5184             'Locale::Codes::Script' => '3.15',
5185             'Locale::Constants'     => '3.15',
5186             'Locale::Country'       => '3.15',
5187             'Locale::Currency'      => '3.15',
5188             'Locale::Language'      => '3.15',
5189             'Locale::Script'        => '3.15',
5190             'MIME::Base64'          => '3.13',
5191             'MIME::QuotedPrint'     => '3.13',
5192             'Math::BigFloat'        => '1.99_02',
5193             'Math::BigInt'          => '1.99_02',
5194             'Math::BigInt::Calc'    => '1.99_02',
5195             'Math::BigInt::CalcEmu' => '1.99_02',
5196             'Memoize'               => '1.02',
5197             'Memoize::AnyDBM_File'  => '1.02',
5198             'Memoize::Expire'       => '1.02',
5199             'Memoize::ExpireFile'   => '1.02',
5200             'Memoize::ExpireTest'   => '1.02',
5201             'Memoize::NDBM_File'    => '1.02',
5202             'Memoize::SDBM_File'    => '1.02',
5203             'Memoize::Storable'     => '1.02',
5204             'Module::CoreList'      => '2.43',
5205             'NDBM_File'             => '1.11',
5206             'Net::Ping'             => '2.37',
5207             'ODBM_File'             => '1.10',
5208             'Opcode'                => '1.18',
5209             'POSIX'                 => '1.23',
5210             'PerlIO::encoding'      => '0.14',
5211             'PerlIO::scalar'        => '0.11',
5212             'PerlIO::via'           => '0.11',
5213             'SDBM_File'             => '1.09',
5214             'Socket'                => '1.92',
5215             'Storable'              => '2.25',
5216             'Time::HiRes'           => '1.9721_01',
5217             'Unicode::Collate'      => '0.6801',
5218             'Unicode::Collate::Locale'=> '0.68',
5219             'Unicode::Normalize'    => '1.08',
5220             'Unicode::UCD'          => '0.30',
5221             'Win32'                 => '0.41',
5222             'XS::APItest'           => '0.27',
5223             'autodie'               => '2.1001',
5224             'autodie::exception'    => '2.1001',
5225             'autodie::exception::system'=> '2.1001',
5226             'autodie::hints'        => '2.1001',
5227             'feature'               => '1.19',
5228             'if'                    => '0.0601',
5229             'mro'                   => '1.06',
5230             'overload'              => '1.12',
5231             're'                    => '0.15',
5232             'threads'               => '1.81_03',
5233             'threads::shared'       => '1.35',
5234             'version'               => '0.86',
5235         },
5236         removed => {
5237         }
5238     },
5239     5.013009 => {
5240         delta_from => 5.013008,
5241         changed => {
5242             'Archive::Extract'      => '0.48',
5243             'Archive::Tar'          => '1.76',
5244             'Archive::Tar::Constant'=> '1.76',
5245             'Archive::Tar::File'    => '1.76',
5246             'B::Concise'            => '0.83',
5247             'B::Deparse'            => '1.03',
5248             'B::Lint'               => '1.13',
5249             'Benchmark'             => '1.12',
5250             'CGI'                   => '3.51',
5251             'CGI::Carp'             => '3.51',
5252             'CGI::Cookie'           => '1.30',
5253             'CGI::Push'             => '1.05',
5254             'CGI::Util'             => '3.51',
5255             'CPAN'                  => '1.94_63',
5256             'CPAN::HTTP::Client'    => '1.94',
5257             'CPAN::HTTP::Credentials'=> '1.94',
5258             'CPAN::Meta::YAML'      => '0.003',
5259             'CPANPLUS'              => '0.9011',
5260             'CPANPLUS::Dist::Build' => '0.52',
5261             'CPANPLUS::Dist::Build::Constants'=> '0.52',
5262             'CPANPLUS::Internals'   => '0.9011',
5263             'CPANPLUS::Shell::Default'=> '0.9011',
5264             'Carp::Heavy'           => '1.19',
5265             'Compress::Raw::Bzip2'  => '2.033',
5266             'Compress::Raw::Zlib'   => '2.033',
5267             'Compress::Zlib'        => '2.033',
5268             'Cwd'                   => '3.36',
5269             'DBM_Filter'            => '0.04',
5270             'DB_File'               => '1.821',
5271             'Devel::Peek'           => '1.07',
5272             'DirHandle'             => '1.04',
5273             'Dumpvalue'             => '1.16',
5274             'Encode'                => '2.42',
5275             'Encode::Alias'         => '2.13',
5276             'Encode::MIME::Header'  => '2.13',
5277             'Exporter::Heavy'       => '5.64_03',
5278             'ExtUtils::Install'     => '1.56',
5279             'ExtUtils::ParseXS'     => '2.2209',
5280             'File::Basename'        => '2.80',
5281             'File::Copy'            => '2.21',
5282             'File::DosGlob'         => '1.04',
5283             'File::Fetch'           => '0.32',
5284             'File::Find'            => '1.19',
5285             'File::Spec::Mac'       => '3.34',
5286             'File::Spec::VMS'       => '3.34',
5287             'File::stat'            => '1.05',
5288             'HTTP::Tiny'            => '0.009',
5289             'Hash::Util::FieldHash' => '1.08',
5290             'IO::Compress::Adapter::Bzip2'=> '2.033',
5291             'IO::Compress::Adapter::Deflate'=> '2.033',
5292             'IO::Compress::Adapter::Identity'=> '2.033',
5293             'IO::Compress::Base'    => '2.033',
5294             'IO::Compress::Base::Common'=> '2.033',
5295             'IO::Compress::Bzip2'   => '2.033',
5296             'IO::Compress::Deflate' => '2.033',
5297             'IO::Compress::Gzip'    => '2.033',
5298             'IO::Compress::Gzip::Constants'=> '2.033',
5299             'IO::Compress::RawDeflate'=> '2.033',
5300             'IO::Compress::Zip'     => '2.033',
5301             'IO::Compress::Zip::Constants'=> '2.033',
5302             'IO::Compress::Zlib::Constants'=> '2.033',
5303             'IO::Compress::Zlib::Extra'=> '2.033',
5304             'IO::Handle'            => '1.29',
5305             'IO::Uncompress::Adapter::Bunzip2'=> '2.033',
5306             'IO::Uncompress::Adapter::Identity'=> '2.033',
5307             'IO::Uncompress::Adapter::Inflate'=> '2.033',
5308             'IO::Uncompress::AnyInflate'=> '2.033',
5309             'IO::Uncompress::AnyUncompress'=> '2.033',
5310             'IO::Uncompress::Base'  => '2.033',
5311             'IO::Uncompress::Bunzip2'=> '2.033',
5312             'IO::Uncompress::Gunzip'=> '2.033',
5313             'IO::Uncompress::Inflate'=> '2.033',
5314             'IO::Uncompress::RawInflate'=> '2.033',
5315             'IO::Uncompress::Unzip' => '2.033',
5316             'IPC::Cmd'              => '0.68',
5317             'IPC::Open3'            => '1.09',
5318             'JSON::PP'              => '2.27103',
5319             'JSON::PP::Boolean'     => undef,
5320             'Locale::Maketext'      => '1.18',
5321             'Log::Message'          => '0.04',
5322             'Log::Message::Config'  => '0.04',
5323             'Log::Message::Handlers'=> '0.04',
5324             'Log::Message::Item'    => '0.04',
5325             'Log::Message::Simple'  => '0.08',
5326             'Math::BigFloat'        => '1.99_03',
5327             'Math::BigInt'          => '1.99_03',
5328             'Math::BigInt::Calc'    => '1.99_03',
5329             'Math::BigInt::FastCalc'=> '0.24_02',
5330             'Math::BigRat'          => '0.26_02',
5331             'Module::CoreList'      => '2.42_01',
5332             'Module::Load::Conditional'=> '0.40',
5333             'Module::Metadata'      => '1.000003',
5334             'Net::Ping'             => '2.38',
5335             'OS2::Process'          => '1.05',
5336             'Object::Accessor'      => '0.38',
5337             'POSIX'                 => '1.24',
5338             'Params::Check'         => '0.28',
5339             'Perl::OSType'          => '1.002',
5340             'Pod::LaTeX'            => '0.59',
5341             'Pod::Perldoc'          => '3.15_03',
5342             'Socket'                => '1.93',
5343             'Storable'              => '2.26',
5344             'Sys::Hostname'         => '1.15',
5345             'Term::UI'              => '0.24',
5346             'Thread::Queue'         => '2.12',
5347             'Thread::Semaphore'     => '2.12',
5348             'Time::Local'           => '1.2000',
5349             'UNIVERSAL'             => '1.08',
5350             'Unicode::Normalize'    => '1.10',
5351             'Win32'                 => '0.44',
5352             'bigint'                => '0.26',
5353             'bignum'                => '0.26',
5354             'bigrat'                => '0.26',
5355             'charnames'             => '1.18',
5356             'diagnostics'           => '1.21',
5357             're'                    => '0.16',
5358             'threads'               => '1.83',
5359             'threads::shared'       => '1.36',
5360             'version'               => '0.88',
5361         },
5362         removed => {
5363         }
5364     },
5365     5.01301 => {
5366         delta_from => 5.013009,
5367         changed => {
5368             'Attribute::Handlers'   => '0.89',
5369             'B'                     => '1.28',
5370             'B::Showlex'            => '1.03',
5371             'CGI'                   => '3.52',
5372             'CPAN'                  => '1.94_65',
5373             'CPAN::Distribution'    => '1.9601',
5374             'CPAN::FTP::netrc'      => '1.01',
5375             'CPAN::FirstTime'       => '5.5303',
5376             'CPAN::HandleConfig'    => '5.5003',
5377             'CPAN::Meta'            => '2.110440',
5378             'CPAN::Meta::Converter' => '2.110440',
5379             'CPAN::Meta::Feature'   => '2.110440',
5380             'CPAN::Meta::History'   => '2.110440',
5381             'CPAN::Meta::Prereqs'   => '2.110440',
5382             'CPAN::Meta::Spec'      => '2.110440',
5383             'CPAN::Meta::Validator' => '2.110440',
5384             'CPAN::Shell'           => '5.5002',
5385             'CPANPLUS'              => '0.9101',
5386             'CPANPLUS::Internals'   => '0.9101',
5387             'CPANPLUS::Shell::Default'=> '0.9101',
5388             'Carp'                  => '1.20',
5389             'Carp::Heavy'           => '1.20',
5390             'Cwd'                   => '3.37',
5391             'Devel::DProf'          => '20110217.00',
5392             'DynaLoader'            => '1.13',
5393             'ExtUtils::CBuilder'    => '0.280202',
5394             'ExtUtils::CBuilder::Base'=> '0.280202',
5395             'ExtUtils::CBuilder::Platform::Unix'=> '0.280202',
5396             'ExtUtils::CBuilder::Platform::VMS'=> '0.280202',
5397             'ExtUtils::CBuilder::Platform::Windows'=> '0.280202',
5398             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280202',
5399             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280202',
5400             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280202',
5401             'ExtUtils::CBuilder::Platform::aix'=> '0.280202',
5402             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280202',
5403             'ExtUtils::CBuilder::Platform::darwin'=> '0.280202',
5404             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280202',
5405             'ExtUtils::CBuilder::Platform::os2'=> '0.280202',
5406             'File::Copy'            => '2.22',
5407             'Filter::Simple'        => '0.86',
5408             'HTTP::Tiny'            => '0.010',
5409             'I18N::LangTags::Detect'=> '1.05',
5410             'IO::Select'            => '1.18',
5411             'IPC::Cmd'              => '0.70',
5412             'Locale::Maketext'      => '1.19',
5413             'Math::BigFloat'        => '1.992',
5414             'Math::BigInt'          => '1.992',
5415             'Math::BigInt::Calc'    => '1.992',
5416             'Math::BigInt::CalcEmu' => '1.992',
5417             'Module::Build'         => '0.37_05',
5418             'Module::Build::Base'   => '0.37_05',
5419             'Module::Build::Compat' => '0.37_05',
5420             'Module::Build::Config' => '0.37_05',
5421             'Module::Build::Cookbook'=> '0.37_05',
5422             'Module::Build::Dumper' => '0.37_05',
5423             'Module::Build::ModuleInfo'=> '0.37_05',
5424             'Module::Build::Notes'  => '0.37_05',
5425             'Module::Build::PPMMaker'=> '0.37_05',
5426             'Module::Build::Platform::Amiga'=> '0.37_05',
5427             'Module::Build::Platform::Default'=> '0.37_05',
5428             'Module::Build::Platform::EBCDIC'=> '0.37_05',
5429             'Module::Build::Platform::MPEiX'=> '0.37_05',
5430             'Module::Build::Platform::MacOS'=> '0.37_05',
5431             'Module::Build::Platform::RiscOS'=> '0.37_05',
5432             'Module::Build::Platform::Unix'=> '0.37_05',
5433             'Module::Build::Platform::VMS'=> '0.37_05',
5434             'Module::Build::Platform::VOS'=> '0.37_05',
5435             'Module::Build::Platform::Windows'=> '0.37_05',
5436             'Module::Build::Platform::aix'=> '0.37_05',
5437             'Module::Build::Platform::cygwin'=> '0.37_05',
5438             'Module::Build::Platform::darwin'=> '0.37_05',
5439             'Module::Build::Platform::os2'=> '0.37_05',
5440             'Module::Build::PodParser'=> '0.37_05',
5441             'Module::Build::Version'=> '0.87',
5442             'Module::Build::YAML'   => '1.41',
5443             'Module::CoreList'      => '2.45',
5444             'Module::Load::Conditional'=> '0.44',
5445             'Module::Metadata'      => '1.000004',
5446             'OS2::Process'          => '1.06',
5447             'Parse::CPAN::Meta'     => '1.4401',
5448             'Pod::Html'             => '1.1',
5449             'Socket'                => '1.94',
5450             'Term::UI'              => '0.26',
5451             'Unicode::Collate'      => '0.72',
5452             'Unicode::Collate::Locale'=> '0.71',
5453             'Unicode::UCD'          => '0.31',
5454             'VMS::DCLsym'           => '1.05',
5455             'Version::Requirements' => '0.101020',
5456             'bigrat'                => '0.27',
5457             'deprecate'             => '0.02',
5458             'diagnostics'           => '1.22',
5459             'inc::latest'           => '0.37_05',
5460             'overload'              => '1.13',
5461             're'                    => '0.17',
5462             'utf8'                  => '1.09',
5463             'warnings'              => '1.12',
5464         },
5465         removed => {
5466         }
5467     },
5468     5.013011 => {
5469         delta_from => 5.01301,
5470         changed => {
5471             'App::Prove'            => '3.23',
5472             'App::Prove::State'     => '3.23',
5473             'App::Prove::State::Result'=> '3.23',
5474             'App::Prove::State::Result::Test'=> '3.23',
5475             'B'                     => '1.29',
5476             'CPAN'                  => '1.9600',
5477             'CPAN::Author'          => '5.5001',
5478             'CPAN::CacheMgr'        => '5.5001',
5479             'CPAN::Distribution'    => '1.9602',
5480             'CPAN::Exception::blocked_urllist'=> '1.001',
5481             'CPAN::HTTP::Client'    => '1.9600',
5482             'CPAN::HTTP::Credentials'=> '1.9600',
5483             'CPAN::Index'           => '1.9600',
5484             'CPAN::LWP::UserAgent'  => '1.9600',
5485             'CPAN::Mirrors'         => '1.9600',
5486             'CPAN::Module'          => '5.5001',
5487             'CPANPLUS'              => '0.9103',
5488             'CPANPLUS::Dist::Build' => '0.54',
5489             'CPANPLUS::Dist::Build::Constants'=> '0.54',
5490             'CPANPLUS::Internals'   => '0.9103',
5491             'CPANPLUS::Shell::Default'=> '0.9103',
5492             'Cwd'                   => '3.36',
5493             'Devel::DProf'          => '20110228.00',
5494             'Digest::SHA'           => '5.61',
5495             'ExtUtils::Command'     => '1.17',
5496             'File::Basename'        => '2.81',
5497             'File::Copy'            => '2.21',
5498             'File::Glob'            => '1.12',
5499             'GDBM_File'             => '1.14',
5500             'HTTP::Tiny'            => '0.011',
5501             'Hash::Util'            => '0.11',
5502             'Hash::Util::FieldHash' => '1.09',
5503             'I18N::Langinfo'        => '0.08',
5504             'IO'                    => '1.25_04',
5505             'IO::Dir'               => '1.08',
5506             'IO::File'              => '1.15',
5507             'IO::Handle'            => '1.30',
5508             'IO::Pipe'              => '1.14',
5509             'IO::Poll'              => '0.08',
5510             'IO::Select'            => '1.20',
5511             'JSON::PP'              => '2.27105',
5512             'Locale::Codes'         => '3.16',
5513             'Locale::Codes::Country'=> '3.16',
5514             'Locale::Codes::Currency'=> '3.16',
5515             'Locale::Codes::Language'=> '3.16',
5516             'Locale::Codes::Script' => '3.16',
5517             'Locale::Constants'     => '3.16',
5518             'Locale::Country'       => '3.16',
5519             'Locale::Currency'      => '3.16',
5520             'Locale::Language'      => '3.16',
5521             'Locale::Script'        => '3.16',
5522             'Math::BigFloat'        => '1.993',
5523             'Math::BigInt'          => '1.994',
5524             'Math::BigInt::Calc'    => '1.993',
5525             'Math::BigInt::CalcEmu' => '1.993',
5526             'Math::BigInt::FastCalc'=> '0.28',
5527             'Module::Build'         => '0.3800',
5528             'Module::Build::Base'   => '0.3800',
5529             'Module::Build::Compat' => '0.3800',
5530             'Module::Build::Config' => '0.3800',
5531             'Module::Build::Cookbook'=> '0.3800',
5532             'Module::Build::Dumper' => '0.3800',
5533             'Module::Build::ModuleInfo'=> '0.3800',
5534             'Module::Build::Notes'  => '0.3800',
5535             'Module::Build::PPMMaker'=> '0.3800',
5536             'Module::Build::Platform::Amiga'=> '0.3800',
5537             'Module::Build::Platform::Default'=> '0.3800',
5538             'Module::Build::Platform::EBCDIC'=> '0.3800',
5539             'Module::Build::Platform::MPEiX'=> '0.3800',
5540             'Module::Build::Platform::MacOS'=> '0.3800',
5541             'Module::Build::Platform::RiscOS'=> '0.3800',
5542             'Module::Build::Platform::Unix'=> '0.3800',
5543             'Module::Build::Platform::VMS'=> '0.3800',
5544             'Module::Build::Platform::VOS'=> '0.3800',
5545             'Module::Build::Platform::Windows'=> '0.3800',
5546             'Module::Build::Platform::aix'=> '0.3800',
5547             'Module::Build::Platform::cygwin'=> '0.3800',
5548             'Module::Build::Platform::darwin'=> '0.3800',
5549             'Module::Build::Platform::os2'=> '0.3800',
5550             'Module::Build::PodParser'=> '0.3800',
5551             'Module::CoreList'      => '2.46',
5552             'NDBM_File'             => '1.12',
5553             'Pod::Simple'           => '3.16',
5554             'Pod::Simple::BlackBox' => '3.16',
5555             'Pod::Simple::Checker'  => '3.16',
5556             'Pod::Simple::Debug'    => '3.16',
5557             'Pod::Simple::DumpAsText'=> '3.16',
5558             'Pod::Simple::DumpAsXML'=> '3.16',
5559             'Pod::Simple::HTML'     => '3.16',
5560             'Pod::Simple::HTMLBatch'=> '3.16',
5561             'Pod::Simple::LinkSection'=> '3.16',
5562             'Pod::Simple::Methody'  => '3.16',
5563             'Pod::Simple::Progress' => '3.16',
5564             'Pod::Simple::PullParser'=> '3.16',
5565             'Pod::Simple::PullParserEndToken'=> '3.16',
5566             'Pod::Simple::PullParserStartToken'=> '3.16',
5567             'Pod::Simple::PullParserTextToken'=> '3.16',
5568             'Pod::Simple::PullParserToken'=> '3.16',
5569             'Pod::Simple::RTF'      => '3.16',
5570             'Pod::Simple::Search'   => '3.16',
5571             'Pod::Simple::SimpleTree'=> '3.16',
5572             'Pod::Simple::Text'     => '3.16',
5573             'Pod::Simple::TextContent'=> '3.16',
5574             'Pod::Simple::TiedOutFH'=> '3.16',
5575             'Pod::Simple::Transcode'=> '3.16',
5576             'Pod::Simple::TranscodeDumb'=> '3.16',
5577             'Pod::Simple::TranscodeSmart'=> '3.16',
5578             'Pod::Simple::XHTML'    => '3.16',
5579             'Pod::Simple::XMLOutStream'=> '3.16',
5580             'Storable'              => '2.27',
5581             'Sys::Hostname'         => '1.16',
5582             'TAP::Base'             => '3.23',
5583             'TAP::Formatter::Base'  => '3.23',
5584             'TAP::Formatter::Color' => '3.23',
5585             'TAP::Formatter::Console'=> '3.23',
5586             'TAP::Formatter::Console::ParallelSession'=> '3.23',
5587             'TAP::Formatter::Console::Session'=> '3.23',
5588             'TAP::Formatter::File'  => '3.23',
5589             'TAP::Formatter::File::Session'=> '3.23',
5590             'TAP::Formatter::Session'=> '3.23',
5591             'TAP::Harness'          => '3.23',
5592             'TAP::Object'           => '3.23',
5593             'TAP::Parser'           => '3.23',
5594             'TAP::Parser::Aggregator'=> '3.23',
5595             'TAP::Parser::Grammar'  => '3.23',
5596             'TAP::Parser::Iterator' => '3.23',
5597             'TAP::Parser::Iterator::Array'=> '3.23',
5598             'TAP::Parser::Iterator::Process'=> '3.23',
5599             'TAP::Parser::Iterator::Stream'=> '3.23',
5600             'TAP::Parser::IteratorFactory'=> '3.23',
5601             'TAP::Parser::Multiplexer'=> '3.23',
5602             'TAP::Parser::Result'   => '3.23',
5603             'TAP::Parser::Result::Bailout'=> '3.23',
5604             'TAP::Parser::Result::Comment'=> '3.23',
5605             'TAP::Parser::Result::Plan'=> '3.23',
5606             'TAP::Parser::Result::Pragma'=> '3.23',
5607             'TAP::Parser::Result::Test'=> '3.23',
5608             'TAP::Parser::Result::Unknown'=> '3.23',
5609             'TAP::Parser::Result::Version'=> '3.23',
5610             'TAP::Parser::Result::YAML'=> '3.23',
5611             'TAP::Parser::ResultFactory'=> '3.23',
5612             'TAP::Parser::Scheduler'=> '3.23',
5613             'TAP::Parser::Scheduler::Job'=> '3.23',
5614             'TAP::Parser::Scheduler::Spinner'=> '3.23',
5615             'TAP::Parser::Source'   => '3.23',
5616             'TAP::Parser::SourceHandler'=> '3.23',
5617             'TAP::Parser::SourceHandler::Executable'=> '3.23',
5618             'TAP::Parser::SourceHandler::File'=> '3.23',
5619             'TAP::Parser::SourceHandler::Handle'=> '3.23',
5620             'TAP::Parser::SourceHandler::Perl'=> '3.23',
5621             'TAP::Parser::SourceHandler::RawTAP'=> '3.23',
5622             'TAP::Parser::Utils'    => '3.23',
5623             'TAP::Parser::YAMLish::Reader'=> '3.23',
5624             'TAP::Parser::YAMLish::Writer'=> '3.23',
5625             'Test::Builder'         => '0.98',
5626             'Test::Builder::Module' => '0.98',
5627             'Test::Builder::Tester' => '1.22',
5628             'Test::Builder::Tester::Color'=> '1.22',
5629             'Test::Harness'         => '3.23',
5630             'Test::More'            => '0.98',
5631             'Test::Simple'          => '0.98',
5632             'Tie::Hash::NamedCapture'=> '0.08',
5633             'Tie::RefHash'          => '1.39',
5634             'Unicode::Collate'      => '0.73',
5635             'Unicode::Collate::Locale'=> '0.73',
5636             'Unicode::UCD'          => '0.32',
5637             'XS::Typemap'           => '0.05',
5638             'attributes'            => '0.14',
5639             'base'                  => '2.16',
5640             'inc::latest'           => '0.3800',
5641             'mro'                   => '1.07',
5642             'parent'                => '0.225',
5643         },
5644         removed => {
5645         }
5646     },
5647     5.014 => {
5648         delta_from => 5.013011,
5649         changed => {
5650             'ExtUtils::CBuilder'    => '0.280203',
5651             'ExtUtils::CBuilder::Base'=> '0.280203',
5652             'ExtUtils::CBuilder::Platform::Unix'=> '0.280203',
5653             'ExtUtils::CBuilder::Platform::VMS'=> '0.280203',
5654             'ExtUtils::CBuilder::Platform::Windows'=> '0.280203',
5655             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280203',
5656             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280203',
5657             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280203',
5658             'ExtUtils::CBuilder::Platform::aix'=> '0.280203',
5659             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280203',
5660             'ExtUtils::CBuilder::Platform::darwin'=> '0.280203',
5661             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280203',
5662             'ExtUtils::CBuilder::Platform::os2'=> '0.280203',
5663             'ExtUtils::ParseXS'     => '2.2210',
5664             'File::Basename'        => '2.82',
5665             'HTTP::Tiny'            => '0.012',
5666             'IO::Handle'            => '1.31',
5667             'Module::CoreList'      => '2.49',
5668             'PerlIO'                => '1.07',
5669             'Pod::Html'             => '1.11',
5670             'XS::APItest'           => '0.28',
5671             'bigint'                => '0.27',
5672             'bignum'                => '0.27',
5673             'bigrat'                => '0.28',
5674             'constant'              => '1.21',
5675             'feature'               => '1.20',
5676             're'                    => '0.18',
5677             'threads::shared'       => '1.37',
5678         },
5679         removed => {
5680         }
5681     },
5682     5.014001 => {
5683         delta_from => 5.014,
5684         changed => {
5685             'B::Deparse'            => '1.04',
5686             'Module::CoreList'      => '2.49_01',
5687             'Pod::Perldoc'          => '3.15_04',
5688         },
5689         removed => {
5690         }
5691     },
5692     5.014002 => {
5693         delta_from => 5.014001,
5694         changed => {
5695             'CPAN'                  => '1.9600_01',
5696             'CPAN::Distribution'    => '1.9602_01',
5697             'Devel::DProf::dprof::V'=> undef,
5698             'Encode'                => '2.42_01',
5699             'File::Glob'            => '1.13',
5700             'Module::CoreList'      => '2.49_02',
5701             'PerlIO::scalar'        => '0.11_01',
5702             'Time::Piece::Seconds'  => undef,
5703         },
5704         removed => {
5705         }
5706     },
5707     5.014003 => {
5708         delta_from => 5.014002,
5709         changed => {
5710             'Digest'                => '1.16_01',
5711             'IPC::Open3'            => '1.09_01',
5712             'Module::CoreList'      => '2.49_04',
5713         },
5714         removed => {
5715         }
5716     },
5717     5.014004 => {
5718         delta_from => 5.014003,
5719         changed => {
5720             'Encode'                => '2.42_02',
5721             'IPC::Open3'            => '1.0901',
5722             'Module::CoreList'      => '2.49_06',
5723         },
5724         removed => {
5725         }
5726     },
5727     5.015 => {
5728         delta_from => 5.014001,
5729         changed => {
5730             'Archive::Extract'      => '0.52',
5731             'Attribute::Handlers'   => '0.91',
5732             'B'                     => '1.30',
5733             'B::Concise'            => '0.84',
5734             'B::Deparse'            => '1.05',
5735             'Benchmark'             => '1.13',
5736             'CGI'                   => '3.54',
5737             'CGI::Util'             => '3.53',
5738             'CPAN::Meta'            => '2.110930',
5739             'CPAN::Meta::Converter' => '2.110930',
5740             'CPAN::Meta::Feature'   => '2.110930',
5741             'CPAN::Meta::History'   => '2.110930',
5742             'CPAN::Meta::Prereqs'   => '2.110930',
5743             'CPAN::Meta::Spec'      => '2.110930',
5744             'CPAN::Meta::Validator' => '2.110930',
5745             'CPANPLUS'              => '0.9105',
5746             'CPANPLUS::Dist::Build' => '0.56',
5747             'CPANPLUS::Dist::Build::Constants'=> '0.56',
5748             'CPANPLUS::Internals'   => '0.9105',
5749             'CPANPLUS::Shell::Default'=> '0.9105',
5750             'Compress::Raw::Bzip2'  => '2.035',
5751             'Compress::Raw::Zlib'   => '2.035',
5752             'Compress::Zlib'        => '2.035',
5753             'DB_File'               => '1.822',
5754             'Data::Dumper'          => '2.131',
5755             'Devel::Peek'           => '1.08',
5756             'Digest::SHA'           => '5.62',
5757             'Encode'                => '2.43',
5758             'Encode::Alias'         => '2.14',
5759             'ExtUtils::CBuilder'    => '0.280204',
5760             'ExtUtils::CBuilder::Base'=> '0.280204',
5761             'Fatal'                 => '2.10',
5762             'File::Spec::Win32'     => '3.34',
5763             'Filter::Simple'        => '0.87',
5764             'Filter::Util::Call'    => '1.39',
5765             'FindBin'               => '1.51',
5766             'Hash::Util::FieldHash' => '1.10',
5767             'I18N::LangTags'        => '0.36',
5768             'IO::Compress::Adapter::Bzip2'=> '2.035',
5769             'IO::Compress::Adapter::Deflate'=> '2.035',
5770             'IO::Compress::Adapter::Identity'=> '2.035',
5771             'IO::Compress::Base'    => '2.035',
5772             'IO::Compress::Base::Common'=> '2.035',
5773             'IO::Compress::Bzip2'   => '2.035',
5774             'IO::Compress::Deflate' => '2.035',
5775             'IO::Compress::Gzip'    => '2.035',
5776             'IO::Compress::Gzip::Constants'=> '2.035',
5777             'IO::Compress::RawDeflate'=> '2.035',
5778             'IO::Compress::Zip'     => '2.035',
5779             'IO::Compress::Zip::Constants'=> '2.035',
5780             'IO::Compress::Zlib::Constants'=> '2.035',
5781             'IO::Compress::Zlib::Extra'=> '2.035',
5782             'IO::Uncompress::Adapter::Bunzip2'=> '2.035',
5783             'IO::Uncompress::Adapter::Identity'=> '2.035',
5784             'IO::Uncompress::Adapter::Inflate'=> '2.035',
5785             'IO::Uncompress::AnyInflate'=> '2.035',
5786             'IO::Uncompress::AnyUncompress'=> '2.035',
5787             'IO::Uncompress::Base'  => '2.035',
5788             'IO::Uncompress::Bunzip2'=> '2.035',
5789             'IO::Uncompress::Gunzip'=> '2.035',
5790             'IO::Uncompress::Inflate'=> '2.035',
5791             'IO::Uncompress::RawInflate'=> '2.035',
5792             'IO::Uncompress::Unzip' => '2.035',
5793             'IPC::Open2'            => '1.04',
5794             'IPC::Open3'            => '1.11',
5795             'JSON::PP'              => '2.27200',
5796             'Math::BigFloat'        => '1.994',
5797             'Math::BigInt'          => '1.995',
5798             'Math::Complex'         => '1.57',
5799             'Math::Trig'            => '1.21',
5800             'Module::CoreList'      => '2.51',
5801             'ODBM_File'             => '1.11',
5802             'Object::Accessor'      => '0.42',
5803             'Opcode'                => '1.19',
5804             'PerlIO::encoding'      => '0.15',
5805             'PerlIO::scalar'        => '0.12',
5806             'Pod::Perldoc'          => '3.15_05',
5807             'Storable'              => '2.28',
5808             'Sys::Syslog'           => '0.29',
5809             'Time::HiRes'           => '1.9722',
5810             'Unicode::Collate'      => '0.76',
5811             'Unicode::Collate::CJK::Pinyin'=> '0.76',
5812             'Unicode::Collate::CJK::Stroke'=> '0.76',
5813             'Unicode::Collate::Locale'=> '0.76',
5814             'Unicode::Normalize'    => '1.12',
5815             'XS::APItest'           => '0.29',
5816             'XSLoader'              => '0.15',
5817             'autodie'               => '2.10',
5818             'autodie::exception'    => '2.10',
5819             'autodie::exception::system'=> '2.10',
5820             'autodie::hints'        => '2.10',
5821             'base'                  => '2.17',
5822             'charnames'             => '1.22',
5823             'constant'              => '1.22',
5824             'feature'               => '1.21',
5825             'mro'                   => '1.08',
5826             'overload'              => '1.14',
5827             'threads::shared'       => '1.38',
5828             'vmsish'                => '1.03',
5829         },
5830         removed => {
5831             'Devel::DProf'          => 1,
5832             'Shell'                 => 1,
5833         }
5834     },
5835     5.015001 => {
5836         delta_from => 5.015,
5837         changed => {
5838             'B::Deparse'            => '1.06',
5839             'CGI'                   => '3.55',
5840             'CPAN::Meta'            => '2.110930001',
5841             'CPAN::Meta::Converter' => '2.110930001',
5842             'CPANPLUS'              => '0.9108',
5843             'CPANPLUS::Internals'   => '0.9108',
5844             'CPANPLUS::Shell::Default'=> '0.9108',
5845             'Carp'                  => '1.21',
5846             'Carp::Heavy'           => '1.21',
5847             'Compress::Raw::Bzip2'  => '2.037',
5848             'Compress::Raw::Zlib'   => '2.037',
5849             'Compress::Zlib'        => '2.037',
5850             'Cwd'                   => '3.37',
5851             'Env'                   => '1.03',
5852             'ExtUtils::Command::MM' => '6.58',
5853             'ExtUtils::Liblist'     => '6.58',
5854             'ExtUtils::Liblist::Kid'=> '6.58',
5855             'ExtUtils::MM'          => '6.58',
5856             'ExtUtils::MM_AIX'      => '6.58',
5857             'ExtUtils::MM_Any'      => '6.58',
5858             'ExtUtils::MM_BeOS'     => '6.58',
5859             'ExtUtils::MM_Cygwin'   => '6.58',
5860             'ExtUtils::MM_DOS'      => '6.58',
5861             'ExtUtils::MM_Darwin'   => '6.58',
5862             'ExtUtils::MM_MacOS'    => '6.58',
5863             'ExtUtils::MM_NW5'      => '6.58',
5864             'ExtUtils::MM_OS2'      => '6.58',
5865             'ExtUtils::MM_QNX'      => '6.58',
5866             'ExtUtils::MM_UWIN'     => '6.58',
5867             'ExtUtils::MM_Unix'     => '6.58',
5868             'ExtUtils::MM_VMS'      => '6.58',
5869             'ExtUtils::MM_VOS'      => '6.58',
5870             'ExtUtils::MM_Win32'    => '6.58',
5871             'ExtUtils::MM_Win95'    => '6.58',
5872             'ExtUtils::MY'          => '6.58',
5873             'ExtUtils::MakeMaker'   => '6.58',
5874             'ExtUtils::MakeMaker::Config'=> '6.58',
5875             'ExtUtils::Mkbootstrap' => '6.58',
5876             'ExtUtils::Mksymlists'  => '6.58',
5877             'ExtUtils::ParseXS'     => '3.00_01',
5878             'ExtUtils::ParseXS::Constants'=> undef,
5879             'ExtUtils::ParseXS::CountLines'=> undef,
5880             'ExtUtils::ParseXS::Utilities'=> undef,
5881             'ExtUtils::Typemaps'    => '1.00',
5882             'ExtUtils::Typemaps::InputMap'=> undef,
5883             'ExtUtils::Typemaps::OutputMap'=> undef,
5884             'ExtUtils::Typemaps::Type'=> '0.05',
5885             'ExtUtils::testlib'     => '6.58',
5886             'File::Basename'        => '2.83',
5887             'File::Find'            => '1.20',
5888             'HTTP::Tiny'            => '0.013',
5889             'I18N::Langinfo'        => '0.08_02',
5890             'IO::Compress::Adapter::Bzip2'=> '2.037',
5891             'IO::Compress::Adapter::Deflate'=> '2.037',
5892             'IO::Compress::Adapter::Identity'=> '2.037',
5893             'IO::Compress::Base'    => '2.037',
5894             'IO::Compress::Base::Common'=> '2.037',
5895             'IO::Compress::Bzip2'   => '2.037',
5896             'IO::Compress::Deflate' => '2.037',
5897             'IO::Compress::Gzip'    => '2.037',
5898             'IO::Compress::Gzip::Constants'=> '2.037',
5899             'IO::Compress::RawDeflate'=> '2.037',
5900             'IO::Compress::Zip'     => '2.037',
5901             'IO::Compress::Zip::Constants'=> '2.037',
5902             'IO::Compress::Zlib::Constants'=> '2.037',
5903             'IO::Compress::Zlib::Extra'=> '2.037',
5904             'IO::Uncompress::Adapter::Bunzip2'=> '2.037',
5905             'IO::Uncompress::Adapter::Identity'=> '2.037',
5906             'IO::Uncompress::Adapter::Inflate'=> '2.037',
5907             'IO::Uncompress::AnyInflate'=> '2.037',
5908             'IO::Uncompress::AnyUncompress'=> '2.037',
5909             'IO::Uncompress::Base'  => '2.037',
5910             'IO::Uncompress::Bunzip2'=> '2.037',
5911             'IO::Uncompress::Gunzip'=> '2.037',
5912             'IO::Uncompress::Inflate'=> '2.037',
5913             'IO::Uncompress::RawInflate'=> '2.037',
5914             'IO::Uncompress::Unzip' => '2.037',
5915             'IPC::Cmd'              => '0.72',
5916             'Locale::Codes'         => '3.17',
5917             'Locale::Codes::Constants'=> '3.17',
5918             'Locale::Codes::Country'=> '3.17',
5919             'Locale::Codes::Country_Codes'=> '3.17',
5920             'Locale::Codes::Currency'=> '3.17',
5921             'Locale::Codes::Currency_Codes'=> '3.17',
5922             'Locale::Codes::LangExt'=> '3.17',
5923             'Locale::Codes::LangExt_Codes'=> '3.17',
5924             'Locale::Codes::LangVar'=> '3.17',
5925             'Locale::Codes::LangVar_Codes'=> '3.17',
5926             'Locale::Codes::Language'=> '3.17',
5927             'Locale::Codes::Language_Codes'=> '3.17',
5928             'Locale::Codes::Script' => '3.17',
5929             'Locale::Codes::Script_Codes'=> '3.17',
5930             'Locale::Country'       => '3.17',
5931             'Locale::Currency'      => '3.17',
5932             'Locale::Language'      => '3.17',
5933             'Locale::Script'        => '3.17',
5934             'Math::BigFloat::Trace' => '0.28',
5935             'Math::BigInt::FastCalc'=> '0.29',
5936             'Math::BigInt::Trace'   => '0.28',
5937             'Math::BigRat'          => '0.2602',
5938             'Math::Complex'         => '1.58',
5939             'Math::Trig'            => '1.22',
5940             'Module::CoreList'      => '2.54',
5941             'OS2::Process'          => '1.07',
5942             'Pod::Perldoc'          => '3.15_06',
5943             'Pod::Simple'           => '3.18',
5944             'Pod::Simple::BlackBox' => '3.18',
5945             'Pod::Simple::Checker'  => '3.18',
5946             'Pod::Simple::Debug'    => '3.18',
5947             'Pod::Simple::DumpAsText'=> '3.18',
5948             'Pod::Simple::DumpAsXML'=> '3.18',
5949             'Pod::Simple::HTML'     => '3.18',
5950             'Pod::Simple::HTMLBatch'=> '3.18',
5951             'Pod::Simple::LinkSection'=> '3.18',
5952             'Pod::Simple::Methody'  => '3.18',
5953             'Pod::Simple::Progress' => '3.18',
5954             'Pod::Simple::PullParser'=> '3.18',
5955             'Pod::Simple::PullParserEndToken'=> '3.18',
5956             'Pod::Simple::PullParserStartToken'=> '3.18',
5957             'Pod::Simple::PullParserTextToken'=> '3.18',
5958             'Pod::Simple::PullParserToken'=> '3.18',
5959             'Pod::Simple::RTF'      => '3.18',
5960             'Pod::Simple::Search'   => '3.18',
5961             'Pod::Simple::SimpleTree'=> '3.18',
5962             'Pod::Simple::Text'     => '3.18',
5963             'Pod::Simple::TextContent'=> '3.18',
5964             'Pod::Simple::TiedOutFH'=> '3.18',
5965             'Pod::Simple::Transcode'=> '3.18',
5966             'Pod::Simple::TranscodeDumb'=> '3.18',
5967             'Pod::Simple::TranscodeSmart'=> '3.18',
5968             'Pod::Simple::XHTML'    => '3.18',
5969             'Pod::Simple::XMLOutStream'=> '3.18',
5970             'Storable'              => '2.31',
5971             'Sys::Syslog::Win32'    => undef,
5972             'Time::HiRes'           => '1.9724',
5973             'Unicode::Collate'      => '0.77',
5974             'Unicode::UCD'          => '0.33',
5975             'Win32API::File'        => '0.1200',
5976             'XS::APItest'           => '0.30',
5977             'attributes'            => '0.15',
5978             'bigint'                => '0.28',
5979             'bignum'                => '0.28',
5980             'charnames'             => '1.23',
5981             'diagnostics'           => '1.23',
5982             'feature'               => '1.22',
5983             'overload'              => '1.15',
5984             'perlfaq'               => '5.015000',
5985             'threads'               => '1.84',
5986             'version'               => '0.93',
5987         },
5988         removed => {
5989             'ExtUtils::MakeMaker::YAML'=> 1,
5990             'Locale::Constants'     => 1,
5991             'Sys::Syslog::win32::Win32'=> 1,
5992         }
5993     },
5994     5.015002 => {
5995         delta_from => 5.015001,
5996         changed => {
5997             'Attribute::Handlers'   => '0.92',
5998             'B'                     => '1.31',
5999             'B::Concise'            => '0.85',
6000             'B::Deparse'            => '1.07',
6001             'B::Terse'              => '1.06',
6002             'B::Xref'               => '1.03',
6003             'CPAN'                  => '1.9800',
6004             'CPAN::Exception::yaml_process_error'=> '5.5',
6005             'CPAN::Meta'            => '2.112150',
6006             'CPAN::Meta::Converter' => '2.112150',
6007             'CPAN::Meta::Feature'   => '2.112150',
6008             'CPAN::Meta::History'   => '2.112150',
6009             'CPAN::Meta::Prereqs'   => '2.112150',
6010             'CPAN::Meta::Spec'      => '2.112150',
6011             'CPAN::Meta::Validator' => '2.112150',
6012             'CPANPLUS'              => '0.9109',
6013             'CPANPLUS::Internals'   => '0.9109',
6014             'CPANPLUS::Shell::Default'=> '0.9109',
6015             'DB_File'               => '1.824',
6016             'Data::Dumper'          => '2.132',
6017             'Encode'                => '2.44',
6018             'Encode::Alias'         => '2.15',
6019             'Encode::Encoder'       => '2.02',
6020             'Encode::Guess'         => '2.05',
6021             'ExtUtils::Command::MM' => '6.59',
6022             'ExtUtils::Install'     => '1.57',
6023             'ExtUtils::Installed'   => '1.999002',
6024             'ExtUtils::Liblist'     => '6.59',
6025             'ExtUtils::Liblist::Kid'=> '6.59',
6026             'ExtUtils::MM'          => '6.59',
6027             'ExtUtils::MM_AIX'      => '6.59',
6028             'ExtUtils::MM_Any'      => '6.59',
6029             'ExtUtils::MM_BeOS'     => '6.59',
6030             'ExtUtils::MM_Cygwin'   => '6.59',
6031             'ExtUtils::MM_DOS'      => '6.59',
6032             'ExtUtils::MM_Darwin'   => '6.59',
6033             'ExtUtils::MM_MacOS'    => '6.59',
6034             'ExtUtils::MM_NW5'      => '6.59',
6035             'ExtUtils::MM_OS2'      => '6.59',
6036             'ExtUtils::MM_QNX'      => '6.59',
6037             'ExtUtils::MM_UWIN'     => '6.59',
6038             'ExtUtils::MM_Unix'     => '6.59',
6039             'ExtUtils::MM_VMS'      => '6.59',
6040             'ExtUtils::MM_VOS'      => '6.59',
6041             'ExtUtils::MM_Win32'    => '6.59',
6042             'ExtUtils::MM_Win95'    => '6.59',
6043             'ExtUtils::MY'          => '6.59',
6044             'ExtUtils::MakeMaker'   => '6.59',
6045             'ExtUtils::MakeMaker::Config'=> '6.59',
6046             'ExtUtils::Manifest'    => '1.60',
6047             'ExtUtils::Mkbootstrap' => '6.59',
6048             'ExtUtils::Mksymlists'  => '6.59',
6049             'ExtUtils::ParseXS'     => '3.03_01',
6050             'ExtUtils::Typemaps'    => '1.01',
6051             'ExtUtils::testlib'     => '6.59',
6052             'File::Spec'            => '3.34',
6053             'File::Spec::Mac'       => '3.35',
6054             'File::Spec::Unix'      => '3.34',
6055             'File::Spec::VMS'       => '3.35',
6056             'File::Spec::Win32'     => '3.35',
6057             'I18N::LangTags'        => '0.37',
6058             'IO'                    => '1.25_05',
6059             'IO::Handle'            => '1.32',
6060             'IO::Socket'            => '1.33',
6061             'IO::Socket::INET'      => '1.32',
6062             'IPC::Open3'            => '1.12',
6063             'Math::BigFloat'        => '1.995',
6064             'Math::BigFloat::Trace' => '0.29',
6065             'Math::BigInt'          => '1.996',
6066             'Math::BigInt::Trace'   => '0.29',
6067             'Module::Build'         => '0.39_01',
6068             'Module::Build::Base'   => '0.39_01',
6069             'Module::Build::Compat' => '0.39_01',
6070             'Module::Build::Config' => '0.39_01',
6071             'Module::Build::Cookbook'=> '0.39_01',
6072             'Module::Build::Dumper' => '0.39_01',
6073             'Module::Build::ModuleInfo'=> '0.39_01',
6074             'Module::Build::Notes'  => '0.39_01',
6075             'Module::Build::PPMMaker'=> '0.39_01',
6076             'Module::Build::Platform::Amiga'=> '0.39_01',
6077             'Module::Build::Platform::Default'=> '0.39_01',
6078             'Module::Build::Platform::EBCDIC'=> '0.39_01',
6079             'Module::Build::Platform::MPEiX'=> '0.39_01',
6080             'Module::Build::Platform::MacOS'=> '0.39_01',
6081             'Module::Build::Platform::RiscOS'=> '0.39_01',
6082             'Module::Build::Platform::Unix'=> '0.39_01',
6083             'Module::Build::Platform::VMS'=> '0.39_01',
6084             'Module::Build::Platform::VOS'=> '0.39_01',
6085             'Module::Build::Platform::Windows'=> '0.39_01',
6086             'Module::Build::Platform::aix'=> '0.39_01',
6087             'Module::Build::Platform::cygwin'=> '0.39_01',
6088             'Module::Build::Platform::darwin'=> '0.39_01',
6089             'Module::Build::Platform::os2'=> '0.39_01',
6090             'Module::Build::PodParser'=> '0.39_01',
6091             'Module::CoreList'      => '2.55',
6092             'Module::Load'          => '0.20',
6093             'Module::Metadata'      => '1.000005_01',
6094             'Opcode'                => '1.20',
6095             'Params::Check'         => '0.32',
6096             'PerlIO::via'           => '0.12',
6097             'Term::ANSIColor'       => '3.01',
6098             'Unicode::Collate'      => '0.78',
6099             'Unicode::Normalize'    => '1.13',
6100             'Unicode::UCD'          => '0.34',
6101             'bigint'                => '0.29',
6102             'bignum'                => '0.29',
6103             'bigrat'                => '0.29',
6104             'diagnostics'           => '1.24',
6105             'fields'                => '2.16',
6106             'inc::latest'           => '0.39_01',
6107         },
6108         removed => {
6109         }
6110     },
6111     5.015003 => {
6112         delta_from => 5.015002,
6113         changed => {
6114             'AnyDBM_File'           => '1.01',
6115             'Archive::Extract'      => '0.56',
6116             'Archive::Tar'          => '1.78',
6117             'Archive::Tar::Constant'=> '1.78',
6118             'Archive::Tar::File'    => '1.78',
6119             'Attribute::Handlers'   => '0.93',
6120             'B'                     => '1.32',
6121             'B::Concise'            => '0.86',
6122             'B::Deparse'            => '1.08',
6123             'CPAN::Meta'            => '2.112621',
6124             'CPAN::Meta::Converter' => '2.112621',
6125             'CPAN::Meta::Feature'   => '2.112621',
6126             'CPAN::Meta::History'   => '2.112621',
6127             'CPAN::Meta::Prereqs'   => '2.112621',
6128             'CPAN::Meta::Spec'      => '2.112621',
6129             'CPAN::Meta::Validator' => '2.112621',
6130             'CPAN::Meta::YAML'      => '0.004',
6131             'CPANPLUS'              => '0.9111',
6132             'CPANPLUS::Dist::Build' => '0.58',
6133             'CPANPLUS::Dist::Build::Constants'=> '0.58',
6134             'CPANPLUS::Internals'   => '0.9111',
6135             'CPANPLUS::Shell::Default'=> '0.9111',
6136             'Carp'                  => '1.23',
6137             'Carp::Heavy'           => '1.23',
6138             'Data::Dumper'          => '2.134',
6139             'Devel::PPPort'         => '3.20',
6140             'Errno'                 => '1.14',
6141             'Exporter'              => '5.65',
6142             'Exporter::Heavy'       => '5.65',
6143             'ExtUtils::ParseXS'     => '3.04_04',
6144             'ExtUtils::ParseXS::Constants'=> '3.04_04',
6145             'ExtUtils::ParseXS::CountLines'=> '3.04_04',
6146             'ExtUtils::ParseXS::Utilities'=> '3.04_04',
6147             'ExtUtils::Typemaps'    => '1.02',
6148             'File::Glob'            => '1.13',
6149             'Filter::Simple'        => '0.88',
6150             'IO'                    => '1.25_06',
6151             'IO::Handle'            => '1.33',
6152             'Locale::Codes'         => '3.18',
6153             'Locale::Codes::Constants'=> '3.18',
6154             'Locale::Codes::Country'=> '3.18',
6155             'Locale::Codes::Country_Codes'=> '3.18',
6156             'Locale::Codes::Currency'=> '3.18',
6157             'Locale::Codes::Currency_Codes'=> '3.18',
6158             'Locale::Codes::LangExt'=> '3.18',
6159             'Locale::Codes::LangExt_Codes'=> '3.18',
6160             'Locale::Codes::LangVar'=> '3.18',
6161             'Locale::Codes::LangVar_Codes'=> '3.18',
6162             'Locale::Codes::Language'=> '3.18',
6163             'Locale::Codes::Language_Codes'=> '3.18',
6164             'Locale::Codes::Script' => '3.18',
6165             'Locale::Codes::Script_Codes'=> '3.18',
6166             'Locale::Country'       => '3.18',
6167             'Locale::Currency'      => '3.18',
6168             'Locale::Language'      => '3.18',
6169             'Locale::Script'        => '3.18',
6170             'Math::BigFloat'        => '1.997',
6171             'Math::BigInt'          => '1.997',
6172             'Math::BigInt::Calc'    => '1.997',
6173             'Math::BigInt::CalcEmu' => '1.997',
6174             'Math::BigInt::FastCalc'=> '0.30',
6175             'Math::BigRat'          => '0.2603',
6176             'Module::CoreList'      => '2.56',
6177             'Module::Load::Conditional'=> '0.46',
6178             'Module::Metadata'      => '1.000007',
6179             'ODBM_File'             => '1.12',
6180             'POSIX'                 => '1.26',
6181             'Pod::Perldoc'          => '3.15_07',
6182             'Pod::Simple'           => '3.19',
6183             'Pod::Simple::BlackBox' => '3.19',
6184             'Pod::Simple::Checker'  => '3.19',
6185             'Pod::Simple::Debug'    => '3.19',
6186             'Pod::Simple::DumpAsText'=> '3.19',
6187             'Pod::Simple::DumpAsXML'=> '3.19',
6188             'Pod::Simple::HTML'     => '3.19',
6189             'Pod::Simple::HTMLBatch'=> '3.19',
6190             'Pod::Simple::LinkSection'=> '3.19',
6191             'Pod::Simple::Methody'  => '3.19',
6192             'Pod::Simple::Progress' => '3.19',
6193             'Pod::Simple::PullParser'=> '3.19',
6194             'Pod::Simple::PullParserEndToken'=> '3.19',
6195             'Pod::Simple::PullParserStartToken'=> '3.19',
6196             'Pod::Simple::PullParserTextToken'=> '3.19',
6197             'Pod::Simple::PullParserToken'=> '3.19',
6198             'Pod::Simple::RTF'      => '3.19',
6199             'Pod::Simple::Search'   => '3.19',
6200             'Pod::Simple::SimpleTree'=> '3.19',
6201             'Pod::Simple::Text'     => '3.19',
6202             'Pod::Simple::TextContent'=> '3.19',
6203             'Pod::Simple::TiedOutFH'=> '3.19',
6204             'Pod::Simple::Transcode'=> '3.19',
6205             'Pod::Simple::TranscodeDumb'=> '3.19',
6206             'Pod::Simple::TranscodeSmart'=> '3.19',
6207             'Pod::Simple::XHTML'    => '3.19',
6208             'Pod::Simple::XMLOutStream'=> '3.19',
6209             'Search::Dict'          => '1.04',
6210             'Socket'                => '1.94_01',
6211             'Storable'              => '2.32',
6212             'Text::Abbrev'          => '1.02',
6213             'Tie::Array'            => '1.05',
6214             'UNIVERSAL'             => '1.09',
6215             'Unicode::UCD'          => '0.35',
6216             'XS::APItest'           => '0.31',
6217             'XSLoader'              => '0.16',
6218             'attributes'            => '0.16',
6219             'diagnostics'           => '1.25',
6220             'open'                  => '1.09',
6221             'perlfaq'               => '5.0150034',
6222             'threads'               => '1.85',
6223             'threads::shared'       => '1.40',
6224         },
6225         removed => {
6226         }
6227     },
6228     5.015004 => {
6229         delta_from => 5.015003,
6230         changed => {
6231             'Archive::Tar'          => '1.80',
6232             'Archive::Tar::Constant'=> '1.80',
6233             'Archive::Tar::File'    => '1.80',
6234             'Digest'                => '1.17',
6235             'DynaLoader'            => '1.14',
6236             'ExtUtils::Command::MM' => '6.61_01',
6237             'ExtUtils::Liblist'     => '6.61_01',
6238             'ExtUtils::Liblist::Kid'=> '6.61_01',
6239             'ExtUtils::MM'          => '6.61_01',
6240             'ExtUtils::MM_AIX'      => '6.61_01',
6241             'ExtUtils::MM_Any'      => '6.61_01',
6242             'ExtUtils::MM_BeOS'     => '6.61_01',
6243             'ExtUtils::MM_Cygwin'   => '6.61_01',
6244             'ExtUtils::MM_DOS'      => '6.61_01',
6245             'ExtUtils::MM_Darwin'   => '6.61_01',
6246             'ExtUtils::MM_MacOS'    => '6.61_01',
6247             'ExtUtils::MM_NW5'      => '6.61_01',
6248             'ExtUtils::MM_OS2'      => '6.61_01',
6249             'ExtUtils::MM_QNX'      => '6.61_01',
6250             'ExtUtils::MM_UWIN'     => '6.61_01',
6251             'ExtUtils::MM_Unix'     => '6.61_01',
6252             'ExtUtils::MM_VMS'      => '6.61_01',
6253             'ExtUtils::MM_VOS'      => '6.61_01',
6254             'ExtUtils::MM_Win32'    => '6.61_01',
6255             'ExtUtils::MM_Win95'    => '6.61_01',
6256             'ExtUtils::MY'          => '6.61_01',
6257             'ExtUtils::MakeMaker'   => '6.61_01',
6258             'ExtUtils::MakeMaker::Config'=> '6.61_01',
6259             'ExtUtils::Mkbootstrap' => '6.61_01',
6260             'ExtUtils::Mksymlists'  => '6.61_01',
6261             'ExtUtils::ParseXS'     => '3.05',
6262             'ExtUtils::ParseXS::Constants'=> '3.05',
6263             'ExtUtils::ParseXS::CountLines'=> '3.05',
6264             'ExtUtils::ParseXS::Utilities'=> '3.05',
6265             'ExtUtils::testlib'     => '6.61_01',
6266             'File::DosGlob'         => '1.05',
6267             'Module::CoreList'      => '2.57',
6268             'Module::Load'          => '0.22',
6269             'Unicode::Collate'      => '0.80',
6270             'Unicode::Collate::Locale'=> '0.80',
6271             'Unicode::UCD'          => '0.36',
6272             'XS::APItest'           => '0.32',
6273             'XS::Typemap'           => '0.07',
6274             'attributes'            => '0.17',
6275             'base'                  => '2.18',
6276             'constant'              => '1.23',
6277             'mro'                   => '1.09',
6278             'open'                  => '1.10',
6279             'perlfaq'               => '5.0150035',
6280         },
6281         removed => {
6282         }
6283     },
6284     5.015005 => {
6285         delta_from => 5.015004,
6286         changed => {
6287             'Archive::Extract'      => '0.58',
6288             'B::Concise'            => '0.87',
6289             'B::Deparse'            => '1.09',
6290             'CGI'                   => '3.58',
6291             'CGI::Fast'             => '1.09',
6292             'CPANPLUS'              => '0.9112',
6293             'CPANPLUS::Dist::Build' => '0.60',
6294             'CPANPLUS::Dist::Build::Constants'=> '0.60',
6295             'CPANPLUS::Internals'   => '0.9112',
6296             'CPANPLUS::Shell::Default'=> '0.9112',
6297             'Compress::Raw::Bzip2'  => '2.042',
6298             'Compress::Raw::Zlib'   => '2.042',
6299             'Compress::Zlib'        => '2.042',
6300             'Digest::SHA'           => '5.63',
6301             'Errno'                 => '1.15',
6302             'ExtUtils::Command::MM' => '6.63_02',
6303             'ExtUtils::Liblist'     => '6.63_02',
6304             'ExtUtils::Liblist::Kid'=> '6.63_02',
6305             'ExtUtils::MM'          => '6.63_02',
6306             'ExtUtils::MM_AIX'      => '6.63_02',
6307             'ExtUtils::MM_Any'      => '6.63_02',
6308             'ExtUtils::MM_BeOS'     => '6.63_02',
6309             'ExtUtils::MM_Cygwin'   => '6.63_02',
6310             'ExtUtils::MM_DOS'      => '6.63_02',
6311             'ExtUtils::MM_Darwin'   => '6.63_02',
6312             'ExtUtils::MM_MacOS'    => '6.63_02',
6313             'ExtUtils::MM_NW5'      => '6.63_02',
6314             'ExtUtils::MM_OS2'      => '6.63_02',
6315             'ExtUtils::MM_QNX'      => '6.63_02',
6316             'ExtUtils::MM_UWIN'     => '6.63_02',
6317             'ExtUtils::MM_Unix'     => '6.63_02',
6318             'ExtUtils::MM_VMS'      => '6.63_02',
6319             'ExtUtils::MM_VOS'      => '6.63_02',
6320             'ExtUtils::MM_Win32'    => '6.63_02',
6321             'ExtUtils::MM_Win95'    => '6.63_02',
6322             'ExtUtils::MY'          => '6.63_02',
6323             'ExtUtils::MakeMaker'   => '6.63_02',
6324             'ExtUtils::MakeMaker::Config'=> '6.63_02',
6325             'ExtUtils::Mkbootstrap' => '6.63_02',
6326             'ExtUtils::Mksymlists'  => '6.63_02',
6327             'ExtUtils::testlib'     => '6.63_02',
6328             'File::DosGlob'         => '1.06',
6329             'File::Glob'            => '1.14',
6330             'HTTP::Tiny'            => '0.016',
6331             'IO::Compress::Adapter::Bzip2'=> '2.042',
6332             'IO::Compress::Adapter::Deflate'=> '2.042',
6333             'IO::Compress::Adapter::Identity'=> '2.042',
6334             'IO::Compress::Base'    => '2.042',
6335             'IO::Compress::Base::Common'=> '2.042',
6336             'IO::Compress::Bzip2'   => '2.042',
6337             'IO::Compress::Deflate' => '2.042',
6338             'IO::Compress::Gzip'    => '2.042',
6339             'IO::Compress::Gzip::Constants'=> '2.042',
6340             'IO::Compress::RawDeflate'=> '2.042',
6341             'IO::Compress::Zip'     => '2.042',
6342             'IO::Compress::Zip::Constants'=> '2.042',
6343             'IO::Compress::Zlib::Constants'=> '2.042',
6344             'IO::Compress::Zlib::Extra'=> '2.042',
6345             'IO::Uncompress::Adapter::Bunzip2'=> '2.042',
6346             'IO::Uncompress::Adapter::Identity'=> '2.042',
6347             'IO::Uncompress::Adapter::Inflate'=> '2.042',
6348             'IO::Uncompress::AnyInflate'=> '2.042',
6349             'IO::Uncompress::AnyUncompress'=> '2.042',
6350             'IO::Uncompress::Base'  => '2.042',
6351             'IO::Uncompress::Bunzip2'=> '2.042',
6352             'IO::Uncompress::Gunzip'=> '2.042',
6353             'IO::Uncompress::Inflate'=> '2.042',
6354             'IO::Uncompress::RawInflate'=> '2.042',
6355             'IO::Uncompress::Unzip' => '2.042',
6356             'Locale::Maketext'      => '1.20',
6357             'Locale::Maketext::Guts'=> '1.20',
6358             'Locale::Maketext::GutsLoader'=> '1.20',
6359             'Module::CoreList'      => '2.58',
6360             'Opcode'                => '1.21',
6361             'Socket'                => '1.94_02',
6362             'Storable'              => '2.33',
6363             'UNIVERSAL'             => '1.10',
6364             'Unicode::Collate'      => '0.85',
6365             'Unicode::Collate::CJK::Pinyin'=> '0.85',
6366             'Unicode::Collate::CJK::Stroke'=> '0.85',
6367             'Unicode::Collate::Locale'=> '0.85',
6368             'Unicode::UCD'          => '0.37',
6369             'XS::APItest'           => '0.33',
6370             'arybase'               => '0.01',
6371             'charnames'             => '1.24',
6372             'feature'               => '1.23',
6373             'perlfaq'               => '5.0150036',
6374             'strict'                => '1.05',
6375             'unicore::Name'         => undef,
6376         },
6377         removed => {
6378         }
6379     },
6380     5.015006 => {
6381         delta_from => 5.015005,
6382         changed => {
6383             'Archive::Tar'          => '1.82',
6384             'Archive::Tar::Constant'=> '1.82',
6385             'Archive::Tar::File'    => '1.82',
6386             'AutoLoader'            => '5.72',
6387             'B::Concise'            => '0.88',
6388             'B::Debug'              => '1.17',
6389             'B::Deparse'            => '1.10',
6390             'CPAN::Meta::YAML'      => '0.005',
6391             'CPANPLUS'              => '0.9113',
6392             'CPANPLUS::Internals'   => '0.9113',
6393             'CPANPLUS::Shell::Default'=> '0.9113',
6394             'Carp'                  => '1.24',
6395             'Compress::Raw::Bzip2'  => '2.045',
6396             'Compress::Raw::Zlib'   => '2.045',
6397             'Compress::Zlib'        => '2.045',
6398             'Cwd'                   => '3.38',
6399             'DB'                    => '1.04',
6400             'Data::Dumper'          => '2.135_01',
6401             'Digest::SHA'           => '5.70',
6402             'Dumpvalue'             => '1.17',
6403             'Exporter'              => '5.66',
6404             'Exporter::Heavy'       => '5.66',
6405             'ExtUtils::CBuilder'    => '0.280205',
6406             'ExtUtils::CBuilder::Platform::os2'=> '0.280204',
6407             'ExtUtils::Packlist'    => '1.45',
6408             'ExtUtils::ParseXS'     => '3.08',
6409             'ExtUtils::ParseXS::Constants'=> '3.08',
6410             'ExtUtils::ParseXS::CountLines'=> '3.08',
6411             'ExtUtils::ParseXS::Utilities'=> '3.08',
6412             'File::Basename'        => '2.84',
6413             'File::Glob'            => '1.15',
6414             'File::Spec::Unix'      => '3.35',
6415             'Getopt::Std'           => '1.07',
6416             'I18N::LangTags'        => '0.38',
6417             'IO::Compress::Adapter::Bzip2'=> '2.045',
6418             'IO::Compress::Adapter::Deflate'=> '2.045',
6419             'IO::Compress::Adapter::Identity'=> '2.045',
6420             'IO::Compress::Base'    => '2.046',
6421             'IO::Compress::Base::Common'=> '2.045',
6422             'IO::Compress::Bzip2'   => '2.045',
6423             'IO::Compress::Deflate' => '2.045',
6424             'IO::Compress::Gzip'    => '2.045',
6425             'IO::Compress::Gzip::Constants'=> '2.045',
6426             'IO::Compress::RawDeflate'=> '2.045',
6427             'IO::Compress::Zip'     => '2.046',
6428             'IO::Compress::Zip::Constants'=> '2.045',
6429             'IO::Compress::Zlib::Constants'=> '2.045',
6430             'IO::Compress::Zlib::Extra'=> '2.045',
6431             'IO::Dir'               => '1.09',
6432             'IO::File'              => '1.16',
6433             'IO::Uncompress::Adapter::Bunzip2'=> '2.045',
6434             'IO::Uncompress::Adapter::Identity'=> '2.045',
6435             'IO::Uncompress::Adapter::Inflate'=> '2.045',
6436             'IO::Uncompress::AnyInflate'=> '2.045',
6437             'IO::Uncompress::AnyUncompress'=> '2.045',
6438             'IO::Uncompress::Base'  => '2.046',
6439             'IO::Uncompress::Bunzip2'=> '2.045',
6440             'IO::Uncompress::Gunzip'=> '2.045',
6441             'IO::Uncompress::Inflate'=> '2.045',
6442             'IO::Uncompress::RawInflate'=> '2.045',
6443             'IO::Uncompress::Unzip' => '2.046',
6444             'Locale::Codes'         => '3.20',
6445             'Locale::Codes::Constants'=> '3.20',
6446             'Locale::Codes::Country'=> '3.20',
6447             'Locale::Codes::Country_Codes'=> '3.20',
6448             'Locale::Codes::Country_Retired'=> '3.20',
6449             'Locale::Codes::Currency'=> '3.20',
6450             'Locale::Codes::Currency_Codes'=> '3.20',
6451             'Locale::Codes::Currency_Retired'=> '3.20',
6452             'Locale::Codes::LangExt'=> '3.20',
6453             'Locale::Codes::LangExt_Codes'=> '3.20',
6454             'Locale::Codes::LangExt_Retired'=> '3.20',
6455             'Locale::Codes::LangFam'=> '3.20',
6456             'Locale::Codes::LangFam_Codes'=> '3.20',
6457             'Locale::Codes::LangFam_Retired'=> '3.20',
6458             'Locale::Codes::LangVar'=> '3.20',
6459             'Locale::Codes::LangVar_Codes'=> '3.20',
6460             'Locale::Codes::LangVar_Retired'=> '3.20',
6461             'Locale::Codes::Language'=> '3.20',
6462             'Locale::Codes::Language_Codes'=> '3.20',
6463             'Locale::Codes::Language_Retired'=> '3.20',
6464             'Locale::Codes::Script' => '3.20',
6465             'Locale::Codes::Script_Codes'=> '3.20',
6466             'Locale::Codes::Script_Retired'=> '3.20',
6467             'Locale::Country'       => '3.20',
6468             'Locale::Currency'      => '3.20',
6469             'Locale::Language'      => '3.20',
6470             'Locale::Maketext'      => '1.21',
6471             'Locale::Script'        => '3.20',
6472             'Module::CoreList'      => '2.59',
6473             'Module::Loaded'        => '0.08',
6474             'Opcode'                => '1.22',
6475             'POSIX'                 => '1.27',
6476             'Pod::Html'             => '1.12',
6477             'Pod::LaTeX'            => '0.60',
6478             'Pod::Perldoc'          => '3.15_08',
6479             'Safe'                  => '2.30',
6480             'SelfLoader'            => '1.20',
6481             'Socket'                => '1.97',
6482             'Storable'              => '2.34',
6483             'UNIVERSAL'             => '1.11',
6484             'Unicode::Collate'      => '0.87',
6485             'Unicode::Collate::Locale'=> '0.87',
6486             'XS::APItest'           => '0.34',
6487             'arybase'               => '0.02',
6488             'charnames'             => '1.27',
6489             'diagnostics'           => '1.26',
6490             'feature'               => '1.24',
6491             'if'                    => '0.0602',
6492             'overload'              => '1.16',
6493             'sigtrap'               => '1.06',
6494             'strict'                => '1.06',
6495             'threads'               => '1.86',
6496             'version'               => '0.96',
6497         },
6498         removed => {
6499         }
6500     },
6501     5.015007 => {
6502         delta_from => 5.015006,
6503         changed => {
6504             'B'                     => '1.33',
6505             'B::Deparse'            => '1.11',
6506             'CGI'                   => '3.59',
6507             'CPAN::Meta'            => '2.113640',
6508             'CPAN::Meta::Converter' => '2.113640',
6509             'CPAN::Meta::Feature'   => '2.113640',
6510             'CPAN::Meta::History'   => '2.113640',
6511             'CPAN::Meta::Prereqs'   => '2.113640',
6512             'CPAN::Meta::Requirements'=> '2.113640',
6513             'CPAN::Meta::Spec'      => '2.113640',
6514             'CPAN::Meta::Validator' => '2.113640',
6515             'CPANPLUS'              => '0.9116',
6516             'CPANPLUS::Internals'   => '0.9116',
6517             'CPANPLUS::Shell::Default'=> '0.9116',
6518             'Cwd'                   => '3.39_01',
6519             'Data::Dumper'          => '2.135_03',
6520             'Devel::InnerPackage'   => '0.4',
6521             'ExtUtils::CBuilder::Base'=> '0.280205',
6522             'ExtUtils::CBuilder::Platform::Unix'=> '0.280205',
6523             'ExtUtils::CBuilder::Platform::VMS'=> '0.280205',
6524             'ExtUtils::CBuilder::Platform::Windows'=> '0.280205',
6525             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280205',
6526             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280205',
6527             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280205',
6528             'ExtUtils::CBuilder::Platform::aix'=> '0.280205',
6529             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280205',
6530             'ExtUtils::CBuilder::Platform::darwin'=> '0.280205',
6531             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280205',
6532             'ExtUtils::CBuilder::Platform::os2'=> '0.280205',
6533             'ExtUtils::Manifest'    => '1.61',
6534             'ExtUtils::Packlist'    => '1.46',
6535             'ExtUtils::ParseXS'     => '3.12',
6536             'ExtUtils::ParseXS::Constants'=> '3.12',
6537             'ExtUtils::ParseXS::CountLines'=> '3.12',
6538             'ExtUtils::ParseXS::Utilities'=> '3.12',
6539             'ExtUtils::Typemaps'    => '1.03',
6540             'ExtUtils::Typemaps::Cmd'=> undef,
6541             'ExtUtils::Typemaps::Type'=> '0.06',
6542             'File::Glob'            => '1.16',
6543             'File::Spec'            => '3.39_01',
6544             'File::Spec::Cygwin'    => '3.39_01',
6545             'File::Spec::Epoc'      => '3.39_01',
6546             'File::Spec::Functions' => '3.39_01',
6547             'File::Spec::Mac'       => '3.39_01',
6548             'File::Spec::OS2'       => '3.39_01',
6549             'File::Spec::Unix'      => '3.39_01',
6550             'File::Spec::VMS'       => '3.39_01',
6551             'File::Spec::Win32'     => '3.39_01',
6552             'IO::Dir'               => '1.10',
6553             'IO::Pipe'              => '1.15',
6554             'IO::Poll'              => '0.09',
6555             'IO::Select'            => '1.21',
6556             'IO::Socket'            => '1.34',
6557             'IO::Socket::INET'      => '1.33',
6558             'IO::Socket::UNIX'      => '1.24',
6559             'Locale::Maketext'      => '1.22',
6560             'Math::BigInt'          => '1.998',
6561             'Module::CoreList'      => '2.60',
6562             'Module::Pluggable'     => '4.0',
6563             'POSIX'                 => '1.28',
6564             'PerlIO::scalar'        => '0.13',
6565             'Pod::Html'             => '1.13',
6566             'Pod::Perldoc'          => '3.15_15',
6567             'Pod::Perldoc::BaseTo'  => '3.15_15',
6568             'Pod::Perldoc::GetOptsOO'=> '3.15_15',
6569             'Pod::Perldoc::ToANSI'  => '3.15_15',
6570             'Pod::Perldoc::ToChecker'=> '3.15_15',
6571             'Pod::Perldoc::ToMan'   => '3.15_15',
6572             'Pod::Perldoc::ToNroff' => '3.15_15',
6573             'Pod::Perldoc::ToPod'   => '3.15_15',
6574             'Pod::Perldoc::ToRtf'   => '3.15_15',
6575             'Pod::Perldoc::ToTerm'  => '3.15_15',
6576             'Pod::Perldoc::ToText'  => '3.15_15',
6577             'Pod::Perldoc::ToTk'    => '3.15_15',
6578             'Pod::Perldoc::ToXml'   => '3.15_15',
6579             'Term::UI'              => '0.30',
6580             'Tie::File'             => '0.98',
6581             'Unicode::UCD'          => '0.39',
6582             'Version::Requirements' => '0.101021',
6583             'XS::APItest'           => '0.35',
6584             '_charnames'            => '1.28',
6585             'arybase'               => '0.03',
6586             'autouse'               => '1.07',
6587             'charnames'             => '1.28',
6588             'diagnostics'           => '1.27',
6589             'feature'               => '1.25',
6590             'overload'              => '1.17',
6591             'overloading'           => '0.02',
6592             'perlfaq'               => '5.0150038',
6593         },
6594         removed => {
6595         }
6596     },
6597     5.015008 => {
6598         delta_from => 5.015007,
6599         changed => {
6600             'B'                     => '1.34',
6601             'B::Deparse'            => '1.12',
6602             'CPAN::Meta'            => '2.120351',
6603             'CPAN::Meta::Converter' => '2.120351',
6604             'CPAN::Meta::Feature'   => '2.120351',
6605             'CPAN::Meta::History'   => '2.120351',
6606             'CPAN::Meta::Prereqs'   => '2.120351',
6607             'CPAN::Meta::Requirements'=> '2.120351',
6608             'CPAN::Meta::Spec'      => '2.120351',
6609             'CPAN::Meta::Validator' => '2.120351',
6610             'CPAN::Meta::YAML'      => '0.007',
6611             'CPANPLUS'              => '0.9118',
6612             'CPANPLUS::Dist::Build' => '0.62',
6613             'CPANPLUS::Dist::Build::Constants'=> '0.62',
6614             'CPANPLUS::Internals'   => '0.9118',
6615             'CPANPLUS::Shell::Default'=> '0.9118',
6616             'Carp'                  => '1.25',
6617             'Carp::Heavy'           => '1.25',
6618             'Compress::Raw::Bzip2'  => '2.048',
6619             'Compress::Raw::Zlib'   => '2.048',
6620             'Compress::Zlib'        => '2.048',
6621             'Cwd'                   => '3.39_02',
6622             'DB_File'               => '1.826',
6623             'Data::Dumper'          => '2.135_05',
6624             'English'               => '1.05',
6625             'ExtUtils::Install'     => '1.58',
6626             'ExtUtils::ParseXS'     => '3.16',
6627             'ExtUtils::ParseXS::Constants'=> '3.16',
6628             'ExtUtils::ParseXS::CountLines'=> '3.16',
6629             'ExtUtils::ParseXS::Utilities'=> '3.16',
6630             'ExtUtils::Typemaps'    => '3.16',
6631             'ExtUtils::Typemaps::Cmd'=> '3.16',
6632             'ExtUtils::Typemaps::InputMap'=> '3.16',
6633             'ExtUtils::Typemaps::OutputMap'=> '3.16',
6634             'ExtUtils::Typemaps::Type'=> '3.16',
6635             'File::Copy'            => '2.23',
6636             'File::Glob'            => '1.17',
6637             'File::Spec'            => '3.39_02',
6638             'File::Spec::Cygwin'    => '3.39_02',
6639             'File::Spec::Epoc'      => '3.39_02',
6640             'File::Spec::Functions' => '3.39_02',
6641             'File::Spec::Mac'       => '3.39_02',
6642             'File::Spec::OS2'       => '3.39_02',
6643             'File::Spec::Unix'      => '3.39_02',
6644             'File::Spec::VMS'       => '3.39_02',
6645             'File::Spec::Win32'     => '3.39_02',
6646             'Filter::Util::Call'    => '1.40',
6647             'IO::Compress::Adapter::Bzip2'=> '2.048',
6648             'IO::Compress::Adapter::Deflate'=> '2.048',
6649             'IO::Compress::Adapter::Identity'=> '2.048',
6650             'IO::Compress::Base'    => '2.048',
6651             'IO::Compress::Base::Common'=> '2.048',
6652             'IO::Compress::Bzip2'   => '2.048',
6653             'IO::Compress::Deflate' => '2.048',
6654             'IO::Compress::Gzip'    => '2.048',
6655             'IO::Compress::Gzip::Constants'=> '2.048',
6656             'IO::Compress::RawDeflate'=> '2.048',
6657             'IO::Compress::Zip'     => '2.048',
6658             'IO::Compress::Zip::Constants'=> '2.048',
6659             'IO::Compress::Zlib::Constants'=> '2.048',
6660             'IO::Compress::Zlib::Extra'=> '2.048',
6661             'IO::Uncompress::Adapter::Bunzip2'=> '2.048',
6662             'IO::Uncompress::Adapter::Identity'=> '2.048',
6663             'IO::Uncompress::Adapter::Inflate'=> '2.048',
6664             'IO::Uncompress::AnyInflate'=> '2.048',
6665             'IO::Uncompress::AnyUncompress'=> '2.048',
6666             'IO::Uncompress::Base'  => '2.048',
6667             'IO::Uncompress::Bunzip2'=> '2.048',
6668             'IO::Uncompress::Gunzip'=> '2.048',
6669             'IO::Uncompress::Inflate'=> '2.048',
6670             'IO::Uncompress::RawInflate'=> '2.048',
6671             'IO::Uncompress::Unzip' => '2.048',
6672             'IPC::Cmd'              => '0.76',
6673             'Math::Complex'         => '1.59',
6674             'Math::Trig'            => '1.23',
6675             'Module::Metadata'      => '1.000009',
6676             'Opcode'                => '1.23',
6677             'POSIX'                 => '1.30',
6678             'Parse::CPAN::Meta'     => '1.4402',
6679             'PerlIO::mmap'          => '0.010',
6680             'Pod::Checker'          => '1.51',
6681             'Pod::Find'             => '1.51',
6682             'Pod::Functions'        => '1.05',
6683             'Pod::Html'             => '1.14',
6684             'Pod::InputObjects'     => '1.51',
6685             'Pod::ParseUtils'       => '1.51',
6686             'Pod::Parser'           => '1.51',
6687             'Pod::PlainText'        => '2.05',
6688             'Pod::Select'           => '1.51',
6689             'Pod::Usage'            => '1.51',
6690             'Safe'                  => '2.31',
6691             'Socket'                => '1.98',
6692             'Term::Cap'             => '1.13',
6693             'Term::ReadLine'        => '1.08',
6694             'Time::HiRes'           => '1.9725',
6695             'Unicode'               => '6.1.0',
6696             'Unicode::UCD'          => '0.41',
6697             'Version::Requirements' => '0.101022',
6698             'XS::APItest'           => '0.36',
6699             'XS::Typemap'           => '0.08',
6700             '_charnames'            => '1.29',
6701             'arybase'               => '0.04',
6702             'charnames'             => '1.29',
6703             'diagnostics'           => '1.28',
6704             'feature'               => '1.26',
6705             'locale'                => '1.01',
6706             'overload'              => '1.18',
6707             'perlfaq'               => '5.0150039',
6708             're'                    => '0.19',
6709             'subs'                  => '1.01',
6710             'warnings'              => '1.13',
6711         },
6712         removed => {
6713         }
6714     },
6715     5.015009 => {
6716         delta_from => 5.015008,
6717         changed => {
6718             'B::Deparse'            => '1.13',
6719             'B::Lint'               => '1.14',
6720             'B::Lint::Debug'        => '1.14',
6721             'CPAN::Meta'            => '2.120630',
6722             'CPAN::Meta::Converter' => '2.120630',
6723             'CPAN::Meta::Feature'   => '2.120630',
6724             'CPAN::Meta::History'   => '2.120630',
6725             'CPAN::Meta::Prereqs'   => '2.120630',
6726             'CPAN::Meta::Requirements'=> '2.120630',
6727             'CPAN::Meta::Spec'      => '2.120630',
6728             'CPAN::Meta::Validator' => '2.120630',
6729             'CPANPLUS'              => '0.9121',
6730             'CPANPLUS::Internals'   => '0.9121',
6731             'CPANPLUS::Shell::Default'=> '0.9121',
6732             'Data::Dumper'          => '2.135_06',
6733             'Digest::SHA'           => '5.71',
6734             'ExtUtils::CBuilder'    => '0.280206',
6735             'ExtUtils::CBuilder::Base'=> '0.280206',
6736             'ExtUtils::CBuilder::Platform::Unix'=> '0.280206',
6737             'ExtUtils::CBuilder::Platform::VMS'=> '0.280206',
6738             'ExtUtils::CBuilder::Platform::Windows'=> '0.280206',
6739             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280206',
6740             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280206',
6741             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280206',
6742             'ExtUtils::CBuilder::Platform::aix'=> '0.280206',
6743             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280206',
6744             'ExtUtils::CBuilder::Platform::darwin'=> '0.280206',
6745             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280206',
6746             'ExtUtils::CBuilder::Platform::os2'=> '0.280206',
6747             'HTTP::Tiny'            => '0.017',
6748             'Locale::Codes'         => '3.21',
6749             'Locale::Codes::Constants'=> '3.21',
6750             'Locale::Codes::Country'=> '3.21',
6751             'Locale::Codes::Country_Codes'=> '3.21',
6752             'Locale::Codes::Country_Retired'=> '3.21',
6753             'Locale::Codes::Currency'=> '3.21',
6754             'Locale::Codes::Currency_Codes'=> '3.21',
6755             'Locale::Codes::Currency_Retired'=> '3.21',
6756             'Locale::Codes::LangExt'=> '3.21',
6757             'Locale::Codes::LangExt_Codes'=> '3.21',
6758             'Locale::Codes::LangExt_Retired'=> '3.21',
6759             'Locale::Codes::LangFam'=> '3.21',
6760             'Locale::Codes::LangFam_Codes'=> '3.21',
6761             'Locale::Codes::LangFam_Retired'=> '3.21',
6762             'Locale::Codes::LangVar'=> '3.21',
6763             'Locale::Codes::LangVar_Codes'=> '3.21',
6764             'Locale::Codes::LangVar_Retired'=> '3.21',
6765             'Locale::Codes::Language'=> '3.21',
6766             'Locale::Codes::Language_Codes'=> '3.21',
6767             'Locale::Codes::Language_Retired'=> '3.21',
6768             'Locale::Codes::Script' => '3.21',
6769             'Locale::Codes::Script_Codes'=> '3.21',
6770             'Locale::Codes::Script_Retired'=> '3.21',
6771             'Locale::Country'       => '3.21',
6772             'Locale::Currency'      => '3.21',
6773             'Locale::Language'      => '3.21',
6774             'Locale::Script'        => '3.21',
6775             'Module::CoreList'      => '2.65',
6776             'Pod::Html'             => '1.1501',
6777             'Pod::Perldoc'          => '3.17',
6778             'Pod::Perldoc::BaseTo'  => '3.17',
6779             'Pod::Perldoc::GetOptsOO'=> '3.17',
6780             'Pod::Perldoc::ToANSI'  => '3.17',
6781             'Pod::Perldoc::ToChecker'=> '3.17',
6782             'Pod::Perldoc::ToMan'   => '3.17',
6783             'Pod::Perldoc::ToNroff' => '3.17',
6784             'Pod::Perldoc::ToPod'   => '3.17',
6785             'Pod::Perldoc::ToRtf'   => '3.17',
6786             'Pod::Perldoc::ToTerm'  => '3.17',
6787             'Pod::Perldoc::ToText'  => '3.17',
6788             'Pod::Perldoc::ToTk'    => '3.17',
6789             'Pod::Perldoc::ToXml'   => '3.17',
6790             'Pod::Simple'           => '3.20',
6791             'Pod::Simple::BlackBox' => '3.20',
6792             'Pod::Simple::Checker'  => '3.20',
6793             'Pod::Simple::Debug'    => '3.20',
6794             'Pod::Simple::DumpAsText'=> '3.20',
6795             'Pod::Simple::DumpAsXML'=> '3.20',
6796             'Pod::Simple::HTML'     => '3.20',
6797             'Pod::Simple::HTMLBatch'=> '3.20',
6798             'Pod::Simple::LinkSection'=> '3.20',
6799             'Pod::Simple::Methody'  => '3.20',
6800             'Pod::Simple::Progress' => '3.20',
6801             'Pod::Simple::PullParser'=> '3.20',
6802             'Pod::Simple::PullParserEndToken'=> '3.20',
6803             'Pod::Simple::PullParserStartToken'=> '3.20',
6804             'Pod::Simple::PullParserTextToken'=> '3.20',
6805             'Pod::Simple::PullParserToken'=> '3.20',
6806             'Pod::Simple::RTF'      => '3.20',
6807             'Pod::Simple::Search'   => '3.20',
6808             'Pod::Simple::SimpleTree'=> '3.20',
6809             'Pod::Simple::Text'     => '3.20',
6810             'Pod::Simple::TextContent'=> '3.20',
6811             'Pod::Simple::TiedOutFH'=> '3.20',
6812             'Pod::Simple::Transcode'=> '3.20',
6813             'Pod::Simple::TranscodeDumb'=> '3.20',
6814             'Pod::Simple::TranscodeSmart'=> '3.20',
6815             'Pod::Simple::XHTML'    => '3.20',
6816             'Pod::Simple::XMLOutStream'=> '3.20',
6817             'Socket'                => '2.000',
6818             'Term::ReadLine'        => '1.09',
6819             'Unicode::Collate'      => '0.89',
6820             'Unicode::Collate::CJK::Korean'=> '0.88',
6821             'Unicode::Collate::Locale'=> '0.89',
6822             'Unicode::Normalize'    => '1.14',
6823             'Unicode::UCD'          => '0.42',
6824             'XS::APItest'           => '0.37',
6825             'arybase'               => '0.05',
6826             'attributes'            => '0.18',
6827             'charnames'             => '1.30',
6828             'feature'               => '1.27',
6829         },
6830         removed => {
6831         }
6832     },
6833     5.016 => {
6834         delta_from => 5.015009,
6835         changed => {
6836             'B::Concise'            => '0.89',
6837             'B::Deparse'            => '1.14',
6838             'Carp'                  => '1.26',
6839             'Carp::Heavy'           => '1.26',
6840             'IO::Socket'            => '1.35',
6841             'Module::CoreList'      => '2.66',
6842             'PerlIO::scalar'        => '0.14',
6843             'Pod::Html'             => '1.1502',
6844             'Safe'                  => '2.31_01',
6845             'Socket'                => '2.001',
6846             'Unicode::UCD'          => '0.43',
6847             'XS::APItest'           => '0.38',
6848             '_charnames'            => '1.31',
6849             'attributes'            => '0.19',
6850             'strict'                => '1.07',
6851             'version'               => '0.99',
6852         },
6853         removed => {
6854         }
6855     },
6856     5.016001 => {
6857         delta_from => 5.016,
6858         changed => {
6859             'B'                     => '1.35',
6860             'B::Deparse'            => '1.14_01',
6861             'List::Util'            => '1.25',
6862             'List::Util::PP'        => '1.25',
6863             'List::Util::XS'        => '1.25',
6864             'Module::CoreList'      => '2.70',
6865             'PerlIO::scalar'        => '0.14_01',
6866             'Scalar::Util'          => '1.25',
6867             'Scalar::Util::PP'      => '1.25',
6868             're'                    => '0.19_01',
6869         },
6870         removed => {
6871         }
6872     },
6873     5.016002 => {
6874         delta_from => 5.016001,
6875         changed => {
6876             'Module::CoreList'      => '2.76',
6877         },
6878         removed => {
6879         }
6880     },
6881     5.016003 => {
6882         delta_from => 5.016002,
6883         changed => {
6884             'Encode'                => '2.44_01',
6885             'Module::CoreList'      => '2.76_02',
6886             'XS::APItest'           => '0.39',
6887         },
6888         removed => {
6889         }
6890     },
6891     5.017 => {
6892         delta_from => 5.016,
6893         changed => {
6894             'B'                     => '1.35',
6895             'B::Concise'            => '0.90',
6896             'ExtUtils::ParseXS'     => '3.17',
6897             'ExtUtils::ParseXS::Utilities'=> '3.17',
6898             'File::DosGlob'         => '1.07',
6899             'File::Find'            => '1.21',
6900             'File::stat'            => '1.06',
6901             'Hash::Util'            => '0.12',
6902             'IO::Socket'            => '1.34',
6903             'Module::CoreList'      => '2.67',
6904             'Pod::Functions'        => '1.06',
6905             'Storable'              => '2.35',
6906             'XS::APItest'           => '0.39',
6907             'diagnostics'           => '1.29',
6908             'feature'               => '1.28',
6909             'overload'              => '1.19',
6910             'utf8'                  => '1.10',
6911         },
6912         removed => {
6913             'Version::Requirements' => 1,
6914         }
6915     },
6916     5.017001 => {
6917         delta_from => 5.017,
6918         changed => {
6919             'App::Prove'            => '3.25',
6920             'App::Prove::State'     => '3.25',
6921             'App::Prove::State::Result'=> '3.25',
6922             'App::Prove::State::Result::Test'=> '3.25',
6923             'Archive::Extract'      => '0.60',
6924             'Archive::Tar'          => '1.88',
6925             'Archive::Tar::Constant'=> '1.88',
6926             'Archive::Tar::File'    => '1.88',
6927             'B'                     => '1.36',
6928             'B::Deparse'            => '1.15',
6929             'CPAN::Meta'            => '2.120921',
6930             'CPAN::Meta::Converter' => '2.120921',
6931             'CPAN::Meta::Feature'   => '2.120921',
6932             'CPAN::Meta::History'   => '2.120921',
6933             'CPAN::Meta::Prereqs'   => '2.120921',
6934             'CPAN::Meta::Requirements'=> '2.122',
6935             'CPAN::Meta::Spec'      => '2.120921',
6936             'CPAN::Meta::Validator' => '2.120921',
6937             'CPAN::Meta::YAML'      => '0.008',
6938             'CPANPLUS'              => '0.9130',
6939             'CPANPLUS::Config::HomeEnv'=> '0.04',
6940             'CPANPLUS::Internals'   => '0.9130',
6941             'CPANPLUS::Shell::Default'=> '0.9130',
6942             'Class::Struct'         => '0.64',
6943             'Compress::Raw::Bzip2'  => '2.052',
6944             'Compress::Raw::Zlib'   => '2.054',
6945             'Compress::Zlib'        => '2.052',
6946             'Digest::MD5'           => '2.52',
6947             'DynaLoader'            => '1.15',
6948             'ExtUtils::CBuilder'    => '0.280208',
6949             'ExtUtils::CBuilder::Base'=> '0.280208',
6950             'ExtUtils::CBuilder::Platform::Unix'=> '0.280208',
6951             'ExtUtils::CBuilder::Platform::VMS'=> '0.280208',
6952             'ExtUtils::CBuilder::Platform::Windows'=> '0.280208',
6953             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280208',
6954             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280208',
6955             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280208',
6956             'ExtUtils::CBuilder::Platform::aix'=> '0.280208',
6957             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280208',
6958             'ExtUtils::CBuilder::Platform::darwin'=> '0.280208',
6959             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280208',
6960             'ExtUtils::CBuilder::Platform::os2'=> '0.280208',
6961             'Fatal'                 => '2.11',
6962             'File::DosGlob'         => '1.08',
6963             'File::Fetch'           => '0.34',
6964             'File::Spec::Unix'      => '3.39_03',
6965             'Filter::Util::Call'    => '1.45',
6966             'HTTP::Tiny'            => '0.022',
6967             'IO'                    => '1.25_07',
6968             'IO::Compress::Adapter::Bzip2'=> '2.052',
6969             'IO::Compress::Adapter::Deflate'=> '2.052',
6970             'IO::Compress::Adapter::Identity'=> '2.052',
6971             'IO::Compress::Base'    => '2.052',
6972             'IO::Compress::Base::Common'=> '2.052',
6973             'IO::Compress::Bzip2'   => '2.052',
6974             'IO::Compress::Deflate' => '2.052',
6975             'IO::Compress::Gzip'    => '2.052',
6976             'IO::Compress::Gzip::Constants'=> '2.052',
6977             'IO::Compress::RawDeflate'=> '2.052',
6978             'IO::Compress::Zip'     => '2.052',
6979             'IO::Compress::Zip::Constants'=> '2.052',
6980             'IO::Compress::Zlib::Constants'=> '2.052',
6981             'IO::Compress::Zlib::Extra'=> '2.052',
6982             'IO::Uncompress::Adapter::Bunzip2'=> '2.052',
6983             'IO::Uncompress::Adapter::Identity'=> '2.052',
6984             'IO::Uncompress::Adapter::Inflate'=> '2.052',
6985             'IO::Uncompress::AnyInflate'=> '2.052',
6986             'IO::Uncompress::AnyUncompress'=> '2.052',
6987             'IO::Uncompress::Base'  => '2.052',
6988             'IO::Uncompress::Bunzip2'=> '2.052',
6989             'IO::Uncompress::Gunzip'=> '2.052',
6990             'IO::Uncompress::Inflate'=> '2.052',
6991             'IO::Uncompress::RawInflate'=> '2.052',
6992             'IO::Uncompress::Unzip' => '2.052',
6993             'IPC::Cmd'              => '0.78',
6994             'List::Util'            => '1.25',
6995             'List::Util::XS'        => '1.25',
6996             'Locale::Codes'         => '3.22',
6997             'Locale::Codes::Constants'=> '3.22',
6998             'Locale::Codes::Country'=> '3.22',
6999             'Locale::Codes::Country_Codes'=> '3.22',
7000             'Locale::Codes::Country_Retired'=> '3.22',
7001             'Locale::Codes::Currency'=> '3.22',
7002             'Locale::Codes::Currency_Codes'=> '3.22',
7003             'Locale::Codes::Currency_Retired'=> '3.22',
7004             'Locale::Codes::LangExt'=> '3.22',
7005             'Locale::Codes::LangExt_Codes'=> '3.22',
7006             'Locale::Codes::LangExt_Retired'=> '3.22',
7007             'Locale::Codes::LangFam'=> '3.22',
7008             'Locale::Codes::LangFam_Codes'=> '3.22',
7009             'Locale::Codes::LangFam_Retired'=> '3.22',
7010             'Locale::Codes::LangVar'=> '3.22',
7011             'Locale::Codes::LangVar_Codes'=> '3.22',
7012             'Locale::Codes::LangVar_Retired'=> '3.22',
7013             'Locale::Codes::Language'=> '3.22',
7014             'Locale::Codes::Language_Codes'=> '3.22',
7015             'Locale::Codes::Language_Retired'=> '3.22',
7016             'Locale::Codes::Script' => '3.22',
7017             'Locale::Codes::Script_Codes'=> '3.22',
7018             'Locale::Codes::Script_Retired'=> '3.22',
7019             'Locale::Country'       => '3.22',
7020             'Locale::Currency'      => '3.22',
7021             'Locale::Language'      => '3.22',
7022             'Locale::Script'        => '3.22',
7023             'Memoize'               => '1.03',
7024             'Memoize::AnyDBM_File'  => '1.03',
7025             'Memoize::Expire'       => '1.03',
7026             'Memoize::ExpireFile'   => '1.03',
7027             'Memoize::ExpireTest'   => '1.03',
7028             'Memoize::NDBM_File'    => '1.03',
7029             'Memoize::SDBM_File'    => '1.03',
7030             'Memoize::Storable'     => '1.03',
7031             'Module::Build'         => '0.40',
7032             'Module::Build::Base'   => '0.40',
7033             'Module::Build::Compat' => '0.40',
7034             'Module::Build::Config' => '0.40',
7035             'Module::Build::Cookbook'=> '0.40',
7036             'Module::Build::Dumper' => '0.40',
7037             'Module::Build::ModuleInfo'=> '0.40',
7038             'Module::Build::Notes'  => '0.40',
7039             'Module::Build::PPMMaker'=> '0.40',
7040             'Module::Build::Platform::Amiga'=> '0.40',
7041             'Module::Build::Platform::Default'=> '0.40',
7042             'Module::Build::Platform::EBCDIC'=> '0.40',
7043             'Module::Build::Platform::MPEiX'=> '0.40',
7044             'Module::Build::Platform::MacOS'=> '0.40',
7045             'Module::Build::Platform::RiscOS'=> '0.40',
7046             'Module::Build::Platform::Unix'=> '0.40',
7047             'Module::Build::Platform::VMS'=> '0.40',
7048             'Module::Build::Platform::VOS'=> '0.40',
7049             'Module::Build::Platform::Windows'=> '0.40',
7050             'Module::Build::Platform::aix'=> '0.40',
7051             'Module::Build::Platform::cygwin'=> '0.40',
7052             'Module::Build::Platform::darwin'=> '0.40',
7053             'Module::Build::Platform::os2'=> '0.40',
7054             'Module::Build::PodParser'=> '0.40',
7055             'Module::CoreList'      => '2.68',
7056             'Module::Load::Conditional'=> '0.50',
7057             'Object::Accessor'      => '0.44',
7058             'POSIX'                 => '1.31',
7059             'Params::Check'         => '0.36',
7060             'Parse::CPAN::Meta'     => '1.4404',
7061             'PerlIO::mmap'          => '0.011',
7062             'PerlIO::via::QuotedPrint'=> '0.07',
7063             'Pod::Html'             => '1.16',
7064             'Pod::Man'              => '2.26',
7065             'Pod::Text'             => '3.16',
7066             'Safe'                  => '2.33_01',
7067             'Scalar::Util'          => '1.25',
7068             'Search::Dict'          => '1.07',
7069             'Storable'              => '2.36',
7070             'TAP::Base'             => '3.25',
7071             'TAP::Formatter::Base'  => '3.25',
7072             'TAP::Formatter::Color' => '3.25',
7073             'TAP::Formatter::Console'=> '3.25',
7074             'TAP::Formatter::Console::ParallelSession'=> '3.25',
7075             'TAP::Formatter::Console::Session'=> '3.25',
7076             'TAP::Formatter::File'  => '3.25',
7077             'TAP::Formatter::File::Session'=> '3.25',
7078             'TAP::Formatter::Session'=> '3.25',
7079             'TAP::Harness'          => '3.25',
7080             'TAP::Object'           => '3.25',
7081             'TAP::Parser'           => '3.25',
7082             'TAP::Parser::Aggregator'=> '3.25',
7083             'TAP::Parser::Grammar'  => '3.25',
7084             'TAP::Parser::Iterator' => '3.25',
7085             'TAP::Parser::Iterator::Array'=> '3.25',
7086             'TAP::Parser::Iterator::Process'=> '3.25',
7087             'TAP::Parser::Iterator::Stream'=> '3.25',
7088             'TAP::Parser::IteratorFactory'=> '3.25',
7089             'TAP::Parser::Multiplexer'=> '3.25',
7090             'TAP::Parser::Result'   => '3.25',
7091             'TAP::Parser::Result::Bailout'=> '3.25',
7092             'TAP::Parser::Result::Comment'=> '3.25',
7093             'TAP::Parser::Result::Plan'=> '3.25',
7094             'TAP::Parser::Result::Pragma'=> '3.25',
7095             'TAP::Parser::Result::Test'=> '3.25',
7096             'TAP::Parser::Result::Unknown'=> '3.25',
7097             'TAP::Parser::Result::Version'=> '3.25',
7098             'TAP::Parser::Result::YAML'=> '3.25',
7099             'TAP::Parser::ResultFactory'=> '3.25',
7100             'TAP::Parser::Scheduler'=> '3.25',
7101             'TAP::Parser::Scheduler::Job'=> '3.25',
7102             'TAP::Parser::Scheduler::Spinner'=> '3.25',
7103             'TAP::Parser::Source'   => '3.25',
7104             'TAP::Parser::SourceHandler'=> '3.25',
7105             'TAP::Parser::SourceHandler::Executable'=> '3.25',
7106             'TAP::Parser::SourceHandler::File'=> '3.25',
7107             'TAP::Parser::SourceHandler::Handle'=> '3.25',
7108             'TAP::Parser::SourceHandler::Perl'=> '3.25',
7109             'TAP::Parser::SourceHandler::RawTAP'=> '3.25',
7110             'TAP::Parser::Utils'    => '3.25',
7111             'TAP::Parser::YAMLish::Reader'=> '3.25',
7112             'TAP::Parser::YAMLish::Writer'=> '3.25',
7113             'Term::ANSIColor'       => '3.02',
7114             'Test::Harness'         => '3.25',
7115             'Unicode'               => '6.2.0',
7116             'Unicode::UCD'          => '0.44',
7117             'XS::APItest'           => '0.40',
7118             '_charnames'            => '1.32',
7119             'attributes'            => '0.2',
7120             'autodie'               => '2.11',
7121             'autodie::exception'    => '2.11',
7122             'autodie::exception::system'=> '2.11',
7123             'autodie::hints'        => '2.11',
7124             'bigint'                => '0.30',
7125             'charnames'             => '1.32',
7126             'feature'               => '1.29',
7127             'inc::latest'           => '0.40',
7128             'perlfaq'               => '5.0150040',
7129             're'                    => '0.20',
7130         },
7131         removed => {
7132             'List::Util::PP'        => 1,
7133             'Scalar::Util::PP'      => 1,
7134         }
7135     },
7136     5.017002 => {
7137         delta_from => 5.017001,
7138         changed => {
7139             'App::Prove'            => '3.25_01',
7140             'App::Prove::State'     => '3.25_01',
7141             'App::Prove::State::Result'=> '3.25_01',
7142             'App::Prove::State::Result::Test'=> '3.25_01',
7143             'B::Concise'            => '0.91',
7144             'Compress::Raw::Bzip2'  => '2.05201',
7145             'Compress::Raw::Zlib'   => '2.05401',
7146             'Exporter'              => '5.67',
7147             'Exporter::Heavy'       => '5.67',
7148             'Fatal'                 => '2.12',
7149             'File::Fetch'           => '0.36',
7150             'File::stat'            => '1.07',
7151             'IO'                    => '1.25_08',
7152             'IO::Socket'            => '1.35',
7153             'Module::CoreList'      => '2.69',
7154             'PerlIO::scalar'        => '0.15',
7155             'Socket'                => '2.002',
7156             'Storable'              => '2.37',
7157             'TAP::Base'             => '3.25_01',
7158             'TAP::Formatter::Base'  => '3.25_01',
7159             'TAP::Formatter::Color' => '3.25_01',
7160             'TAP::Formatter::Console'=> '3.25_01',
7161             'TAP::Formatter::Console::ParallelSession'=> '3.25_01',
7162             'TAP::Formatter::Console::Session'=> '3.25_01',
7163             'TAP::Formatter::File'  => '3.25_01',
7164             'TAP::Formatter::File::Session'=> '3.25_01',
7165             'TAP::Formatter::Session'=> '3.25_01',
7166             'TAP::Harness'          => '3.25_01',
7167             'TAP::Object'           => '3.25_01',
7168             'TAP::Parser'           => '3.25_01',
7169             'TAP::Parser::Aggregator'=> '3.25_01',
7170             'TAP::Parser::Grammar'  => '3.25_01',
7171             'TAP::Parser::Iterator' => '3.25_01',
7172             'TAP::Parser::Iterator::Array'=> '3.25_01',
7173             'TAP::Parser::Iterator::Process'=> '3.25_01',
7174             'TAP::Parser::Iterator::Stream'=> '3.25_01',
7175             'TAP::Parser::IteratorFactory'=> '3.25_01',
7176             'TAP::Parser::Multiplexer'=> '3.25_01',
7177             'TAP::Parser::Result'   => '3.25_01',
7178             'TAP::Parser::Result::Bailout'=> '3.25_01',
7179             'TAP::Parser::Result::Comment'=> '3.25_01',
7180             'TAP::Parser::Result::Plan'=> '3.25_01',
7181             'TAP::Parser::Result::Pragma'=> '3.25_01',
7182             'TAP::Parser::Result::Test'=> '3.25_01',
7183             'TAP::Parser::Result::Unknown'=> '3.25_01',
7184             'TAP::Parser::Result::Version'=> '3.25_01',
7185             'TAP::Parser::Result::YAML'=> '3.25_01',
7186             'TAP::Parser::ResultFactory'=> '3.25_01',
7187             'TAP::Parser::Scheduler'=> '3.25_01',
7188             'TAP::Parser::Scheduler::Job'=> '3.25_01',
7189             'TAP::Parser::Scheduler::Spinner'=> '3.25_01',
7190             'TAP::Parser::Source'   => '3.25_01',
7191             'TAP::Parser::SourceHandler'=> '3.25_01',
7192             'TAP::Parser::SourceHandler::Executable'=> '3.25_01',
7193             'TAP::Parser::SourceHandler::File'=> '3.25_01',
7194             'TAP::Parser::SourceHandler::Handle'=> '3.25_01',
7195             'TAP::Parser::SourceHandler::Perl'=> '3.25_01',
7196             'TAP::Parser::SourceHandler::RawTAP'=> '3.25_01',
7197             'TAP::Parser::Utils'    => '3.25_01',
7198             'TAP::Parser::YAMLish::Reader'=> '3.25_01',
7199             'TAP::Parser::YAMLish::Writer'=> '3.25_01',
7200             'Test::Harness'         => '3.25_01',
7201             'Tie::StdHandle'        => '4.3',
7202             'XS::APItest'           => '0.41',
7203             'autodie'               => '2.12',
7204             'autodie::exception'    => '2.12',
7205             'autodie::exception::system'=> '2.12',
7206             'autodie::hints'        => '2.12',
7207             'diagnostics'           => '1.30',
7208             'overload'              => '1.20',
7209             're'                    => '0.21',
7210             'vars'                  => '1.03',
7211         },
7212         removed => {
7213         }
7214     },
7215     5.017003 => {
7216         delta_from => 5.017002,
7217         changed => {
7218             'B'                     => '1.37',
7219             'B::Concise'            => '0.92',
7220             'B::Debug'              => '1.18',
7221             'B::Deparse'            => '1.16',
7222             'CGI'                   => '3.60',
7223             'Compress::Raw::Bzip2'  => '2.055',
7224             'Compress::Raw::Zlib'   => '2.056',
7225             'Compress::Zlib'        => '2.055',
7226             'Data::Dumper'          => '2.135_07',
7227             'Devel::Peek'           => '1.09',
7228             'Encode'                => '2.47',
7229             'Encode::Alias'         => '2.16',
7230             'Encode::GSM0338'       => '2.02',
7231             'Encode::Unicode::UTF7' => '2.06',
7232             'IO::Compress::Adapter::Bzip2'=> '2.055',
7233             'IO::Compress::Adapter::Deflate'=> '2.055',
7234             'IO::Compress::Adapter::Identity'=> '2.055',
7235             'IO::Compress::Base'    => '2.055',
7236             'IO::Compress::Base::Common'=> '2.055',
7237             'IO::Compress::Bzip2'   => '2.055',
7238             'IO::Compress::Deflate' => '2.055',
7239             'IO::Compress::Gzip'    => '2.055',
7240             'IO::Compress::Gzip::Constants'=> '2.055',
7241             'IO::Compress::RawDeflate'=> '2.055',
7242             'IO::Compress::Zip'     => '2.055',
7243             'IO::Compress::Zip::Constants'=> '2.055',
7244             'IO::Compress::Zlib::Constants'=> '2.055',
7245             'IO::Compress::Zlib::Extra'=> '2.055',
7246             'IO::Uncompress::Adapter::Bunzip2'=> '2.055',
7247             'IO::Uncompress::Adapter::Identity'=> '2.055',
7248             'IO::Uncompress::Adapter::Inflate'=> '2.055',
7249             'IO::Uncompress::AnyInflate'=> '2.055',
7250             'IO::Uncompress::AnyUncompress'=> '2.055',
7251             'IO::Uncompress::Base'  => '2.055',
7252             'IO::Uncompress::Bunzip2'=> '2.055',
7253             'IO::Uncompress::Gunzip'=> '2.055',
7254             'IO::Uncompress::Inflate'=> '2.055',
7255             'IO::Uncompress::RawInflate'=> '2.055',
7256             'IO::Uncompress::Unzip' => '2.055',
7257             'Module::Build'         => '0.4003',
7258             'Module::Build::Base'   => '0.4003',
7259             'Module::Build::Compat' => '0.4003',
7260             'Module::Build::Config' => '0.4003',
7261             'Module::Build::Cookbook'=> '0.4003',
7262             'Module::Build::Dumper' => '0.4003',
7263             'Module::Build::ModuleInfo'=> '0.4003',
7264             'Module::Build::Notes'  => '0.4003',
7265             'Module::Build::PPMMaker'=> '0.4003',
7266             'Module::Build::Platform::Amiga'=> '0.4003',
7267             'Module::Build::Platform::Default'=> '0.4003',
7268             'Module::Build::Platform::EBCDIC'=> '0.4003',
7269             'Module::Build::Platform::MPEiX'=> '0.4003',
7270             'Module::Build::Platform::MacOS'=> '0.4003',
7271             'Module::Build::Platform::RiscOS'=> '0.4003',
7272             'Module::Build::Platform::Unix'=> '0.4003',
7273             'Module::Build::Platform::VMS'=> '0.4003',
7274             'Module::Build::Platform::VOS'=> '0.4003',
7275             'Module::Build::Platform::Windows'=> '0.4003',
7276             'Module::Build::Platform::aix'=> '0.4003',
7277             'Module::Build::Platform::cygwin'=> '0.4003',
7278             'Module::Build::Platform::darwin'=> '0.4003',
7279             'Module::Build::Platform::os2'=> '0.4003',
7280             'Module::Build::PodParser'=> '0.4003',
7281             'Module::CoreList'      => '2.71',
7282             'Module::CoreList::TieHashDelta'=> '2.71',
7283             'Module::Load::Conditional'=> '0.54',
7284             'Module::Metadata'      => '1.000011',
7285             'Module::Pluggable'     => '4.3',
7286             'Module::Pluggable::Object'=> '4.3',
7287             'Pod::Simple'           => '3.23',
7288             'Pod::Simple::BlackBox' => '3.23',
7289             'Pod::Simple::Checker'  => '3.23',
7290             'Pod::Simple::Debug'    => '3.23',
7291             'Pod::Simple::DumpAsText'=> '3.23',
7292             'Pod::Simple::DumpAsXML'=> '3.23',
7293             'Pod::Simple::HTML'     => '3.23',
7294             'Pod::Simple::HTMLBatch'=> '3.23',
7295             'Pod::Simple::LinkSection'=> '3.23',
7296             'Pod::Simple::Methody'  => '3.23',
7297             'Pod::Simple::Progress' => '3.23',
7298             'Pod::Simple::PullParser'=> '3.23',
7299             'Pod::Simple::PullParserEndToken'=> '3.23',
7300             'Pod::Simple::PullParserStartToken'=> '3.23',
7301             'Pod::Simple::PullParserTextToken'=> '3.23',
7302             'Pod::Simple::PullParserToken'=> '3.23',
7303             'Pod::Simple::RTF'      => '3.23',
7304             'Pod::Simple::Search'   => '3.23',
7305             'Pod::Simple::SimpleTree'=> '3.23',
7306             'Pod::Simple::Text'     => '3.23',
7307             'Pod::Simple::TextContent'=> '3.23',
7308             'Pod::Simple::TiedOutFH'=> '3.23',
7309             'Pod::Simple::Transcode'=> '3.23',
7310             'Pod::Simple::TranscodeDumb'=> '3.23',
7311             'Pod::Simple::TranscodeSmart'=> '3.23',
7312             'Pod::Simple::XHTML'    => '3.23',
7313             'Pod::Simple::XMLOutStream'=> '3.23',
7314             'Socket'                => '2.004',
7315             'Storable'              => '2.38',
7316             'Sys::Syslog'           => '0.31',
7317             'Term::ReadLine'        => '1.10',
7318             'Text::Tabs'            => '2012.0818',
7319             'Text::Wrap'            => '2012.0818',
7320             'Time::Local'           => '1.2300',
7321             'Unicode::UCD'          => '0.45',
7322             'Win32'                 => '0.45',
7323             'Win32CORE'             => '0.03',
7324             'XS::APItest'           => '0.42',
7325             'inc::latest'           => '0.4003',
7326             'perlfaq'               => '5.0150041',
7327             're'                    => '0.22',
7328         },
7329         removed => {
7330         }
7331     },
7332     5.017004 => {
7333         delta_from => 5.017003,
7334         changed => {
7335             'Archive::Tar'          => '1.90',
7336             'Archive::Tar::Constant'=> '1.90',
7337             'Archive::Tar::File'    => '1.90',
7338             'B'                     => '1.38',
7339             'B::Concise'            => '0.93',
7340             'B::Deparse'            => '1.17',
7341             'B::Xref'               => '1.04',
7342             'CPANPLUS'              => '0.9131',
7343             'CPANPLUS::Internals'   => '0.9131',
7344             'CPANPLUS::Shell::Default'=> '0.9131',
7345             'DB_File'               => '1.827',
7346             'Devel::Peek'           => '1.10',
7347             'DynaLoader'            => '1.16',
7348             'Errno'                 => '1.16',
7349             'ExtUtils::ParseXS'     => '3.18',
7350             'ExtUtils::ParseXS::Constants'=> '3.18',
7351             'ExtUtils::ParseXS::CountLines'=> '3.18',
7352             'ExtUtils::ParseXS::Utilities'=> '3.18',
7353             'File::Copy'            => '2.24',
7354             'File::Find'            => '1.22',
7355             'IPC::Open3'            => '1.13',
7356             'Locale::Codes'         => '3.23',
7357             'Locale::Codes::Constants'=> '3.23',
7358             'Locale::Codes::Country'=> '3.23',
7359             'Locale::Codes::Country_Codes'=> '3.23',
7360             'Locale::Codes::Country_Retired'=> '3.23',
7361             'Locale::Codes::Currency'=> '3.23',
7362             'Locale::Codes::Currency_Codes'=> '3.23',
7363             'Locale::Codes::Currency_Retired'=> '3.23',
7364             'Locale::Codes::LangExt'=> '3.23',
7365             'Locale::Codes::LangExt_Codes'=> '3.23',
7366             'Locale::Codes::LangExt_Retired'=> '3.23',
7367             'Locale::Codes::LangFam'=> '3.23',
7368             'Locale::Codes::LangFam_Codes'=> '3.23',
7369             'Locale::Codes::LangFam_Retired'=> '3.23',
7370             'Locale::Codes::LangVar'=> '3.23',
7371             'Locale::Codes::LangVar_Codes'=> '3.23',
7372             'Locale::Codes::LangVar_Retired'=> '3.23',
7373             'Locale::Codes::Language'=> '3.23',
7374             'Locale::Codes::Language_Codes'=> '3.23',
7375             'Locale::Codes::Language_Retired'=> '3.23',
7376             'Locale::Codes::Script' => '3.23',
7377             'Locale::Codes::Script_Codes'=> '3.23',
7378             'Locale::Codes::Script_Retired'=> '3.23',
7379             'Locale::Country'       => '3.23',
7380             'Locale::Currency'      => '3.23',
7381             'Locale::Language'      => '3.23',
7382             'Locale::Script'        => '3.23',
7383             'Math::BigFloat::Trace' => '0.30',
7384             'Math::BigInt::Trace'   => '0.30',
7385             'Module::CoreList'      => '2.73',
7386             'Module::CoreList::TieHashDelta'=> '2.73',
7387             'Opcode'                => '1.24',
7388             'Socket'                => '2.006',
7389             'Storable'              => '2.39',
7390             'Sys::Syslog'           => '0.32',
7391             'Unicode::UCD'          => '0.46',
7392             'XS::APItest'           => '0.43',
7393             'bignum'                => '0.30',
7394             'bigrat'                => '0.30',
7395             'constant'              => '1.24',
7396             'feature'               => '1.30',
7397             'threads::shared'       => '1.41',
7398             'version'               => '0.9901',
7399             'warnings'              => '1.14',
7400         },
7401         removed => {
7402         }
7403     },
7404     5.017005 => {
7405         delta_from => 5.017004,
7406         changed => {
7407             'AutoLoader'            => '5.73',
7408             'B'                     => '1.39',
7409             'B::Deparse'            => '1.18',
7410             'CPANPLUS'              => '0.9133',
7411             'CPANPLUS::Internals'   => '0.9133',
7412             'CPANPLUS::Shell::Default'=> '0.9133',
7413             'Carp'                  => '1.27',
7414             'Carp::Heavy'           => '1.27',
7415             'Data::Dumper'          => '2.136',
7416             'Digest::SHA'           => '5.72',
7417             'ExtUtils::CBuilder'    => '0.280209',
7418             'ExtUtils::CBuilder::Base'=> '0.280209',
7419             'ExtUtils::CBuilder::Platform::Unix'=> '0.280209',
7420             'ExtUtils::CBuilder::Platform::VMS'=> '0.280209',
7421             'ExtUtils::CBuilder::Platform::Windows'=> '0.280209',
7422             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280209',
7423             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280209',
7424             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280209',
7425             'ExtUtils::CBuilder::Platform::aix'=> '0.280209',
7426             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280209',
7427             'ExtUtils::CBuilder::Platform::darwin'=> '0.280209',
7428             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280209',
7429             'ExtUtils::CBuilder::Platform::os2'=> '0.280209',
7430             'File::Copy'            => '2.25',
7431             'File::Glob'            => '1.18',
7432             'HTTP::Tiny'            => '0.024',
7433             'Module::CoreList'      => '2.75',
7434             'Module::CoreList::TieHashDelta'=> '2.75',
7435             'PerlIO::encoding'      => '0.16',
7436             'Unicode::Collate'      => '0.90',
7437             'Unicode::Collate::Locale'=> '0.90',
7438             'Unicode::Normalize'    => '1.15',
7439             'Win32CORE'             => '0.04',
7440             'XS::APItest'           => '0.44',
7441             'attributes'            => '0.21',
7442             'bigint'                => '0.31',
7443             'bignum'                => '0.31',
7444             'bigrat'                => '0.31',
7445             'feature'               => '1.31',
7446             'threads::shared'       => '1.42',
7447             'warnings'              => '1.15',
7448         },
7449         removed => {
7450         }
7451     },
7452     5.017006 => {
7453         delta_from => 5.017005,
7454         changed => {
7455             'B'                     => '1.40',
7456             'B::Concise'            => '0.94',
7457             'B::Deparse'            => '1.19',
7458             'B::Xref'               => '1.05',
7459             'CGI'                   => '3.63',
7460             'CGI::Util'             => '3.62',
7461             'CPAN'                  => '1.99_51',
7462             'CPANPLUS::Dist::Build' => '0.64',
7463             'CPANPLUS::Dist::Build::Constants'=> '0.64',
7464             'Carp'                  => '1.28',
7465             'Carp::Heavy'           => '1.28',
7466             'Compress::Raw::Bzip2'  => '2.058',
7467             'Compress::Raw::Zlib'   => '2.058',
7468             'Compress::Zlib'        => '2.058',
7469             'Data::Dumper'          => '2.137',
7470             'Digest::SHA'           => '5.73',
7471             'DynaLoader'            => '1.17',
7472             'Env'                   => '1.04',
7473             'Errno'                 => '1.17',
7474             'ExtUtils::Manifest'    => '1.62',
7475             'ExtUtils::Typemaps'    => '3.18',
7476             'ExtUtils::Typemaps::Cmd'=> '3.18',
7477             'ExtUtils::Typemaps::InputMap'=> '3.18',
7478             'ExtUtils::Typemaps::OutputMap'=> '3.18',
7479             'ExtUtils::Typemaps::Type'=> '3.18',
7480             'Fatal'                 => '2.13',
7481             'File::Find'            => '1.23',
7482             'Hash::Util'            => '0.13',
7483             'IO::Compress::Adapter::Bzip2'=> '2.058',
7484             'IO::Compress::Adapter::Deflate'=> '2.058',
7485             'IO::Compress::Adapter::Identity'=> '2.058',
7486             'IO::Compress::Base'    => '2.058',
7487             'IO::Compress::Base::Common'=> '2.058',
7488             'IO::Compress::Bzip2'   => '2.058',
7489             'IO::Compress::Deflate' => '2.058',
7490             'IO::Compress::Gzip'    => '2.058',
7491             'IO::Compress::Gzip::Constants'=> '2.058',
7492             'IO::Compress::RawDeflate'=> '2.058',
7493             'IO::Compress::Zip'     => '2.058',
7494             'IO::Compress::Zip::Constants'=> '2.058',
7495             'IO::Compress::Zlib::Constants'=> '2.058',
7496             'IO::Compress::Zlib::Extra'=> '2.058',
7497             'IO::Uncompress::Adapter::Bunzip2'=> '2.058',
7498             'IO::Uncompress::Adapter::Identity'=> '2.058',
7499             'IO::Uncompress::Adapter::Inflate'=> '2.058',
7500             'IO::Uncompress::AnyInflate'=> '2.058',
7501             'IO::Uncompress::AnyUncompress'=> '2.058',
7502             'IO::Uncompress::Base'  => '2.058',
7503             'IO::Uncompress::Bunzip2'=> '2.058',
7504             'IO::Uncompress::Gunzip'=> '2.058',
7505             'IO::Uncompress::Inflate'=> '2.058',
7506             'IO::Uncompress::RawInflate'=> '2.058',
7507             'IO::Uncompress::Unzip' => '2.058',
7508             'Module::CoreList'      => '2.78',
7509             'Module::CoreList::TieHashDelta'=> '2.77',
7510             'Module::Pluggable'     => '4.5',
7511             'Module::Pluggable::Object'=> '4.5',
7512             'Opcode'                => '1.25',
7513             'Sys::Hostname'         => '1.17',
7514             'Term::UI'              => '0.32',
7515             'Thread::Queue'         => '3.01',
7516             'Tie::Hash::NamedCapture'=> '0.09',
7517             'Unicode::Collate'      => '0.93',
7518             'Unicode::Collate::CJK::Korean'=> '0.93',
7519             'Unicode::Collate::Locale'=> '0.93',
7520             'Unicode::Normalize'    => '1.16',
7521             'Unicode::UCD'          => '0.47',
7522             'XS::APItest'           => '0.46',
7523             '_charnames'            => '1.33',
7524             'autodie'               => '2.13',
7525             'autodie::exception'    => '2.13',
7526             'autodie::exception::system'=> '2.13',
7527             'autodie::hints'        => '2.13',
7528             'charnames'             => '1.33',
7529             're'                    => '0.23',
7530         },
7531         removed => {
7532         }
7533     },
7534     5.017007 => {
7535         delta_from => 5.017006,
7536         changed => {
7537             'B'                     => '1.41',
7538             'CPANPLUS::Dist::Build' => '0.68',
7539             'CPANPLUS::Dist::Build::Constants'=> '0.68',
7540             'Compress::Raw::Bzip2'  => '2.059',
7541             'Compress::Raw::Zlib'   => '2.059',
7542             'Compress::Zlib'        => '2.059',
7543             'Cwd'                   => '3.39_03',
7544             'Data::Dumper'          => '2.139',
7545             'Devel::Peek'           => '1.11',
7546             'Digest::SHA'           => '5.80',
7547             'DynaLoader'            => '1.18',
7548             'English'               => '1.06',
7549             'Errno'                 => '1.18',
7550             'ExtUtils::Command::MM' => '6.64',
7551             'ExtUtils::Liblist'     => '6.64',
7552             'ExtUtils::Liblist::Kid'=> '6.64',
7553             'ExtUtils::MM'          => '6.64',
7554             'ExtUtils::MM_AIX'      => '6.64',
7555             'ExtUtils::MM_Any'      => '6.64',
7556             'ExtUtils::MM_BeOS'     => '6.64',
7557             'ExtUtils::MM_Cygwin'   => '6.64',
7558             'ExtUtils::MM_DOS'      => '6.64',
7559             'ExtUtils::MM_Darwin'   => '6.64',
7560             'ExtUtils::MM_MacOS'    => '6.64',
7561             'ExtUtils::MM_NW5'      => '6.64',
7562             'ExtUtils::MM_OS2'      => '6.64',
7563             'ExtUtils::MM_QNX'      => '6.64',
7564             'ExtUtils::MM_UWIN'     => '6.64',
7565             'ExtUtils::MM_Unix'     => '6.64',
7566             'ExtUtils::MM_VMS'      => '6.64',
7567             'ExtUtils::MM_VOS'      => '6.64',
7568             'ExtUtils::MM_Win32'    => '6.64',
7569             'ExtUtils::MM_Win95'    => '6.64',
7570             'ExtUtils::MY'          => '6.64',
7571             'ExtUtils::MakeMaker'   => '6.64',
7572             'ExtUtils::MakeMaker::Config'=> '6.64',
7573             'ExtUtils::Mkbootstrap' => '6.64',
7574             'ExtUtils::Mksymlists'  => '6.64',
7575             'ExtUtils::testlib'     => '6.64',
7576             'File::DosGlob'         => '1.09',
7577             'File::Glob'            => '1.19',
7578             'GDBM_File'             => '1.15',
7579             'IO::Compress::Adapter::Bzip2'=> '2.059',
7580             'IO::Compress::Adapter::Deflate'=> '2.059',
7581             'IO::Compress::Adapter::Identity'=> '2.059',
7582             'IO::Compress::Base'    => '2.059',
7583             'IO::Compress::Base::Common'=> '2.059',
7584             'IO::Compress::Bzip2'   => '2.059',
7585             'IO::Compress::Deflate' => '2.059',
7586             'IO::Compress::Gzip'    => '2.059',
7587             'IO::Compress::Gzip::Constants'=> '2.059',
7588             'IO::Compress::RawDeflate'=> '2.059',
7589             'IO::Compress::Zip'     => '2.059',
7590             'IO::Compress::Zip::Constants'=> '2.059',
7591             'IO::Compress::Zlib::Constants'=> '2.059',
7592             'IO::Compress::Zlib::Extra'=> '2.059',
7593             'IO::Uncompress::Adapter::Bunzip2'=> '2.059',
7594             'IO::Uncompress::Adapter::Identity'=> '2.059',
7595             'IO::Uncompress::Adapter::Inflate'=> '2.059',
7596             'IO::Uncompress::AnyInflate'=> '2.059',
7597             'IO::Uncompress::AnyUncompress'=> '2.059',
7598             'IO::Uncompress::Base'  => '2.059',
7599             'IO::Uncompress::Bunzip2'=> '2.059',
7600             'IO::Uncompress::Gunzip'=> '2.059',
7601             'IO::Uncompress::Inflate'=> '2.059',
7602             'IO::Uncompress::RawInflate'=> '2.059',
7603             'IO::Uncompress::Unzip' => '2.059',
7604             'List::Util'            => '1.26',
7605             'List::Util::XS'        => '1.26',
7606             'Locale::Codes'         => '3.24',
7607             'Locale::Codes::Constants'=> '3.24',
7608             'Locale::Codes::Country'=> '3.24',
7609             'Locale::Codes::Country_Codes'=> '3.24',
7610             'Locale::Codes::Country_Retired'=> '3.24',
7611             'Locale::Codes::Currency'=> '3.24',
7612             'Locale::Codes::Currency_Codes'=> '3.24',
7613             'Locale::Codes::Currency_Retired'=> '3.24',
7614             'Locale::Codes::LangExt'=> '3.24',
7615             'Locale::Codes::LangExt_Codes'=> '3.24',
7616             'Locale::Codes::LangExt_Retired'=> '3.24',
7617             'Locale::Codes::LangFam'=> '3.24',
7618             'Locale::Codes::LangFam_Codes'=> '3.24',
7619             'Locale::Codes::LangFam_Retired'=> '3.24',
7620             'Locale::Codes::LangVar'=> '3.24',
7621             'Locale::Codes::LangVar_Codes'=> '3.24',
7622             'Locale::Codes::LangVar_Retired'=> '3.24',
7623             'Locale::Codes::Language'=> '3.24',
7624             'Locale::Codes::Language_Codes'=> '3.24',
7625             'Locale::Codes::Language_Retired'=> '3.24',
7626             'Locale::Codes::Script' => '3.24',
7627             'Locale::Codes::Script_Codes'=> '3.24',
7628             'Locale::Codes::Script_Retired'=> '3.24',
7629             'Locale::Country'       => '3.24',
7630             'Locale::Currency'      => '3.24',
7631             'Locale::Language'      => '3.24',
7632             'Locale::Maketext'      => '1.23',
7633             'Locale::Script'        => '3.24',
7634             'Module::CoreList'      => '2.79',
7635             'Module::CoreList::TieHashDelta'=> '2.79',
7636             'POSIX'                 => '1.32',
7637             'Scalar::Util'          => '1.26',
7638             'Socket'                => '2.006_001',
7639             'Storable'              => '2.40',
7640             'Term::ReadLine'        => '1.11',
7641             'Unicode::Collate'      => '0.96',
7642             'Unicode::Collate::CJK::Stroke'=> '0.94',
7643             'Unicode::Collate::CJK::Zhuyin'=> '0.94',
7644             'Unicode::Collate::Locale'=> '0.96',
7645             'XS::APItest'           => '0.48',
7646             'XS::Typemap'           => '0.09',
7647             '_charnames'            => '1.34',
7648             'charnames'             => '1.34',
7649             'feature'               => '1.32',
7650             'mro'                   => '1.10',
7651             'sigtrap'               => '1.07',
7652             'sort'                  => '2.02',
7653         },
7654         removed => {
7655         }
7656     },
7657     5.017008 => {
7658         delta_from => 5.017007,
7659         changed => {
7660             'Archive::Extract'      => '0.62',
7661             'B'                     => '1.42',
7662             'B::Concise'            => '0.95',
7663             'Compress::Raw::Bzip2'  => '2.060',
7664             'Compress::Raw::Zlib'   => '2.060',
7665             'Compress::Zlib'        => '2.060',
7666             'Cwd'                   => '3.40',
7667             'Data::Dumper'          => '2.141',
7668             'Digest::SHA'           => '5.81',
7669             'ExtUtils::Install'     => '1.59',
7670             'File::Fetch'           => '0.38',
7671             'File::Path'            => '2.09',
7672             'File::Spec'            => '3.40',
7673             'File::Spec::Cygwin'    => '3.40',
7674             'File::Spec::Epoc'      => '3.40',
7675             'File::Spec::Functions' => '3.40',
7676             'File::Spec::Mac'       => '3.40',
7677             'File::Spec::OS2'       => '3.40',
7678             'File::Spec::Unix'      => '3.40',
7679             'File::Spec::VMS'       => '3.40',
7680             'File::Spec::Win32'     => '3.40',
7681             'HTTP::Tiny'            => '0.025',
7682             'Hash::Util'            => '0.14',
7683             'I18N::LangTags'        => '0.39',
7684             'I18N::LangTags::List'  => '0.39',
7685             'I18N::Langinfo'        => '0.09',
7686             'IO'                    => '1.26',
7687             'IO::Compress::Adapter::Bzip2'=> '2.060',
7688             'IO::Compress::Adapter::Deflate'=> '2.060',
7689             'IO::Compress::Adapter::Identity'=> '2.060',
7690             'IO::Compress::Base'    => '2.060',
7691             'IO::Compress::Base::Common'=> '2.060',
7692             'IO::Compress::Bzip2'   => '2.060',
7693             'IO::Compress::Deflate' => '2.060',
7694             'IO::Compress::Gzip'    => '2.060',
7695             'IO::Compress::Gzip::Constants'=> '2.060',
7696             'IO::Compress::RawDeflate'=> '2.060',
7697             'IO::Compress::Zip'     => '2.060',
7698             'IO::Compress::Zip::Constants'=> '2.060',
7699             'IO::Compress::Zlib::Constants'=> '2.060',
7700             'IO::Compress::Zlib::Extra'=> '2.060',
7701             'IO::Uncompress::Adapter::Bunzip2'=> '2.060',
7702             'IO::Uncompress::Adapter::Identity'=> '2.060',
7703             'IO::Uncompress::Adapter::Inflate'=> '2.060',
7704             'IO::Uncompress::AnyInflate'=> '2.060',
7705             'IO::Uncompress::AnyUncompress'=> '2.060',
7706             'IO::Uncompress::Base'  => '2.060',
7707             'IO::Uncompress::Bunzip2'=> '2.060',
7708             'IO::Uncompress::Gunzip'=> '2.060',
7709             'IO::Uncompress::Inflate'=> '2.060',
7710             'IO::Uncompress::RawInflate'=> '2.060',
7711             'IO::Uncompress::Unzip' => '2.060',
7712             'List::Util'            => '1.27',
7713             'List::Util::XS'        => '1.27',
7714             'Module::CoreList'      => '2.80',
7715             'Module::CoreList::TieHashDelta'=> '2.80',
7716             'Pod::Html'             => '1.17',
7717             'Pod::LaTeX'            => '0.61',
7718             'Pod::Man'              => '2.27',
7719             'Pod::Text'             => '3.17',
7720             'Pod::Text::Color'      => '2.07',
7721             'Pod::Text::Overstrike' => '2.05',
7722             'Pod::Text::Termcap'    => '2.07',
7723             'Safe'                  => '2.34',
7724             'Scalar::Util'          => '1.27',
7725             'Socket'                => '2.009',
7726             'Term::ANSIColor'       => '4.02',
7727             'Test'                  => '1.26',
7728             'Unicode::Collate'      => '0.97',
7729             'XS::APItest'           => '0.51',
7730             'XS::Typemap'           => '0.10',
7731             '_charnames'            => '1.35',
7732             'charnames'             => '1.35',
7733             'constant'              => '1.25',
7734             'diagnostics'           => '1.31',
7735             'threads::shared'       => '1.43',
7736             'warnings'              => '1.16',
7737         },
7738         removed => {
7739         }
7740     },
7741     5.017009 => {
7742         delta_from => 5.017008,
7743         changed => {
7744             'App::Cpan'             => '1.60_02',
7745             'App::Prove'            => '3.26',
7746             'App::Prove::State'     => '3.26',
7747             'App::Prove::State::Result'=> '3.26',
7748             'App::Prove::State::Result::Test'=> '3.26',
7749             'Archive::Extract'      => '0.68',
7750             'Attribute::Handlers'   => '0.94',
7751             'B::Lint'               => '1.17',
7752             'B::Lint::Debug'        => '1.17',
7753             'Benchmark'             => '1.14',
7754             'CPAN'                  => '2.00',
7755             'CPAN::Distribution'    => '2.00',
7756             'CPAN::FirstTime'       => '5.5304',
7757             'CPAN::Nox'             => '5.5001',
7758             'CPANPLUS'              => '0.9135',
7759             'CPANPLUS::Backend'     => '0.9135',
7760             'CPANPLUS::Backend::RV' => '0.9135',
7761             'CPANPLUS::Config'      => '0.9135',
7762             'CPANPLUS::Config::HomeEnv'=> '0.9135',
7763             'CPANPLUS::Configure'   => '0.9135',
7764             'CPANPLUS::Configure::Setup'=> '0.9135',
7765             'CPANPLUS::Dist'        => '0.9135',
7766             'CPANPLUS::Dist::Autobundle'=> '0.9135',
7767             'CPANPLUS::Dist::Base'  => '0.9135',
7768             'CPANPLUS::Dist::Build' => '0.70',
7769             'CPANPLUS::Dist::Build::Constants'=> '0.70',
7770             'CPANPLUS::Dist::MM'    => '0.9135',
7771             'CPANPLUS::Dist::Sample'=> '0.9135',
7772             'CPANPLUS::Error'       => '0.9135',
7773             'CPANPLUS::Internals'   => '0.9135',
7774             'CPANPLUS::Internals::Constants'=> '0.9135',
7775             'CPANPLUS::Internals::Constants::Report'=> '0.9135',
7776             'CPANPLUS::Internals::Extract'=> '0.9135',
7777             'CPANPLUS::Internals::Fetch'=> '0.9135',
7778             'CPANPLUS::Internals::Report'=> '0.9135',
7779             'CPANPLUS::Internals::Search'=> '0.9135',
7780             'CPANPLUS::Internals::Source'=> '0.9135',
7781             'CPANPLUS::Internals::Source::Memory'=> '0.9135',
7782             'CPANPLUS::Internals::Source::SQLite'=> '0.9135',
7783             'CPANPLUS::Internals::Source::SQLite::Tie'=> '0.9135',
7784             'CPANPLUS::Internals::Utils'=> '0.9135',
7785             'CPANPLUS::Internals::Utils::Autoflush'=> '0.9135',
7786             'CPANPLUS::Module'      => '0.9135',
7787             'CPANPLUS::Module::Author'=> '0.9135',
7788             'CPANPLUS::Module::Author::Fake'=> '0.9135',
7789             'CPANPLUS::Module::Checksums'=> '0.9135',
7790             'CPANPLUS::Module::Fake'=> '0.9135',
7791             'CPANPLUS::Module::Signature'=> '0.9135',
7792             'CPANPLUS::Selfupdate'  => '0.9135',
7793             'CPANPLUS::Shell'       => '0.9135',
7794             'CPANPLUS::Shell::Classic'=> '0.9135',
7795             'CPANPLUS::Shell::Default'=> '0.9135',
7796             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> '0.9135',
7797             'CPANPLUS::Shell::Default::Plugins::Remote'=> '0.9135',
7798             'CPANPLUS::Shell::Default::Plugins::Source'=> '0.9135',
7799             'Config'                => '5.017009',
7800             'Config::Perl::V'       => '0.17',
7801             'DBM_Filter'            => '0.05',
7802             'Data::Dumper'          => '2.142',
7803             'Digest::SHA'           => '5.82',
7804             'Encode'                => '2.48',
7805             'ExtUtils::Installed'   => '1.999003',
7806             'ExtUtils::Manifest'    => '1.63',
7807             'ExtUtils::ParseXS::Utilities'=> '3.19',
7808             'ExtUtils::Typemaps'    => '3.19',
7809             'File::CheckTree'       => '4.42',
7810             'File::DosGlob'         => '1.10',
7811             'File::Temp'            => '0.22_90',
7812             'Filter::Simple'        => '0.89',
7813             'IO'                    => '1.27',
7814             'Log::Message'          => '0.06',
7815             'Log::Message::Config'  => '0.06',
7816             'Log::Message::Handlers'=> '0.06',
7817             'Log::Message::Item'    => '0.06',
7818             'Log::Message::Simple'  => '0.10',
7819             'Math::BigInt'          => '1.999',
7820             'Module::CoreList'      => '2.82',
7821             'Module::CoreList::TieHashDelta'=> '2.82',
7822             'Module::Load'          => '0.24',
7823             'Module::Pluggable'     => '4.6',
7824             'Module::Pluggable::Object'=> '4.6',
7825             'OS2::DLL'              => '1.05',
7826             'OS2::ExtAttr'          => '0.03',
7827             'OS2::Process'          => '1.08',
7828             'Object::Accessor'      => '0.46',
7829             'PerlIO::scalar'        => '0.16',
7830             'Pod::Checker'          => '1.60',
7831             'Pod::Find'             => '1.60',
7832             'Pod::Html'             => '1.18',
7833             'Pod::InputObjects'     => '1.60',
7834             'Pod::ParseUtils'       => '1.60',
7835             'Pod::Parser'           => '1.60',
7836             'Pod::Perldoc'          => '3.19',
7837             'Pod::Perldoc::BaseTo'  => '3.19',
7838             'Pod::Perldoc::GetOptsOO'=> '3.19',
7839             'Pod::Perldoc::ToANSI'  => '3.19',
7840             'Pod::Perldoc::ToChecker'=> '3.19',
7841             'Pod::Perldoc::ToMan'   => '3.19',
7842             'Pod::Perldoc::ToNroff' => '3.19',
7843             'Pod::Perldoc::ToPod'   => '3.19',
7844             'Pod::Perldoc::ToRtf'   => '3.19',
7845             'Pod::Perldoc::ToTerm'  => '3.19',
7846             'Pod::Perldoc::ToText'  => '3.19',
7847             'Pod::Perldoc::ToTk'    => '3.19',
7848             'Pod::Perldoc::ToXml'   => '3.19',
7849             'Pod::PlainText'        => '2.06',
7850             'Pod::Select'           => '1.60',
7851             'Pod::Usage'            => '1.61',
7852             'SelfLoader'            => '1.21',
7853             'TAP::Base'             => '3.26',
7854             'TAP::Formatter::Base'  => '3.26',
7855             'TAP::Formatter::Color' => '3.26',
7856             'TAP::Formatter::Console'=> '3.26',
7857             'TAP::Formatter::Console::ParallelSession'=> '3.26',
7858             'TAP::Formatter::Console::Session'=> '3.26',
7859             'TAP::Formatter::File'  => '3.26',
7860             'TAP::Formatter::File::Session'=> '3.26',
7861             'TAP::Formatter::Session'=> '3.26',
7862             'TAP::Harness'          => '3.26',
7863             'TAP::Object'           => '3.26',
7864             'TAP::Parser'           => '3.26',
7865             'TAP::Parser::Aggregator'=> '3.26',
7866             'TAP::Parser::Grammar'  => '3.26',
7867             'TAP::Parser::Iterator' => '3.26',
7868             'TAP::Parser::Iterator::Array'=> '3.26',
7869             'TAP::Parser::Iterator::Process'=> '3.26',
7870             'TAP::Parser::Iterator::Stream'=> '3.26',
7871             'TAP::Parser::IteratorFactory'=> '3.26',
7872             'TAP::Parser::Multiplexer'=> '3.26',
7873             'TAP::Parser::Result'   => '3.26',
7874             'TAP::Parser::Result::Bailout'=> '3.26',
7875             'TAP::Parser::Result::Comment'=> '3.26',
7876             'TAP::Parser::Result::Plan'=> '3.26',
7877             'TAP::Parser::Result::Pragma'=> '3.26',
7878             'TAP::Parser::Result::Test'=> '3.26',
7879             'TAP::Parser::Result::Unknown'=> '3.26',
7880             'TAP::Parser::Result::Version'=> '3.26',
7881             'TAP::Parser::Result::YAML'=> '3.26',
7882             'TAP::Parser::ResultFactory'=> '3.26',
7883             'TAP::Parser::Scheduler'=> '3.26',
7884             'TAP::Parser::Scheduler::Job'=> '3.26',
7885             'TAP::Parser::Scheduler::Spinner'=> '3.26',
7886             'TAP::Parser::Source'   => '3.26',
7887             'TAP::Parser::SourceHandler'=> '3.26',
7888             'TAP::Parser::SourceHandler::Executable'=> '3.26',
7889             'TAP::Parser::SourceHandler::File'=> '3.26',
7890             'TAP::Parser::SourceHandler::Handle'=> '3.26',
7891             'TAP::Parser::SourceHandler::Perl'=> '3.26',
7892             'TAP::Parser::SourceHandler::RawTAP'=> '3.26',
7893             'TAP::Parser::Utils'    => '3.26',
7894             'TAP::Parser::YAMLish::Reader'=> '3.26',
7895             'TAP::Parser::YAMLish::Writer'=> '3.26',
7896             'Term::UI'              => '0.34',
7897             'Test::Harness'         => '3.26',
7898             'Text::Soundex'         => '3.04',
7899             'Thread::Queue'         => '3.02',
7900             'Unicode::UCD'          => '0.50',
7901             'Win32'                 => '0.46',
7902             'Win32API::File'        => '0.1201',
7903             '_charnames'            => '1.36',
7904             'arybase'               => '0.06',
7905             'bigint'                => '0.32',
7906             'bignum'                => '0.32',
7907             'charnames'             => '1.36',
7908             'filetest'              => '1.03',
7909             'locale'                => '1.02',
7910             'overload'              => '1.21',
7911             'warnings'              => '1.17',
7912         },
7913         removed => {
7914         }
7915     },
7916     5.017010 => {
7917         delta_from => 5.017009,
7918         changed => {
7919             'Benchmark'             => '1.15',
7920             'Config'                => '5.017009',
7921             'Data::Dumper'          => '2.145',
7922             'Digest::SHA'           => '5.84',
7923             'Encode'                => '2.49',
7924             'ExtUtils::Command::MM' => '6.65_01',
7925             'ExtUtils::Liblist'     => '6.65_01',
7926             'ExtUtils::Liblist::Kid'=> '6.65_01',
7927             'ExtUtils::MM'          => '6.65_01',
7928             'ExtUtils::MM_AIX'      => '6.65_01',
7929             'ExtUtils::MM_Any'      => '6.65_01',
7930             'ExtUtils::MM_BeOS'     => '6.65_01',
7931             'ExtUtils::MM_Cygwin'   => '6.65_01',
7932             'ExtUtils::MM_DOS'      => '6.65_01',
7933             'ExtUtils::MM_Darwin'   => '6.65_01',
7934             'ExtUtils::MM_MacOS'    => '6.65_01',
7935             'ExtUtils::MM_NW5'      => '6.65_01',
7936             'ExtUtils::MM_OS2'      => '6.65_01',
7937             'ExtUtils::MM_QNX'      => '6.65_01',
7938             'ExtUtils::MM_UWIN'     => '6.65_01',
7939             'ExtUtils::MM_Unix'     => '6.65_01',
7940             'ExtUtils::MM_VMS'      => '6.65_01',
7941             'ExtUtils::MM_VOS'      => '6.65_01',
7942             'ExtUtils::MM_Win32'    => '6.65_01',
7943             'ExtUtils::MM_Win95'    => '6.65_01',
7944             'ExtUtils::MY'          => '6.65_01',
7945             'ExtUtils::MakeMaker'   => '6.65_01',
7946             'ExtUtils::MakeMaker::Config'=> '6.65_01',
7947             'ExtUtils::Mkbootstrap' => '6.65_01',
7948             'ExtUtils::Mksymlists'  => '6.65_01',
7949             'ExtUtils::testlib'     => '6.65_01',
7950             'File::Copy'            => '2.26',
7951             'File::Temp'            => '0.23',
7952             'Getopt::Long'          => '2.39',
7953             'Hash::Util'            => '0.15',
7954             'I18N::Langinfo'        => '0.10',
7955             'IPC::Cmd'              => '0.80',
7956             'JSON::PP'              => '2.27202',
7957             'Locale::Codes'         => '3.25',
7958             'Locale::Codes::Constants'=> '3.25',
7959             'Locale::Codes::Country'=> '3.25',
7960             'Locale::Codes::Country_Codes'=> '3.25',
7961             'Locale::Codes::Country_Retired'=> '3.25',
7962             'Locale::Codes::Currency'=> '3.25',
7963             'Locale::Codes::Currency_Codes'=> '3.25',
7964             'Locale::Codes::Currency_Retired'=> '3.25',
7965             'Locale::Codes::LangExt'=> '3.25',
7966             'Locale::Codes::LangExt_Codes'=> '3.25',
7967             'Locale::Codes::LangExt_Retired'=> '3.25',
7968             'Locale::Codes::LangFam'=> '3.25',
7969             'Locale::Codes::LangFam_Codes'=> '3.25',
7970             'Locale::Codes::LangFam_Retired'=> '3.25',
7971             'Locale::Codes::LangVar'=> '3.25',
7972             'Locale::Codes::LangVar_Codes'=> '3.25',
7973             'Locale::Codes::LangVar_Retired'=> '3.25',
7974             'Locale::Codes::Language'=> '3.25',
7975             'Locale::Codes::Language_Codes'=> '3.25',
7976             'Locale::Codes::Language_Retired'=> '3.25',
7977             'Locale::Codes::Script' => '3.25',
7978             'Locale::Codes::Script_Codes'=> '3.25',
7979             'Locale::Codes::Script_Retired'=> '3.25',
7980             'Locale::Country'       => '3.25',
7981             'Locale::Currency'      => '3.25',
7982             'Locale::Language'      => '3.25',
7983             'Locale::Script'        => '3.25',
7984             'Math::BigFloat'        => '1.998',
7985             'Math::BigFloat::Trace' => '0.32',
7986             'Math::BigInt'          => '1.9991',
7987             'Math::BigInt::CalcEmu' => '1.998',
7988             'Math::BigInt::Trace'   => '0.32',
7989             'Math::BigRat'          => '0.2604',
7990             'Module::CoreList'      => '2.84',
7991             'Module::CoreList::TieHashDelta'=> '2.84',
7992             'Module::Pluggable'     => '4.7',
7993             'Net::Ping'             => '2.41',
7994             'Perl::OSType'          => '1.003',
7995             'Pod::Simple'           => '3.26',
7996             'Pod::Simple::BlackBox' => '3.26',
7997             'Pod::Simple::Checker'  => '3.26',
7998             'Pod::Simple::Debug'    => '3.26',
7999             'Pod::Simple::DumpAsText'=> '3.26',
8000             'Pod::Simple::DumpAsXML'=> '3.26',
8001             'Pod::Simple::HTML'     => '3.26',
8002             'Pod::Simple::HTMLBatch'=> '3.26',
8003             'Pod::Simple::LinkSection'=> '3.26',
8004             'Pod::Simple::Methody'  => '3.26',
8005             'Pod::Simple::Progress' => '3.26',
8006             'Pod::Simple::PullParser'=> '3.26',
8007             'Pod::Simple::PullParserEndToken'=> '3.26',
8008             'Pod::Simple::PullParserStartToken'=> '3.26',
8009             'Pod::Simple::PullParserTextToken'=> '3.26',
8010             'Pod::Simple::PullParserToken'=> '3.26',
8011             'Pod::Simple::RTF'      => '3.26',
8012             'Pod::Simple::Search'   => '3.26',
8013             'Pod::Simple::SimpleTree'=> '3.26',
8014             'Pod::Simple::Text'     => '3.26',
8015             'Pod::Simple::TextContent'=> '3.26',
8016             'Pod::Simple::TiedOutFH'=> '3.26',
8017             'Pod::Simple::Transcode'=> '3.26',
8018             'Pod::Simple::TranscodeDumb'=> '3.26',
8019             'Pod::Simple::TranscodeSmart'=> '3.26',
8020             'Pod::Simple::XHTML'    => '3.26',
8021             'Pod::Simple::XMLOutStream'=> '3.26',
8022             'Safe'                  => '2.35',
8023             'Term::ReadLine'        => '1.12',
8024             'Text::ParseWords'      => '3.28',
8025             'Tie::File'             => '0.99',
8026             'Unicode::UCD'          => '0.51',
8027             'Win32'                 => '0.47',
8028             'bigint'                => '0.33',
8029             'bignum'                => '0.33',
8030             'bigrat'                => '0.33',
8031             'constant'              => '1.27',
8032             'perlfaq'               => '5.0150042',
8033             'version'               => '0.9902',
8034         },
8035         removed => {
8036         }
8037     },
8038     5.017011 => {
8039         delta_from => 5.017010,
8040         changed => {
8041             'App::Cpan'             => '1.61',
8042             'B::Deparse'            => '1.20',
8043             'Config'                => '5.017009',
8044             'Exporter'              => '5.68',
8045             'Exporter::Heavy'       => '5.68',
8046             'ExtUtils::CBuilder'    => '0.280210',
8047             'ExtUtils::Command::MM' => '6.66',
8048             'ExtUtils::Liblist'     => '6.66',
8049             'ExtUtils::Liblist::Kid'=> '6.66',
8050             'ExtUtils::MM'          => '6.66',
8051             'ExtUtils::MM_AIX'      => '6.66',
8052             'ExtUtils::MM_Any'      => '6.66',
8053             'ExtUtils::MM_BeOS'     => '6.66',
8054             'ExtUtils::MM_Cygwin'   => '6.66',
8055             'ExtUtils::MM_DOS'      => '6.66',
8056             'ExtUtils::MM_Darwin'   => '6.66',
8057             'ExtUtils::MM_MacOS'    => '6.66',
8058             'ExtUtils::MM_NW5'      => '6.66',
8059             'ExtUtils::MM_OS2'      => '6.66',
8060             'ExtUtils::MM_QNX'      => '6.66',
8061             'ExtUtils::MM_UWIN'     => '6.66',
8062             'ExtUtils::MM_Unix'     => '6.66',
8063             'ExtUtils::MM_VMS'      => '6.66',
8064             'ExtUtils::MM_VOS'      => '6.66',
8065             'ExtUtils::MM_Win32'    => '6.66',
8066             'ExtUtils::MM_Win95'    => '6.66',
8067             'ExtUtils::MY'          => '6.66',
8068             'ExtUtils::MakeMaker'   => '6.66',
8069             'ExtUtils::MakeMaker::Config'=> '6.66',
8070             'ExtUtils::Mkbootstrap' => '6.66',
8071             'ExtUtils::Mksymlists'  => '6.66',
8072             'ExtUtils::testlib'     => '6.66',
8073             'File::Glob'            => '1.20',
8074             'IO'                    => '1.28',
8075             'Module::CoreList'      => '2.87',
8076             'Module::CoreList::TieHashDelta'=> '2.87',
8077             'Storable'              => '2.41',
8078             'bigint'                => '0.34',
8079             'mro'                   => '1.11',
8080             'overload'              => '1.22',
8081             'warnings'              => '1.18',
8082         },
8083         removed => {
8084         }
8085     },
8086     5.018000 => {
8087         delta_from => 5.017011,
8088         changed => {
8089             'Carp'                  => '1.29',
8090             'Carp::Heavy'           => '1.29',
8091             'Config'                => '5.018000',
8092             'Hash::Util'            => '0.16',
8093             'IO::Handle'            => '1.34',
8094             'IO::Socket'            => '1.36',
8095             'Module::CoreList'      => '2.89',
8096             'Module::CoreList::TieHashDelta'=> '2.89',
8097             'Pod::Simple'           => '3.28',
8098             'Pod::Simple::BlackBox' => '3.28',
8099             'Pod::Simple::Checker'  => '3.28',
8100             'Pod::Simple::Debug'    => '3.28',
8101             'Pod::Simple::DumpAsText'=> '3.28',
8102             'Pod::Simple::DumpAsXML'=> '3.28',
8103             'Pod::Simple::HTML'     => '3.28',
8104             'Pod::Simple::HTMLBatch'=> '3.28',
8105             'Pod::Simple::LinkSection'=> '3.28',
8106             'Pod::Simple::Methody'  => '3.28',
8107             'Pod::Simple::Progress' => '3.28',
8108             'Pod::Simple::PullParser'=> '3.28',
8109             'Pod::Simple::PullParserEndToken'=> '3.28',
8110             'Pod::Simple::PullParserStartToken'=> '3.28',
8111             'Pod::Simple::PullParserTextToken'=> '3.28',
8112             'Pod::Simple::PullParserToken'=> '3.28',
8113             'Pod::Simple::RTF'      => '3.28',
8114             'Pod::Simple::Search'   => '3.28',
8115             'Pod::Simple::SimpleTree'=> '3.28',
8116             'Pod::Simple::Text'     => '3.28',
8117             'Pod::Simple::TextContent'=> '3.28',
8118             'Pod::Simple::TiedOutFH'=> '3.28',
8119             'Pod::Simple::Transcode'=> '3.28',
8120             'Pod::Simple::TranscodeDumb'=> '3.28',
8121             'Pod::Simple::TranscodeSmart'=> '3.28',
8122             'Pod::Simple::XHTML'    => '3.28',
8123             'Pod::Simple::XMLOutStream'=> '3.28',
8124         },
8125         removed => {
8126         }
8127     },
8128     5.018001 => {
8129         delta_from => 5.018000,
8130         changed => {
8131             'B'                     => '1.42_01',
8132             'Config'                => '5.018001',
8133             'Digest::SHA'           => '5.84_01',
8134             'Module::CoreList'      => '2.96',
8135             'Module::CoreList::TieHashDelta'=> '2.96',
8136             'Module::CoreList::Utils'=> '2.96',
8137         },
8138         removed => {
8139            'VMS::Filespec'         => 1,
8140         }
8141     },
8142     5.018002 => {
8143         delta_from => 5.018001,
8144         changed => {
8145             'B'                     => '1.42_02',
8146             'B::Concise'            => '0.95_01',
8147             'Config'                => '5.018002',
8148             'File::Glob'            => '1.20_01',
8149             'Module::CoreList'      => '3.03',
8150             'Module::CoreList::TieHashDelta'=> '3.03',
8151             'Module::CoreList::Utils'=> '3.03',
8152         },
8153     },
8154     5.018003 => {
8155         delta_from => 5.018002,
8156         changed => {
8157             'Config'                => '5.018003',
8158             'Digest::SHA'           => '5.84_02',
8159             'Module::CoreList'      => '3.12',
8160             'Module::CoreList::TieHashDelta'=> '3.12',
8161             'Module::CoreList::Utils'=> '3.12',
8162         },
8163     },
8164     5.018004 => {
8165         delta_from => 5.018003,
8166         changed => {
8167             'Config'                => '5.018004',
8168             'Module::CoreList'      => '3.13',
8169             'Module::CoreList::TieHashDelta'=> '3.13',
8170             'Module::CoreList::Utils'=> '3.13',
8171         },
8172     },
8173     5.019000 => {
8174         delta_from => 5.018000,
8175         changed => {
8176             'Config'                => '5.019000',
8177             'Getopt::Std'           => '1.08',
8178             'Module::CoreList'      => '2.91',
8179             'Module::CoreList::TieHashDelta'=> '2.91',
8180             'Storable'              => '2.42',
8181             'feature'               => '1.33',
8182             'utf8'                  => '1.11',
8183         },
8184         removed => {
8185            'Archive::Extract'      => 1,
8186            'B::Lint'               => 1,
8187            'B::Lint::Debug'        => 1,
8188            'CPANPLUS'              => 1,
8189            'CPANPLUS::Backend'     => 1,
8190            'CPANPLUS::Backend::RV' => 1,
8191            'CPANPLUS::Config'      => 1,
8192            'CPANPLUS::Config::HomeEnv'=> 1,
8193            'CPANPLUS::Configure'   => 1,
8194            'CPANPLUS::Configure::Setup'=> 1,
8195            'CPANPLUS::Dist'        => 1,
8196            'CPANPLUS::Dist::Autobundle'=> 1,
8197            'CPANPLUS::Dist::Base'  => 1,
8198            'CPANPLUS::Dist::Build' => 1,
8199            'CPANPLUS::Dist::Build::Constants'=> 1,
8200            'CPANPLUS::Dist::MM'    => 1,
8201            'CPANPLUS::Dist::Sample'=> 1,
8202            'CPANPLUS::Error'       => 1,
8203            'CPANPLUS::Internals'   => 1,
8204            'CPANPLUS::Internals::Constants'=> 1,
8205            'CPANPLUS::Internals::Constants::Report'=> 1,
8206            'CPANPLUS::Internals::Extract'=> 1,
8207            'CPANPLUS::Internals::Fetch'=> 1,
8208            'CPANPLUS::Internals::Report'=> 1,
8209            'CPANPLUS::Internals::Search'=> 1,
8210            'CPANPLUS::Internals::Source'=> 1,
8211            'CPANPLUS::Internals::Source::Memory'=> 1,
8212            'CPANPLUS::Internals::Source::SQLite'=> 1,
8213            'CPANPLUS::Internals::Source::SQLite::Tie'=> 1,
8214            'CPANPLUS::Internals::Utils'=> 1,
8215            'CPANPLUS::Internals::Utils::Autoflush'=> 1,
8216            'CPANPLUS::Module'      => 1,
8217            'CPANPLUS::Module::Author'=> 1,
8218            'CPANPLUS::Module::Author::Fake'=> 1,
8219            'CPANPLUS::Module::Checksums'=> 1,
8220            'CPANPLUS::Module::Fake'=> 1,
8221            'CPANPLUS::Module::Signature'=> 1,
8222            'CPANPLUS::Selfupdate'  => 1,
8223            'CPANPLUS::Shell'       => 1,
8224            'CPANPLUS::Shell::Classic'=> 1,
8225            'CPANPLUS::Shell::Default'=> 1,
8226            'CPANPLUS::Shell::Default::Plugins::CustomSource'=> 1,
8227            'CPANPLUS::Shell::Default::Plugins::Remote'=> 1,
8228            'CPANPLUS::Shell::Default::Plugins::Source'=> 1,
8229            'Devel::InnerPackage'   => 1,
8230            'File::CheckTree'       => 1,
8231            'Log::Message'          => 1,
8232            'Log::Message::Config'  => 1,
8233            'Log::Message::Handlers'=> 1,
8234            'Log::Message::Item'    => 1,
8235            'Log::Message::Simple'  => 1,
8236            'Module::Pluggable'     => 1,
8237            'Module::Pluggable::Object'=> 1,
8238            'Object::Accessor'      => 1,
8239            'Pod::LaTeX'            => 1,
8240            'Term::UI'              => 1,
8241            'Term::UI::History'     => 1,
8242            'Text::Soundex'         => 1,
8243         }
8244     },
8245     5.019001 => {
8246         delta_from => 5.019000,
8247         changed => {
8248             'App::Prove'            => '3.28',
8249             'App::Prove::State'     => '3.28',
8250             'App::Prove::State::Result'=> '3.28',
8251             'App::Prove::State::Result::Test'=> '3.28',
8252             'Archive::Tar'          => '1.92',
8253             'Archive::Tar::Constant'=> '1.92',
8254             'Archive::Tar::File'    => '1.92',
8255             'Attribute::Handlers'   => '0.95',
8256             'B'                     => '1.43',
8257             'B::Concise'            => '0.96',
8258             'B::Deparse'            => '1.21',
8259             'B::Showlex'            => '1.04',
8260             'Benchmark'             => '1.16',
8261             'CPAN::Meta'            => '2.131560',
8262             'CPAN::Meta::Converter' => '2.131560',
8263             'CPAN::Meta::Feature'   => '2.131560',
8264             'CPAN::Meta::History'   => '2.131560',
8265             'CPAN::Meta::Prereqs'   => '2.131560',
8266             'CPAN::Meta::Spec'      => '2.131560',
8267             'CPAN::Meta::Validator' => '2.131560',
8268             'Carp'                  => '1.30',
8269             'Carp::Heavy'           => '1.30',
8270             'Compress::Raw::Bzip2'  => '2.061',
8271             'Compress::Raw::Zlib'   => '2.061',
8272             'Compress::Zlib'        => '2.061',
8273             'Config'                => '5.019001',
8274             'Config::Perl::V'       => '0.18',
8275             'Cwd'                   => '3.41',
8276             'DB'                    => '1.06',
8277             'DB_File'               => '1.828',
8278             'Data::Dumper'          => '2.146',
8279             'Encode'                => '2.51',
8280             'Encode::CN::HZ'        => '2.06',
8281             'Encode::GSM0338'       => '2.03',
8282             'Encode::Unicode::UTF7' => '2.07',
8283             'ExtUtils::CBuilder::Base'=> '0.280210',
8284             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280210',
8285             'ExtUtils::Command::MM' => '6.68',
8286             'ExtUtils::Install'     => '1.60',
8287             'ExtUtils::Liblist'     => '6.68',
8288             'ExtUtils::Liblist::Kid'=> '6.68',
8289             'ExtUtils::MM'          => '6.68',
8290             'ExtUtils::MM_AIX'      => '6.68',
8291             'ExtUtils::MM_Any'      => '6.68',
8292             'ExtUtils::MM_BeOS'     => '6.68',
8293             'ExtUtils::MM_Cygwin'   => '6.68',
8294             'ExtUtils::MM_DOS'      => '6.68',
8295             'ExtUtils::MM_Darwin'   => '6.68',
8296             'ExtUtils::MM_MacOS'    => '6.68',
8297             'ExtUtils::MM_NW5'      => '6.68',
8298             'ExtUtils::MM_OS2'      => '6.68',
8299             'ExtUtils::MM_QNX'      => '6.68',
8300             'ExtUtils::MM_UWIN'     => '6.68',
8301             'ExtUtils::MM_Unix'     => '6.68',
8302             'ExtUtils::MM_VMS'      => '6.68',
8303             'ExtUtils::MM_VOS'      => '6.68',
8304             'ExtUtils::MM_Win32'    => '6.68',
8305             'ExtUtils::MM_Win95'    => '6.68',
8306             'ExtUtils::MY'          => '6.68',
8307             'ExtUtils::MakeMaker'   => '6.68',
8308             'ExtUtils::MakeMaker::Config'=> '6.68',
8309             'ExtUtils::Mkbootstrap' => '6.68',
8310             'ExtUtils::Mksymlists'  => '6.68',
8311             'ExtUtils::ParseXS'     => '3.19',
8312             'ExtUtils::testlib'     => '6.68',
8313             'Fatal'                 => '2.19',
8314             'File::Copy'            => '2.27',
8315             'File::DosGlob'         => '1.11',
8316             'File::Fetch'           => '0.42',
8317             'File::Find'            => '1.24',
8318             'File::Spec'            => '3.41',
8319             'File::Spec::Cygwin'    => '3.41',
8320             'File::Spec::Epoc'      => '3.41',
8321             'File::Spec::Mac'       => '3.41',
8322             'File::Spec::OS2'       => '3.41',
8323             'File::Spec::Unix'      => '3.41',
8324             'File::Spec::VMS'       => '3.41',
8325             'File::Spec::Win32'     => '3.41',
8326             'File::Temp'            => '0.2301',
8327             'Filter::Simple'        => '0.90',
8328             'Filter::Util::Call'    => '1.49',
8329             'Getopt::Long'          => '2.4',
8330             'HTTP::Tiny'            => '0.031',
8331             'Hash::Util::FieldHash' => '1.11',
8332             'IO::Compress::Adapter::Bzip2'=> '2.061',
8333             'IO::Compress::Adapter::Deflate'=> '2.061',
8334             'IO::Compress::Adapter::Identity'=> '2.061',
8335             'IO::Compress::Base'    => '2.061',
8336             'IO::Compress::Base::Common'=> '2.061',
8337             'IO::Compress::Bzip2'   => '2.061',
8338             'IO::Compress::Deflate' => '2.061',
8339             'IO::Compress::Gzip'    => '2.061',
8340             'IO::Compress::Gzip::Constants'=> '2.061',
8341             'IO::Compress::RawDeflate'=> '2.061',
8342             'IO::Compress::Zip'     => '2.061',
8343             'IO::Compress::Zip::Constants'=> '2.061',
8344             'IO::Compress::Zlib::Constants'=> '2.061',
8345             'IO::Compress::Zlib::Extra'=> '2.061',
8346             'IO::Handle'            => '1.35',
8347             'IO::Uncompress::Adapter::Bunzip2'=> '2.061',
8348             'IO::Uncompress::Adapter::Identity'=> '2.061',
8349             'IO::Uncompress::Adapter::Inflate'=> '2.061',
8350             'IO::Uncompress::AnyInflate'=> '2.061',
8351             'IO::Uncompress::AnyUncompress'=> '2.061',
8352             'IO::Uncompress::Base'  => '2.061',
8353             'IO::Uncompress::Bunzip2'=> '2.061',
8354             'IO::Uncompress::Gunzip'=> '2.061',
8355             'IO::Uncompress::Inflate'=> '2.061',
8356             'IO::Uncompress::RawInflate'=> '2.061',
8357             'IO::Uncompress::Unzip' => '2.061',
8358             'IPC::Open3'            => '1.14',
8359             'Locale::Codes'         => '3.26',
8360             'Locale::Codes::Constants'=> '3.26',
8361             'Locale::Codes::Country'=> '3.26',
8362             'Locale::Codes::Country_Codes'=> '3.26',
8363             'Locale::Codes::Country_Retired'=> '3.26',
8364             'Locale::Codes::Currency'=> '3.26',
8365             'Locale::Codes::Currency_Codes'=> '3.26',
8366             'Locale::Codes::Currency_Retired'=> '3.26',
8367             'Locale::Codes::LangExt'=> '3.26',
8368             'Locale::Codes::LangExt_Codes'=> '3.26',
8369             'Locale::Codes::LangExt_Retired'=> '3.26',
8370             'Locale::Codes::LangFam'=> '3.26',
8371             'Locale::Codes::LangFam_Codes'=> '3.26',
8372             'Locale::Codes::LangFam_Retired'=> '3.26',
8373             'Locale::Codes::LangVar'=> '3.26',
8374             'Locale::Codes::LangVar_Codes'=> '3.26',
8375             'Locale::Codes::LangVar_Retired'=> '3.26',
8376             'Locale::Codes::Language'=> '3.26',
8377             'Locale::Codes::Language_Codes'=> '3.26',
8378             'Locale::Codes::Language_Retired'=> '3.26',
8379             'Locale::Codes::Script' => '3.26',
8380             'Locale::Codes::Script_Codes'=> '3.26',
8381             'Locale::Codes::Script_Retired'=> '3.26',
8382             'Locale::Country'       => '3.26',
8383             'Locale::Currency'      => '3.26',
8384             'Locale::Language'      => '3.26',
8385             'Locale::Maketext'      => '1.24',
8386             'Locale::Script'        => '3.26',
8387             'Math::BigFloat'        => '1.999',
8388             'Math::BigInt'          => '1.9992',
8389             'Math::BigInt::Calc'    => '1.998',
8390             'Math::BigInt::CalcEmu' => '1.9991',
8391             'Math::BigRat'          => '0.2606',
8392             'Module::Build'         => '0.4005',
8393             'Module::Build::Base'   => '0.4005',
8394             'Module::Build::Compat' => '0.4005',
8395             'Module::Build::Config' => '0.4005',
8396             'Module::Build::Cookbook'=> '0.4005',
8397             'Module::Build::Dumper' => '0.4005',
8398             'Module::Build::ModuleInfo'=> '0.4005',
8399             'Module::Build::Notes'  => '0.4005',
8400             'Module::Build::PPMMaker'=> '0.4005',
8401             'Module::Build::Platform::Amiga'=> '0.4005',
8402             'Module::Build::Platform::Default'=> '0.4005',
8403             'Module::Build::Platform::EBCDIC'=> '0.4005',
8404             'Module::Build::Platform::MPEiX'=> '0.4005',
8405             'Module::Build::Platform::MacOS'=> '0.4005',
8406             'Module::Build::Platform::RiscOS'=> '0.4005',
8407             'Module::Build::Platform::Unix'=> '0.4005',
8408             'Module::Build::Platform::VMS'=> '0.4005',
8409             'Module::Build::Platform::VOS'=> '0.4005',
8410             'Module::Build::Platform::Windows'=> '0.4005',
8411             'Module::Build::Platform::aix'=> '0.4005',
8412             'Module::Build::Platform::cygwin'=> '0.4005',
8413             'Module::Build::Platform::darwin'=> '0.4005',
8414             'Module::Build::Platform::os2'=> '0.4005',
8415             'Module::Build::PodParser'=> '0.4005',
8416             'Module::CoreList'      => '2.92',
8417             'Module::CoreList::TieHashDelta'=> '2.92',
8418             'Module::CoreList::Utils'=> '2.92',
8419             'Module::Metadata'      => '1.000014',
8420             'Net::Ping'             => '2.42',
8421             'OS2::Process'          => '1.09',
8422             'POSIX'                 => '1.33',
8423             'Pod::Find'             => '1.61',
8424             'Pod::Html'             => '1.19',
8425             'Pod::InputObjects'     => '1.61',
8426             'Pod::ParseUtils'       => '1.61',
8427             'Pod::Parser'           => '1.61',
8428             'Pod::Perldoc'          => '3.20',
8429             'Pod::Perldoc::BaseTo'  => '3.20',
8430             'Pod::Perldoc::GetOptsOO'=> '3.20',
8431             'Pod::Perldoc::ToANSI'  => '3.20',
8432             'Pod::Perldoc::ToChecker'=> '3.20',
8433             'Pod::Perldoc::ToMan'   => '3.20',
8434             'Pod::Perldoc::ToNroff' => '3.20',
8435             'Pod::Perldoc::ToPod'   => '3.20',
8436             'Pod::Perldoc::ToRtf'   => '3.20',
8437             'Pod::Perldoc::ToTerm'  => '3.20',
8438             'Pod::Perldoc::ToText'  => '3.20',
8439             'Pod::Perldoc::ToTk'    => '3.20',
8440             'Pod::Perldoc::ToXml'   => '3.20',
8441             'Pod::Select'           => '1.61',
8442             'Pod::Usage'            => '1.63',
8443             'Safe'                  => '2.36',
8444             'Storable'              => '2.43',
8445             'Sys::Hostname'         => '1.18',
8446             'Sys::Syslog'           => '0.33',
8447             'TAP::Base'             => '3.28',
8448             'TAP::Formatter::Base'  => '3.28',
8449             'TAP::Formatter::Color' => '3.28',
8450             'TAP::Formatter::Console'=> '3.28',
8451             'TAP::Formatter::Console::ParallelSession'=> '3.28',
8452             'TAP::Formatter::Console::Session'=> '3.28',
8453             'TAP::Formatter::File'  => '3.28',
8454             'TAP::Formatter::File::Session'=> '3.28',
8455             'TAP::Formatter::Session'=> '3.28',
8456             'TAP::Harness'          => '3.28',
8457             'TAP::Object'           => '3.28',
8458             'TAP::Parser'           => '3.28',
8459             'TAP::Parser::Aggregator'=> '3.28',
8460             'TAP::Parser::Grammar'  => '3.28',
8461             'TAP::Parser::Iterator' => '3.28',
8462             'TAP::Parser::Iterator::Array'=> '3.28',
8463             'TAP::Parser::Iterator::Process'=> '3.28',
8464             'TAP::Parser::Iterator::Stream'=> '3.28',
8465             'TAP::Parser::IteratorFactory'=> '3.28',
8466             'TAP::Parser::Multiplexer'=> '3.28',
8467             'TAP::Parser::Result'   => '3.28',
8468             'TAP::Parser::Result::Bailout'=> '3.28',
8469             'TAP::Parser::Result::Comment'=> '3.28',
8470             'TAP::Parser::Result::Plan'=> '3.28',
8471             'TAP::Parser::Result::Pragma'=> '3.28',
8472             'TAP::Parser::Result::Test'=> '3.28',
8473             'TAP::Parser::Result::Unknown'=> '3.28',
8474             'TAP::Parser::Result::Version'=> '3.28',
8475             'TAP::Parser::Result::YAML'=> '3.28',
8476             'TAP::Parser::ResultFactory'=> '3.28',
8477             'TAP::Parser::Scheduler'=> '3.28',
8478             'TAP::Parser::Scheduler::Job'=> '3.28',
8479             'TAP::Parser::Scheduler::Spinner'=> '3.28',
8480             'TAP::Parser::Source'   => '3.28',
8481             'TAP::Parser::SourceHandler'=> '3.28',
8482             'TAP::Parser::SourceHandler::Executable'=> '3.28',
8483             'TAP::Parser::SourceHandler::File'=> '3.28',
8484             'TAP::Parser::SourceHandler::Handle'=> '3.28',
8485             'TAP::Parser::SourceHandler::Perl'=> '3.28',
8486             'TAP::Parser::SourceHandler::RawTAP'=> '3.28',
8487             'TAP::Parser::Utils'    => '3.28',
8488             'TAP::Parser::YAMLish::Reader'=> '3.28',
8489             'TAP::Parser::YAMLish::Writer'=> '3.28',
8490             'Term::ReadLine'        => '1.13',
8491             'Test::Harness'         => '3.28',
8492             'Text::Tabs'            => '2013.0523',
8493             'Text::Wrap'            => '2013.0523',
8494             'Thread'                => '3.04',
8495             'Tie::File'             => '1.00',
8496             'Time::Piece'           => '1.2002',
8497             'Unicode::Collate'      => '0.98',
8498             'Unicode::UCD'          => '0.53',
8499             'XS::APItest'           => '0.53',
8500             '_charnames'            => '1.37',
8501             'autodie'               => '2.19',
8502             'autodie::exception'    => '2.19',
8503             'autodie::exception::system'=> '2.19',
8504             'autodie::hints'        => '2.19',
8505             'autodie::skip'         => '2.19',
8506             'bigint'                => '0.35',
8507             'charnames'             => '1.38',
8508             'encoding'              => '2.12',
8509             'inc::latest'           => '0.4005',
8510             'mro'                   => '1.12',
8511             'perlfaq'               => '5.0150043',
8512             're'                    => '0.25',
8513             'threads'               => '1.87',
8514             'threads::shared'       => '1.44',
8515             'utf8'                  => '1.12',
8516         },
8517         removed => {
8518         }
8519     },
8520     5.019002 => {
8521         delta_from => 5.019001,
8522         changed => {
8523             'B'                     => '1.44',
8524             'B::Concise'            => '0.98',
8525             'B::Deparse'            => '1.22',
8526             'Benchmark'             => '1.17',
8527             'Class::Struct'         => '0.65',
8528             'Config'                => '5.019002',
8529             'DB'                    => '1.07',
8530             'DBM_Filter'            => '0.06',
8531             'DBM_Filter::compress'  => '0.03',
8532             'DBM_Filter::encode'    => '0.03',
8533             'DBM_Filter::int32'     => '0.03',
8534             'DBM_Filter::null'      => '0.03',
8535             'DBM_Filter::utf8'      => '0.03',
8536             'DB_File'               => '1.829',
8537             'Data::Dumper'          => '2.147',
8538             'Devel::Peek'           => '1.12',
8539             'Digest::MD5'           => '2.53',
8540             'Digest::SHA'           => '5.85',
8541             'English'               => '1.07',
8542             'Errno'                 => '1.19',
8543             'ExtUtils::Embed'       => '1.31',
8544             'ExtUtils::Miniperl'    => '1',
8545             'ExtUtils::ParseXS'     => '3.21',
8546             'ExtUtils::ParseXS::Constants'=> '3.21',
8547             'ExtUtils::ParseXS::CountLines'=> '3.21',
8548             'ExtUtils::ParseXS::Eval'=> '3.19',
8549             'ExtUtils::ParseXS::Utilities'=> '3.21',
8550             'ExtUtils::Typemaps'    => '3.21',
8551             'ExtUtils::Typemaps::Cmd'=> '3.21',
8552             'ExtUtils::Typemaps::InputMap'=> '3.21',
8553             'ExtUtils::Typemaps::OutputMap'=> '3.21',
8554             'ExtUtils::Typemaps::Type'=> '3.21',
8555             'ExtUtils::XSSymSet'    => '1.3',
8556             'Fatal'                 => '2.20',
8557             'File::Basename'        => '2.85',
8558             'File::Spec::VMS'       => '3.43',
8559             'File::Spec::Win32'     => '3.42',
8560             'Getopt::Long'          => '2.41',
8561             'Getopt::Std'           => '1.09',
8562             'HTTP::Tiny'            => '0.034',
8563             'Hash::Util::FieldHash' => '1.12',
8564             'I18N::Langinfo'        => '0.11',
8565             'IO::Socket::INET'      => '1.34',
8566             'IO::Socket::UNIX'      => '1.25',
8567             'IPC::Cmd'              => '0.82',
8568             'MIME::Base64'          => '3.14',
8569             'Module::CoreList'      => '2.94',
8570             'Module::CoreList::TieHashDelta'=> '2.94',
8571             'Module::CoreList::Utils'=> '2.94',
8572             'POSIX'                 => '1.34',
8573             'Params::Check'         => '0.38',
8574             'Parse::CPAN::Meta'     => '1.4405',
8575             'Pod::Functions'        => '1.07',
8576             'Pod::Html'             => '1.2',
8577             'Safe'                  => '2.37',
8578             'Socket'                => '2.010',
8579             'Storable'              => '2.45',
8580             'Text::ParseWords'      => '3.29',
8581             'Tie::Array'            => '1.06',
8582             'Tie::Hash'             => '1.05',
8583             'Tie::Scalar'           => '1.03',
8584             'Time::Piece'           => '1.21',
8585             'Time::Seconds'         => '1.21',
8586             'XS::APItest'           => '0.54',
8587             'autodie'               => '2.20',
8588             'autodie::exception'    => '2.20',
8589             'autodie::exception::system'=> '2.20',
8590             'autodie::hints'        => '2.20',
8591             'autodie::skip'         => '2.20',
8592             'base'                  => '2.19',
8593             'deprecate'             => '0.03',
8594             'if'                    => '0.0603',
8595             'integer'               => '1.01',
8596             'strict'                => '1.08',
8597             'subs'                  => '1.02',
8598             'vmsish'                => '1.04',
8599         },
8600         removed => {
8601         }
8602     },
8603     5.019003 => {
8604         delta_from => 5.019002,
8605         changed => {
8606             'B'                     => '1.45',
8607             'CPAN::Meta'            => '2.132140',
8608             'CPAN::Meta::Converter' => '2.132140',
8609             'CPAN::Meta::Feature'   => '2.132140',
8610             'CPAN::Meta::History'   => '2.132140',
8611             'CPAN::Meta::Prereqs'   => '2.132140',
8612             'CPAN::Meta::Spec'      => '2.132140',
8613             'CPAN::Meta::Validator' => '2.132140',
8614             'Carp'                  => '1.31',
8615             'Carp::Heavy'           => '1.31',
8616             'Compress::Raw::Bzip2'  => '2.062',
8617             'Compress::Raw::Zlib'   => '2.062',
8618             'Compress::Zlib'        => '2.062',
8619             'Config'                => '5.019003',
8620             'Config::Perl::V'       => '0.19',
8621             'Cwd'                   => '3.44',
8622             'Data::Dumper'          => '2.148',
8623             'Devel::PPPort'         => '3.21',
8624             'Devel::Peek'           => '1.13',
8625             'DynaLoader'            => '1.19',
8626             'Encode'                => '2.52',
8627             'Encode::Alias'         => '2.17',
8628             'Encode::Encoding'      => '2.06',
8629             'Encode::GSM0338'       => '2.04',
8630             'Encode::MIME::Header'  => '2.14',
8631             'Encode::Unicode'       => '2.08',
8632             'English'               => '1.08',
8633             'Exporter'              => '5.69',
8634             'Exporter::Heavy'       => '5.69',
8635             'ExtUtils::Command::MM' => '6.72',
8636             'ExtUtils::Liblist'     => '6.72',
8637             'ExtUtils::Liblist::Kid'=> '6.72',
8638             'ExtUtils::MM'          => '6.72',
8639             'ExtUtils::MM_AIX'      => '6.72',
8640             'ExtUtils::MM_Any'      => '6.72',
8641             'ExtUtils::MM_BeOS'     => '6.72',
8642             'ExtUtils::MM_Cygwin'   => '6.72',
8643             'ExtUtils::MM_DOS'      => '6.72',
8644             'ExtUtils::MM_Darwin'   => '6.72',
8645             'ExtUtils::MM_MacOS'    => '6.72',
8646             'ExtUtils::MM_NW5'      => '6.72',
8647             'ExtUtils::MM_OS2'      => '6.72',
8648             'ExtUtils::MM_QNX'      => '6.72',
8649             'ExtUtils::MM_UWIN'     => '6.72',
8650             'ExtUtils::MM_Unix'     => '6.72',
8651             'ExtUtils::MM_VMS'      => '6.72',
8652             'ExtUtils::MM_VOS'      => '6.72',
8653             'ExtUtils::MM_Win32'    => '6.72',
8654             'ExtUtils::MM_Win95'    => '6.72',
8655             'ExtUtils::MY'          => '6.72',
8656             'ExtUtils::MakeMaker'   => '6.72',
8657             'ExtUtils::MakeMaker::Config'=> '6.72',
8658             'ExtUtils::Mkbootstrap' => '6.72',
8659             'ExtUtils::Mksymlists'  => '6.72',
8660             'ExtUtils::ParseXS::Eval'=> '3.21',
8661             'ExtUtils::testlib'     => '6.72',
8662             'File::Spec'            => '3.44',
8663             'File::Spec::Cygwin'    => '3.44',
8664             'File::Spec::Epoc'      => '3.44',
8665             'File::Spec::Functions' => '3.44',
8666             'File::Spec::Mac'       => '3.44',
8667             'File::Spec::OS2'       => '3.44',
8668             'File::Spec::Unix'      => '3.44',
8669             'File::Spec::VMS'       => '3.44',
8670             'File::Spec::Win32'     => '3.44',
8671             'Getopt::Std'           => '1.10',
8672             'IO::Compress::Adapter::Bzip2'=> '2.062',
8673             'IO::Compress::Adapter::Deflate'=> '2.062',
8674             'IO::Compress::Adapter::Identity'=> '2.062',
8675             'IO::Compress::Base'    => '2.062',
8676             'IO::Compress::Base::Common'=> '2.062',
8677             'IO::Compress::Bzip2'   => '2.062',
8678             'IO::Compress::Deflate' => '2.062',
8679             'IO::Compress::Gzip'    => '2.062',
8680             'IO::Compress::Gzip::Constants'=> '2.062',
8681             'IO::Compress::RawDeflate'=> '2.062',
8682             'IO::Compress::Zip'     => '2.062',
8683             'IO::Compress::Zip::Constants'=> '2.062',
8684             'IO::Compress::Zlib::Constants'=> '2.062',
8685             'IO::Compress::Zlib::Extra'=> '2.062',
8686             'IO::Uncompress::Adapter::Bunzip2'=> '2.062',
8687             'IO::Uncompress::Adapter::Identity'=> '2.062',
8688             'IO::Uncompress::Adapter::Inflate'=> '2.062',
8689             'IO::Uncompress::AnyInflate'=> '2.062',
8690             'IO::Uncompress::AnyUncompress'=> '2.062',
8691             'IO::Uncompress::Base'  => '2.062',
8692             'IO::Uncompress::Bunzip2'=> '2.062',
8693             'IO::Uncompress::Gunzip'=> '2.062',
8694             'IO::Uncompress::Inflate'=> '2.062',
8695             'IO::Uncompress::RawInflate'=> '2.062',
8696             'IO::Uncompress::Unzip' => '2.062',
8697             'IPC::Cmd'              => '0.84',
8698             'IPC::Msg'              => '2.04',
8699             'IPC::Open3'            => '1.15',
8700             'IPC::Semaphore'        => '2.04',
8701             'IPC::SharedMem'        => '2.04',
8702             'IPC::SysV'             => '2.04',
8703             'List::Util'            => '1.31',
8704             'List::Util::XS'        => '1.31',
8705             'Math::BigFloat::Trace' => '0.36',
8706             'Math::BigInt::Trace'   => '0.36',
8707             'Module::Build'         => '0.4007',
8708             'Module::Build::Base'   => '0.4007',
8709             'Module::Build::Compat' => '0.4007',
8710             'Module::Build::Config' => '0.4007',
8711             'Module::Build::Cookbook'=> '0.4007',
8712             'Module::Build::Dumper' => '0.4007',
8713             'Module::Build::ModuleInfo'=> '0.4007',
8714             'Module::Build::Notes'  => '0.4007',
8715             'Module::Build::PPMMaker'=> '0.4007',
8716             'Module::Build::Platform::Default'=> '0.4007',
8717             'Module::Build::Platform::MacOS'=> '0.4007',
8718             'Module::Build::Platform::Unix'=> '0.4007',
8719             'Module::Build::Platform::VMS'=> '0.4007',
8720             'Module::Build::Platform::VOS'=> '0.4007',
8721             'Module::Build::Platform::Windows'=> '0.4007',
8722             'Module::Build::Platform::aix'=> '0.4007',
8723             'Module::Build::Platform::cygwin'=> '0.4007',
8724             'Module::Build::Platform::darwin'=> '0.4007',
8725             'Module::Build::Platform::os2'=> '0.4007',
8726             'Module::Build::PodParser'=> '0.4007',
8727             'Module::CoreList'      => '2.97',
8728             'Module::CoreList::TieHashDelta'=> '2.97',
8729             'Module::CoreList::Utils'=> '2.97',
8730             'Net::Cmd'              => '2.30',
8731             'Net::Config'           => '1.12',
8732             'Net::Domain'           => '2.22',
8733             'Net::FTP'              => '2.78',
8734             'Net::FTP::dataconn'    => '0.12',
8735             'Net::NNTP'             => '2.25',
8736             'Net::Netrc'            => '2.14',
8737             'Net::POP3'             => '2.30',
8738             'Net::SMTP'             => '2.32',
8739             'PerlIO'                => '1.08',
8740             'Pod::Functions'        => '1.08',
8741             'Scalar::Util'          => '1.31',
8742             'Socket'                => '2.011',
8743             'Storable'              => '2.46',
8744             'Time::HiRes'           => '1.9726',
8745             'Time::Piece'           => '1.22',
8746             'Time::Seconds'         => '1.22',
8747             'XS::APItest'           => '0.55',
8748             'bigint'                => '0.36',
8749             'bignum'                => '0.36',
8750             'bigrat'                => '0.36',
8751             'constant'              => '1.28',
8752             'diagnostics'           => '1.32',
8753             'inc::latest'           => '0.4007',
8754             'mro'                   => '1.13',
8755             'parent'                => '0.226',
8756             'utf8'                  => '1.13',
8757             'version'               => '0.9903',
8758         },
8759         removed => {
8760            'Module::Build::Platform::Amiga'=> 1,
8761            'Module::Build::Platform::EBCDIC'=> 1,
8762            'Module::Build::Platform::MPEiX'=> 1,
8763            'Module::Build::Platform::RiscOS'=> 1,
8764         }
8765     },
8766     5.019004 => {
8767         delta_from => 5.019003,
8768         changed => {
8769             'B'                     => '1.46',
8770             'B::Concise'            => '0.99',
8771             'B::Deparse'            => '1.23',
8772             'CPAN'                  => '2.03',
8773             'CPAN::Meta'            => '2.132620',
8774             'CPAN::Meta::Converter' => '2.132620',
8775             'CPAN::Meta::Feature'   => '2.132620',
8776             'CPAN::Meta::History'   => '2.132620',
8777             'CPAN::Meta::Prereqs'   => '2.132620',
8778             'CPAN::Meta::Requirements'=> '2.123',
8779             'CPAN::Meta::Spec'      => '2.132620',
8780             'CPAN::Meta::Validator' => '2.132620',
8781             'Carp'                  => '1.32',
8782             'Carp::Heavy'           => '1.32',
8783             'Config'                => '5.019004',
8784             'Data::Dumper'          => '2.149',
8785             'Devel::Peek'           => '1.14',
8786             'DynaLoader'            => '1.20',
8787             'Encode'                => '2.55',
8788             'Encode::Alias'         => '2.18',
8789             'Encode::CN::HZ'        => '2.07',
8790             'Encode::Encoder'       => '2.03',
8791             'Encode::Encoding'      => '2.07',
8792             'Encode::GSM0338'       => '2.05',
8793             'Encode::Guess'         => '2.06',
8794             'Encode::JP::JIS7'      => '2.05',
8795             'Encode::KR::2022_KR'   => '2.03',
8796             'Encode::MIME::Header'  => '2.15',
8797             'Encode::MIME::Header::ISO_2022_JP'=> '1.04',
8798             'Encode::Unicode'       => '2.09',
8799             'Encode::Unicode::UTF7' => '2.08',
8800             'Errno'                 => '1.20',
8801             'Exporter'              => '5.70',
8802             'Exporter::Heavy'       => '5.70',
8803             'ExtUtils::CBuilder'    => '0.280212',
8804             'ExtUtils::CBuilder::Base'=> '0.280212',
8805             'ExtUtils::CBuilder::Platform::Unix'=> '0.280212',
8806             'ExtUtils::CBuilder::Platform::VMS'=> '0.280212',
8807             'ExtUtils::CBuilder::Platform::Windows'=> '0.280212',
8808             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280212',
8809             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280212',
8810             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280212',
8811             'ExtUtils::CBuilder::Platform::aix'=> '0.280212',
8812             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280212',
8813             'ExtUtils::CBuilder::Platform::darwin'=> '0.280212',
8814             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280212',
8815             'ExtUtils::CBuilder::Platform::os2'=> '0.280212',
8816             'ExtUtils::Command'     => '1.18',
8817             'ExtUtils::Command::MM' => '6.76',
8818             'ExtUtils::Liblist'     => '6.76',
8819             'ExtUtils::Liblist::Kid'=> '6.76',
8820             'ExtUtils::MM'          => '6.76',
8821             'ExtUtils::MM_AIX'      => '6.76',
8822             'ExtUtils::MM_Any'      => '6.76',
8823             'ExtUtils::MM_BeOS'     => '6.76',
8824             'ExtUtils::MM_Cygwin'   => '6.76',
8825             'ExtUtils::MM_DOS'      => '6.76',
8826             'ExtUtils::MM_Darwin'   => '6.76',
8827             'ExtUtils::MM_MacOS'    => '6.76',
8828             'ExtUtils::MM_NW5'      => '6.76',
8829             'ExtUtils::MM_OS2'      => '6.76',
8830             'ExtUtils::MM_QNX'      => '6.76',
8831             'ExtUtils::MM_UWIN'     => '6.76',
8832             'ExtUtils::MM_Unix'     => '6.76',
8833             'ExtUtils::MM_VMS'      => '6.76',
8834             'ExtUtils::MM_VOS'      => '6.76',
8835             'ExtUtils::MM_Win32'    => '6.76',
8836             'ExtUtils::MM_Win95'    => '6.76',
8837             'ExtUtils::MY'          => '6.76',
8838             'ExtUtils::MakeMaker'   => '6.76',
8839             'ExtUtils::MakeMaker::Config'=> '6.76',
8840             'ExtUtils::Mkbootstrap' => '6.76',
8841             'ExtUtils::Mksymlists'  => '6.76',
8842             'ExtUtils::ParseXS'     => '3.23',
8843             'ExtUtils::ParseXS::Constants'=> '3.23',
8844             'ExtUtils::ParseXS::CountLines'=> '3.23',
8845             'ExtUtils::ParseXS::Eval'=> '3.23',
8846             'ExtUtils::ParseXS::Utilities'=> '3.23',
8847             'ExtUtils::Typemaps'    => '3.23',
8848             'ExtUtils::Typemaps::Cmd'=> '3.23',
8849             'ExtUtils::Typemaps::InputMap'=> '3.23',
8850             'ExtUtils::Typemaps::OutputMap'=> '3.23',
8851             'ExtUtils::Typemaps::Type'=> '3.23',
8852             'ExtUtils::testlib'     => '6.76',
8853             'Fatal'                 => '2.21',
8854             'File::Copy'            => '2.28',
8855             'File::Find'            => '1.25',
8856             'File::Glob'            => '1.21',
8857             'FileCache'             => '1.09',
8858             'HTTP::Tiny'            => '0.035',
8859             'Hash::Util::FieldHash' => '1.13',
8860             'I18N::LangTags'        => '0.40',
8861             'IO'                    => '1.29',
8862             'IO::Socket'            => '1.37',
8863             'IPC::Open3'            => '1.16',
8864             'JSON::PP'              => '2.27202_01',
8865             'List::Util'            => '1.32',
8866             'List::Util::XS'        => '1.32',
8867             'Locale::Codes'         => '3.27',
8868             'Locale::Codes::Constants'=> '3.27',
8869             'Locale::Codes::Country'=> '3.27',
8870             'Locale::Codes::Country_Codes'=> '3.27',
8871             'Locale::Codes::Country_Retired'=> '3.27',
8872             'Locale::Codes::Currency'=> '3.27',
8873             'Locale::Codes::Currency_Codes'=> '3.27',
8874             'Locale::Codes::Currency_Retired'=> '3.27',
8875             'Locale::Codes::LangExt'=> '3.27',
8876             'Locale::Codes::LangExt_Codes'=> '3.27',
8877             'Locale::Codes::LangExt_Retired'=> '3.27',
8878             'Locale::Codes::LangFam'=> '3.27',
8879             'Locale::Codes::LangFam_Codes'=> '3.27',
8880             'Locale::Codes::LangFam_Retired'=> '3.27',
8881             'Locale::Codes::LangVar'=> '3.27',
8882             'Locale::Codes::LangVar_Codes'=> '3.27',
8883             'Locale::Codes::LangVar_Retired'=> '3.27',
8884             'Locale::Codes::Language'=> '3.27',
8885             'Locale::Codes::Language_Codes'=> '3.27',
8886             'Locale::Codes::Language_Retired'=> '3.27',
8887             'Locale::Codes::Script' => '3.27',
8888             'Locale::Codes::Script_Codes'=> '3.27',
8889             'Locale::Codes::Script_Retired'=> '3.27',
8890             'Locale::Country'       => '3.27',
8891             'Locale::Currency'      => '3.27',
8892             'Locale::Language'      => '3.27',
8893             'Locale::Script'        => '3.27',
8894             'Math::BigFloat'        => '1.9991',
8895             'Math::BigInt'          => '1.9993',
8896             'Math::BigInt::FastCalc'=> '0.31',
8897             'Module::CoreList'      => '2.99',
8898             'Module::CoreList::TieHashDelta'=> '2.99',
8899             'Module::CoreList::Utils'=> '2.99',
8900             'Module::Load::Conditional'=> '0.58',
8901             'Module::Metadata'      => '1.000018',
8902             'Opcode'                => '1.26',
8903             'POSIX'                 => '1.35',
8904             'Parse::CPAN::Meta'     => '1.4407',
8905             'Perl::OSType'          => '1.005',
8906             'Pod::Html'             => '1.21',
8907             'Scalar::Util'          => '1.32',
8908             'Socket'                => '2.012',
8909             'Storable'              => '2.47',
8910             'Term::ReadLine'        => '1.14',
8911             'Test::Builder'         => '0.98_06',
8912             'Test::Builder::Module' => '0.98_06',
8913             'Test::More'            => '0.98_06',
8914             'Test::Simple'          => '0.98_06',
8915             'Time::Piece'           => '1.23',
8916             'Time::Seconds'         => '1.23',
8917             'Unicode::Collate'      => '0.99',
8918             'Unicode::UCD'          => '0.54',
8919             'XS::APItest'           => '0.56',
8920             'XS::Typemap'           => '0.11',
8921             '_charnames'            => '1.39',
8922             'autodie'               => '2.21',
8923             'autodie::exception'    => '2.21',
8924             'autodie::exception::system'=> '2.21',
8925             'autodie::hints'        => '2.21',
8926             'autodie::skip'         => '2.21',
8927             'charnames'             => '1.39',
8928             'diagnostics'           => '1.33',
8929             'mro'                   => '1.14',
8930             'parent'                => '0.228',
8931             'perlfaq'               => '5.0150044',
8932             're'                    => '0.26',
8933             'version'               => '0.9904',
8934             'warnings'              => '1.19',
8935         },
8936         removed => {
8937         }
8938     },
8939     5.019005 => {
8940         delta_from => 5.019004,
8941         changed => {
8942             'App::Prove'            => '3.29',
8943             'App::Prove::State'     => '3.29',
8944             'App::Prove::State::Result'=> '3.29',
8945             'App::Prove::State::Result::Test'=> '3.29',
8946             'CPAN::Meta'            => '2.132830',
8947             'CPAN::Meta::Converter' => '2.132830',
8948             'CPAN::Meta::Feature'   => '2.132830',
8949             'CPAN::Meta::History'   => '2.132830',
8950             'CPAN::Meta::Prereqs'   => '2.132830',
8951             'CPAN::Meta::Requirements'=> '2.125',
8952             'CPAN::Meta::Spec'      => '2.132830',
8953             'CPAN::Meta::Validator' => '2.132830',
8954             'CPAN::Meta::YAML'      => '0.010',
8955             'Config'                => '5.019005',
8956             'Cwd'                   => '3.45',
8957             'ExtUtils::Command::MM' => '6.80',
8958             'ExtUtils::Install'     => '1.61',
8959             'ExtUtils::Liblist'     => '6.80',
8960             'ExtUtils::Liblist::Kid'=> '6.80',
8961             'ExtUtils::MM'          => '6.80',
8962             'ExtUtils::MM_AIX'      => '6.80',
8963             'ExtUtils::MM_Any'      => '6.80',
8964             'ExtUtils::MM_BeOS'     => '6.80',
8965             'ExtUtils::MM_Cygwin'   => '6.80',
8966             'ExtUtils::MM_DOS'      => '6.80',
8967             'ExtUtils::MM_Darwin'   => '6.80',
8968             'ExtUtils::MM_MacOS'    => '6.80',
8969             'ExtUtils::MM_NW5'      => '6.80',
8970             'ExtUtils::MM_OS2'      => '6.80',
8971             'ExtUtils::MM_QNX'      => '6.80',
8972             'ExtUtils::MM_UWIN'     => '6.80',
8973             'ExtUtils::MM_Unix'     => '6.80',
8974             'ExtUtils::MM_VMS'      => '6.80',
8975             'ExtUtils::MM_VOS'      => '6.80',
8976             'ExtUtils::MM_Win32'    => '6.80',
8977             'ExtUtils::MM_Win95'    => '6.80',
8978             'ExtUtils::MY'          => '6.80',
8979             'ExtUtils::MakeMaker'   => '6.80',
8980             'ExtUtils::MakeMaker::Config'=> '6.80',
8981             'ExtUtils::Mkbootstrap' => '6.80',
8982             'ExtUtils::Mksymlists'  => '6.80',
8983             'ExtUtils::testlib'     => '6.80',
8984             'Fatal'                 => '2.22',
8985             'File::Fetch'           => '0.44',
8986             'File::Glob'            => '1.22',
8987             'File::Spec'            => '3.45',
8988             'File::Spec::Cygwin'    => '3.45',
8989             'File::Spec::Epoc'      => '3.45',
8990             'File::Spec::Functions' => '3.45',
8991             'File::Spec::Mac'       => '3.45',
8992             'File::Spec::OS2'       => '3.45',
8993             'File::Spec::Unix'      => '3.45',
8994             'File::Spec::VMS'       => '3.45',
8995             'File::Spec::Win32'     => '3.45',
8996             'File::Temp'            => '0.2304',
8997             'Getopt::Long'          => '2.42',
8998             'HTTP::Tiny'            => '0.036',
8999             'IPC::Cmd'              => '0.84_01',
9000             'JSON::PP'              => '2.27203',
9001             'List::Util'            => '1.35',
9002             'List::Util::XS'        => '1.35',
9003             'Module::CoreList'      => '3.00',
9004             'Module::CoreList::TieHashDelta'=> '3.00',
9005             'Module::CoreList::Utils'=> '3.00',
9006             'Module::Metadata'      => '1.000019',
9007             'Parse::CPAN::Meta'     => '1.4409',
9008             'Perl::OSType'          => '1.006',
9009             'PerlIO::scalar'        => '0.17',
9010             'Pod::Man'              => '2.28',
9011             'Pod::Text'             => '3.18',
9012             'Pod::Text::Termcap'    => '2.08',
9013             'Scalar::Util'          => '1.35',
9014             'TAP::Base'             => '3.29',
9015             'TAP::Formatter::Base'  => '3.29',
9016             'TAP::Formatter::Color' => '3.29',
9017             'TAP::Formatter::Console'=> '3.29',
9018             'TAP::Formatter::Console::ParallelSession'=> '3.29',
9019             'TAP::Formatter::Console::Session'=> '3.29',
9020             'TAP::Formatter::File'  => '3.29',
9021             'TAP::Formatter::File::Session'=> '3.29',
9022             'TAP::Formatter::Session'=> '3.29',
9023             'TAP::Harness'          => '3.29',
9024             'TAP::Harness::Env'     => '3.29',
9025             'TAP::Object'           => '3.29',
9026             'TAP::Parser'           => '3.29',
9027             'TAP::Parser::Aggregator'=> '3.29',
9028             'TAP::Parser::Grammar'  => '3.29',
9029             'TAP::Parser::Iterator' => '3.29',
9030             'TAP::Parser::Iterator::Array'=> '3.29',
9031             'TAP::Parser::Iterator::Process'=> '3.29',
9032             'TAP::Parser::Iterator::Stream'=> '3.29',
9033             'TAP::Parser::IteratorFactory'=> '3.29',
9034             'TAP::Parser::Multiplexer'=> '3.29',
9035             'TAP::Parser::Result'   => '3.29',
9036             'TAP::Parser::Result::Bailout'=> '3.29',
9037             'TAP::Parser::Result::Comment'=> '3.29',
9038             'TAP::Parser::Result::Plan'=> '3.29',
9039             'TAP::Parser::Result::Pragma'=> '3.29',
9040             'TAP::Parser::Result::Test'=> '3.29',
9041             'TAP::Parser::Result::Unknown'=> '3.29',
9042             'TAP::Parser::Result::Version'=> '3.29',
9043             'TAP::Parser::Result::YAML'=> '3.29',
9044             'TAP::Parser::ResultFactory'=> '3.29',
9045             'TAP::Parser::Scheduler'=> '3.29',
9046             'TAP::Parser::Scheduler::Job'=> '3.29',
9047             'TAP::Parser::Scheduler::Spinner'=> '3.29',
9048             'TAP::Parser::Source'   => '3.29',
9049             'TAP::Parser::SourceHandler'=> '3.29',
9050             'TAP::Parser::SourceHandler::Executable'=> '3.29',
9051             'TAP::Parser::SourceHandler::File'=> '3.29',
9052             'TAP::Parser::SourceHandler::Handle'=> '3.29',
9053             'TAP::Parser::SourceHandler::Perl'=> '3.29',
9054             'TAP::Parser::SourceHandler::RawTAP'=> '3.29',
9055             'TAP::Parser::YAMLish::Reader'=> '3.29',
9056             'TAP::Parser::YAMLish::Writer'=> '3.29',
9057             'Test::Builder'         => '0.99',
9058             'Test::Builder::Module' => '0.99',
9059             'Test::Builder::Tester' => '1.23_002',
9060             'Test::Builder::Tester::Color'=> '1.23_002',
9061             'Test::Harness'         => '3.29',
9062             'Test::More'            => '0.99',
9063             'Test::Simple'          => '0.99',
9064             'Unicode'               => '6.3.0',
9065             'Unicode::Normalize'    => '1.17',
9066             'Unicode::UCD'          => '0.55',
9067             'attributes'            => '0.22',
9068             'autodie'               => '2.22',
9069             'autodie::exception'    => '2.22',
9070             'autodie::exception::system'=> '2.22',
9071             'autodie::hints'        => '2.22',
9072             'autodie::skip'         => '2.22',
9073             'feature'               => '1.34',
9074             'threads'               => '1.89',
9075             'warnings'              => '1.20',
9076         },
9077         removed => {
9078             'TAP::Parser::Utils'    => 1,
9079         }
9080     },
9081     5.019006 => {
9082         delta_from => 5.019005,
9083         changed => {
9084             'App::Prove'            => '3.30',
9085             'App::Prove::State'     => '3.30',
9086             'App::Prove::State::Result'=> '3.30',
9087             'App::Prove::State::Result::Test'=> '3.30',
9088             'Archive::Tar'          => '1.96',
9089             'Archive::Tar::Constant'=> '1.96',
9090             'Archive::Tar::File'    => '1.96',
9091             'AutoLoader'            => '5.74',
9092             'B'                     => '1.47',
9093             'B::Concise'            => '0.991',
9094             'B::Debug'              => '1.19',
9095             'B::Deparse'            => '1.24',
9096             'Benchmark'             => '1.18',
9097             'Compress::Raw::Bzip2'  => '2.063',
9098             'Compress::Raw::Zlib'   => '2.063',
9099             'Compress::Zlib'        => '2.063',
9100             'Config'                => '5.019006',
9101             'DB_File'               => '1.831',
9102             'Devel::Peek'           => '1.15',
9103             'DynaLoader'            => '1.21',
9104             'Errno'                 => '1.20_01',
9105             'ExtUtils::Command::MM' => '6.82',
9106             'ExtUtils::Liblist'     => '6.82',
9107             'ExtUtils::Liblist::Kid'=> '6.82',
9108             'ExtUtils::MM'          => '6.82',
9109             'ExtUtils::MM_AIX'      => '6.82',
9110             'ExtUtils::MM_Any'      => '6.82',
9111             'ExtUtils::MM_BeOS'     => '6.82',
9112             'ExtUtils::MM_Cygwin'   => '6.82',
9113             'ExtUtils::MM_DOS'      => '6.82',
9114             'ExtUtils::MM_Darwin'   => '6.82',
9115             'ExtUtils::MM_MacOS'    => '6.82',
9116             'ExtUtils::MM_NW5'      => '6.82',
9117             'ExtUtils::MM_OS2'      => '6.82',
9118             'ExtUtils::MM_QNX'      => '6.82',
9119             'ExtUtils::MM_UWIN'     => '6.82',
9120             'ExtUtils::MM_Unix'     => '6.82',
9121             'ExtUtils::MM_VMS'      => '6.82',
9122             'ExtUtils::MM_VOS'      => '6.82',
9123             'ExtUtils::MM_Win32'    => '6.82',
9124             'ExtUtils::MM_Win95'    => '6.82',
9125             'ExtUtils::MY'          => '6.82',
9126             'ExtUtils::MakeMaker'   => '6.82',
9127             'ExtUtils::MakeMaker::Config'=> '6.82',
9128             'ExtUtils::Mkbootstrap' => '6.82',
9129             'ExtUtils::Mksymlists'  => '6.82',
9130             'ExtUtils::testlib'     => '6.82',
9131             'File::DosGlob'         => '1.12',
9132             'File::Find'            => '1.26',
9133             'File::Glob'            => '1.23',
9134             'HTTP::Tiny'            => '0.038',
9135             'IO'                    => '1.30',
9136             'IO::Compress::Adapter::Bzip2'=> '2.063',
9137             'IO::Compress::Adapter::Deflate'=> '2.063',
9138             'IO::Compress::Adapter::Identity'=> '2.063',
9139             'IO::Compress::Base'    => '2.063',
9140             'IO::Compress::Base::Common'=> '2.063',
9141             'IO::Compress::Bzip2'   => '2.063',
9142             'IO::Compress::Deflate' => '2.063',
9143             'IO::Compress::Gzip'    => '2.063',
9144             'IO::Compress::Gzip::Constants'=> '2.063',
9145             'IO::Compress::RawDeflate'=> '2.063',
9146             'IO::Compress::Zip'     => '2.063',
9147             'IO::Compress::Zip::Constants'=> '2.063',
9148             'IO::Compress::Zlib::Constants'=> '2.063',
9149             'IO::Compress::Zlib::Extra'=> '2.063',
9150             'IO::Select'            => '1.22',
9151             'IO::Uncompress::Adapter::Bunzip2'=> '2.063',
9152             'IO::Uncompress::Adapter::Identity'=> '2.063',
9153             'IO::Uncompress::Adapter::Inflate'=> '2.063',
9154             'IO::Uncompress::AnyInflate'=> '2.063',
9155             'IO::Uncompress::AnyUncompress'=> '2.063',
9156             'IO::Uncompress::Base'  => '2.063',
9157             'IO::Uncompress::Bunzip2'=> '2.063',
9158             'IO::Uncompress::Gunzip'=> '2.063',
9159             'IO::Uncompress::Inflate'=> '2.063',
9160             'IO::Uncompress::RawInflate'=> '2.063',
9161             'IO::Uncompress::Unzip' => '2.063',
9162             'IPC::Cmd'              => '0.90',
9163             'Locale::Maketext'      => '1.25',
9164             'Module::Build'         => '0.4202',
9165             'Module::Build::Base'   => '0.4202',
9166             'Module::Build::Compat' => '0.4202',
9167             'Module::Build::Config' => '0.4202',
9168             'Module::Build::Cookbook'=> '0.4202',
9169             'Module::Build::Dumper' => '0.4202',
9170             'Module::Build::ModuleInfo'=> '0.4202',
9171             'Module::Build::Notes'  => '0.4202',
9172             'Module::Build::PPMMaker'=> '0.4202',
9173             'Module::Build::Platform::Default'=> '0.4202',
9174             'Module::Build::Platform::MacOS'=> '0.4202',
9175             'Module::Build::Platform::Unix'=> '0.4202',
9176             'Module::Build::Platform::VMS'=> '0.4202',
9177             'Module::Build::Platform::VOS'=> '0.4202',
9178             'Module::Build::Platform::Windows'=> '0.4202',
9179             'Module::Build::Platform::aix'=> '0.4202',
9180             'Module::Build::Platform::cygwin'=> '0.4202',
9181             'Module::Build::Platform::darwin'=> '0.4202',
9182             'Module::Build::Platform::os2'=> '0.4202',
9183             'Module::Build::PodParser'=> '0.4202',
9184             'Module::CoreList'      => '3.01',
9185             'Module::CoreList::TieHashDelta'=> '3.01',
9186             'Module::CoreList::Utils'=> '3.01',
9187             'Opcode'                => '1.27',
9188             'POSIX'                 => '1.36',
9189             'Package::Constants'    => '0.04',
9190             'PerlIO::scalar'        => '0.18',
9191             'PerlIO::via'           => '0.13',
9192             'SDBM_File'             => '1.10',
9193             'Socket'                => '2.013',
9194             'TAP::Base'             => '3.30',
9195             'TAP::Formatter::Base'  => '3.30',
9196             'TAP::Formatter::Color' => '3.30',
9197             'TAP::Formatter::Console'=> '3.30',
9198             'TAP::Formatter::Console::ParallelSession'=> '3.30',
9199             'TAP::Formatter::Console::Session'=> '3.30',
9200             'TAP::Formatter::File'  => '3.30',
9201             'TAP::Formatter::File::Session'=> '3.30',
9202             'TAP::Formatter::Session'=> '3.30',
9203             'TAP::Harness'          => '3.30',
9204             'TAP::Harness::Env'     => '3.30',
9205             'TAP::Object'           => '3.30',
9206             'TAP::Parser'           => '3.30',
9207             'TAP::Parser::Aggregator'=> '3.30',
9208             'TAP::Parser::Grammar'  => '3.30',
9209             'TAP::Parser::Iterator' => '3.30',
9210             'TAP::Parser::Iterator::Array'=> '3.30',
9211             'TAP::Parser::Iterator::Process'=> '3.30',
9212             'TAP::Parser::Iterator::Stream'=> '3.30',
9213             'TAP::Parser::IteratorFactory'=> '3.30',
9214             'TAP::Parser::Multiplexer'=> '3.30',
9215             'TAP::Parser::Result'   => '3.30',
9216             'TAP::Parser::Result::Bailout'=> '3.30',
9217             'TAP::Parser::Result::Comment'=> '3.30',
9218             'TAP::Parser::Result::Plan'=> '3.30',
9219             'TAP::Parser::Result::Pragma'=> '3.30',
9220             'TAP::Parser::Result::Test'=> '3.30',
9221             'TAP::Parser::Result::Unknown'=> '3.30',
9222             'TAP::Parser::Result::Version'=> '3.30',
9223             'TAP::Parser::Result::YAML'=> '3.30',
9224             'TAP::Parser::ResultFactory'=> '3.30',
9225             'TAP::Parser::Scheduler'=> '3.30',
9226             'TAP::Parser::Scheduler::Job'=> '3.30',
9227             'TAP::Parser::Scheduler::Spinner'=> '3.30',
9228             'TAP::Parser::Source'   => '3.30',
9229             'TAP::Parser::SourceHandler'=> '3.30',
9230             'TAP::Parser::SourceHandler::Executable'=> '3.30',
9231             'TAP::Parser::SourceHandler::File'=> '3.30',
9232             'TAP::Parser::SourceHandler::Handle'=> '3.30',
9233             'TAP::Parser::SourceHandler::Perl'=> '3.30',
9234             'TAP::Parser::SourceHandler::RawTAP'=> '3.30',
9235             'TAP::Parser::YAMLish::Reader'=> '3.30',
9236             'TAP::Parser::YAMLish::Writer'=> '3.30',
9237             'Term::Cap'             => '1.15',
9238             'Test::Builder'         => '1.001002',
9239             'Test::Builder::Module' => '1.001002',
9240             'Test::Harness'         => '3.30',
9241             'Test::More'            => '1.001002',
9242             'Test::Simple'          => '1.001002',
9243             'Tie::StdHandle'        => '4.4',
9244             'Unicode::Collate'      => '1.02',
9245             'Unicode::Collate::CJK::Korean'=> '1.02',
9246             'Unicode::Collate::Locale'=> '1.02',
9247             'XS::APItest'           => '0.57',
9248             'XS::Typemap'           => '0.12',
9249             'arybase'               => '0.07',
9250             'bignum'                => '0.37',
9251             'constant'              => '1.29',
9252             'fields'                => '2.17',
9253             'inc::latest'           => '0.4202',
9254             'threads'               => '1.90',
9255             'threads::shared'       => '1.45',
9256         },
9257         removed => {
9258         }
9259     },
9260     5.019007 => {
9261         delta_from => 5.019006,
9262         changed => {
9263             'CGI'                   => '3.64',
9264             'CGI::Apache'           => '1.02',
9265             'CGI::Carp'             => '3.64',
9266             'CGI::Cookie'           => '1.31',
9267             'CGI::Fast'             => '1.10',
9268             'CGI::Pretty'           => '3.64',
9269             'CGI::Push'             => '1.06',
9270             'CGI::Switch'           => '1.02',
9271             'CGI::Util'             => '3.64',
9272             'CPAN::Meta'            => '2.133380',
9273             'CPAN::Meta::Converter' => '2.133380',
9274             'CPAN::Meta::Feature'   => '2.133380',
9275             'CPAN::Meta::History'   => '2.133380',
9276             'CPAN::Meta::Prereqs'   => '2.133380',
9277             'CPAN::Meta::Spec'      => '2.133380',
9278             'CPAN::Meta::Validator' => '2.133380',
9279             'Config'                => '5.019007',
9280             'Data::Dumper'          => '2.150',
9281             'DynaLoader'            => '1.22',
9282             'ExtUtils::Command::MM' => '6.84',
9283             'ExtUtils::Liblist'     => '6.84',
9284             'ExtUtils::Liblist::Kid'=> '6.84',
9285             'ExtUtils::MM'          => '6.84',
9286             'ExtUtils::MM_AIX'      => '6.84',
9287             'ExtUtils::MM_Any'      => '6.84',
9288             'ExtUtils::MM_BeOS'     => '6.84',
9289             'ExtUtils::MM_Cygwin'   => '6.84',
9290             'ExtUtils::MM_DOS'      => '6.84',
9291             'ExtUtils::MM_Darwin'   => '6.84',
9292             'ExtUtils::MM_MacOS'    => '6.84',
9293             'ExtUtils::MM_NW5'      => '6.84',
9294             'ExtUtils::MM_OS2'      => '6.84',
9295             'ExtUtils::MM_QNX'      => '6.84',
9296             'ExtUtils::MM_UWIN'     => '6.84',
9297             'ExtUtils::MM_Unix'     => '6.84',
9298             'ExtUtils::MM_VMS'      => '6.84',
9299             'ExtUtils::MM_VOS'      => '6.84',
9300             'ExtUtils::MM_Win32'    => '6.84',
9301             'ExtUtils::MM_Win95'    => '6.84',
9302             'ExtUtils::MY'          => '6.84',
9303             'ExtUtils::MakeMaker'   => '6.84',
9304             'ExtUtils::MakeMaker::Config'=> '6.84',
9305             'ExtUtils::Mkbootstrap' => '6.84',
9306             'ExtUtils::Mksymlists'  => '6.84',
9307             'ExtUtils::testlib'     => '6.84',
9308             'File::Fetch'           => '0.46',
9309             'HTTP::Tiny'            => '0.039',
9310             'Locale::Codes'         => '3.28',
9311             'Locale::Codes::Constants'=> '3.28',
9312             'Locale::Codes::Country'=> '3.28',
9313             'Locale::Codes::Country_Codes'=> '3.28',
9314             'Locale::Codes::Country_Retired'=> '3.28',
9315             'Locale::Codes::Currency'=> '3.28',
9316             'Locale::Codes::Currency_Codes'=> '3.28',
9317             'Locale::Codes::Currency_Retired'=> '3.28',
9318             'Locale::Codes::LangExt'=> '3.28',
9319             'Locale::Codes::LangExt_Codes'=> '3.28',
9320             'Locale::Codes::LangExt_Retired'=> '3.28',
9321             'Locale::Codes::LangFam'=> '3.28',
9322             'Locale::Codes::LangFam_Codes'=> '3.28',
9323             'Locale::Codes::LangFam_Retired'=> '3.28',
9324             'Locale::Codes::LangVar'=> '3.28',
9325             'Locale::Codes::LangVar_Codes'=> '3.28',
9326             'Locale::Codes::LangVar_Retired'=> '3.28',
9327             'Locale::Codes::Language'=> '3.28',
9328             'Locale::Codes::Language_Codes'=> '3.28',
9329             'Locale::Codes::Language_Retired'=> '3.28',
9330             'Locale::Codes::Script' => '3.28',
9331             'Locale::Codes::Script_Codes'=> '3.28',
9332             'Locale::Codes::Script_Retired'=> '3.28',
9333             'Locale::Country'       => '3.28',
9334             'Locale::Currency'      => '3.28',
9335             'Locale::Language'      => '3.28',
9336             'Locale::Script'        => '3.28',
9337             'Module::Build'         => '0.4203',
9338             'Module::Build::Base'   => '0.4203',
9339             'Module::Build::Compat' => '0.4203',
9340             'Module::Build::Config' => '0.4203',
9341             'Module::Build::Cookbook'=> '0.4203',
9342             'Module::Build::Dumper' => '0.4203',
9343             'Module::Build::ModuleInfo'=> '0.4203',
9344             'Module::Build::Notes'  => '0.4203',
9345             'Module::Build::PPMMaker'=> '0.4203',
9346             'Module::Build::Platform::Default'=> '0.4203',
9347             'Module::Build::Platform::MacOS'=> '0.4203',
9348             'Module::Build::Platform::Unix'=> '0.4203',
9349             'Module::Build::Platform::VMS'=> '0.4203',
9350             'Module::Build::Platform::VOS'=> '0.4203',
9351             'Module::Build::Platform::Windows'=> '0.4203',
9352             'Module::Build::Platform::aix'=> '0.4203',
9353             'Module::Build::Platform::cygwin'=> '0.4203',
9354             'Module::Build::Platform::darwin'=> '0.4203',
9355             'Module::Build::Platform::os2'=> '0.4203',
9356             'Module::Build::PodParser'=> '0.4203',
9357             'Module::CoreList'      => '3.02',
9358             'Module::CoreList::TieHashDelta'=> '3.02',
9359             'Module::CoreList::Utils'=> '3.02',
9360             'POSIX'                 => '1.37',
9361             'PerlIO::encoding'      => '0.17',
9362             'PerlIO::via'           => '0.14',
9363             'SDBM_File'             => '1.11',
9364             'Storable'              => '2.48',
9365             'Time::Piece'           => '1.24',
9366             'Time::Seconds'         => '1.24',
9367             'Unicode::Collate'      => '1.04',
9368             'Win32'                 => '0.48',
9369             'XS::APItest'           => '0.58',
9370             'base'                  => '2.20',
9371             'constant'              => '1.30',
9372             'inc::latest'           => '0.4203',
9373             'threads'               => '1.91',
9374         },
9375         removed => {
9376         }
9377     },
9378     5.019008 => {
9379         delta_from => 5.019007,
9380         changed => {
9381             'Config'                => '5.019008',
9382             'DynaLoader'            => '1.24',
9383             'Encode'                => '2.57',
9384             'Errno'                 => '1.20_02',
9385             'ExtUtils::CBuilder'    => '0.280213',
9386             'ExtUtils::CBuilder::Base'=> '0.280213',
9387             'ExtUtils::CBuilder::Platform::Unix'=> '0.280213',
9388             'ExtUtils::CBuilder::Platform::VMS'=> '0.280213',
9389             'ExtUtils::CBuilder::Platform::Windows'=> '0.280213',
9390             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280213',
9391             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280213',
9392             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280213',
9393             'ExtUtils::CBuilder::Platform::aix'=> '0.280213',
9394             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280213',
9395             'ExtUtils::CBuilder::Platform::darwin'=> '0.280213',
9396             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280213',
9397             'ExtUtils::CBuilder::Platform::os2'=> '0.280213',
9398             'ExtUtils::Command::MM' => '6.86',
9399             'ExtUtils::Liblist'     => '6.86',
9400             'ExtUtils::Liblist::Kid'=> '6.86',
9401             'ExtUtils::MM'          => '6.86',
9402             'ExtUtils::MM_AIX'      => '6.86',
9403             'ExtUtils::MM_Any'      => '6.86',
9404             'ExtUtils::MM_BeOS'     => '6.86',
9405             'ExtUtils::MM_Cygwin'   => '6.86',
9406             'ExtUtils::MM_DOS'      => '6.86',
9407             'ExtUtils::MM_Darwin'   => '6.86',
9408             'ExtUtils::MM_MacOS'    => '6.86',
9409             'ExtUtils::MM_NW5'      => '6.86',
9410             'ExtUtils::MM_OS2'      => '6.86',
9411             'ExtUtils::MM_QNX'      => '6.86',
9412             'ExtUtils::MM_UWIN'     => '6.86',
9413             'ExtUtils::MM_Unix'     => '6.86',
9414             'ExtUtils::MM_VMS'      => '6.86',
9415             'ExtUtils::MM_VOS'      => '6.86',
9416             'ExtUtils::MM_Win32'    => '6.86',
9417             'ExtUtils::MM_Win95'    => '6.86',
9418             'ExtUtils::MY'          => '6.86',
9419             'ExtUtils::MakeMaker'   => '6.86',
9420             'ExtUtils::MakeMaker::Config'=> '6.86',
9421             'ExtUtils::Mkbootstrap' => '6.86',
9422             'ExtUtils::Mksymlists'  => '6.86',
9423             'ExtUtils::testlib'     => '6.86',
9424             'File::Copy'            => '2.29',
9425             'Hash::Util::FieldHash' => '1.14',
9426             'IO::Socket::IP'        => '0.26',
9427             'IO::Socket::UNIX'      => '1.26',
9428             'List::Util'            => '1.36',
9429             'List::Util::XS'        => '1.36',
9430             'Module::Build'         => '0.4204',
9431             'Module::Build::Base'   => '0.4204',
9432             'Module::Build::Compat' => '0.4204',
9433             'Module::Build::Config' => '0.4204',
9434             'Module::Build::Cookbook'=> '0.4204',
9435             'Module::Build::Dumper' => '0.4204',
9436             'Module::Build::ModuleInfo'=> '0.4204',
9437             'Module::Build::Notes'  => '0.4204',
9438             'Module::Build::PPMMaker'=> '0.4204',
9439             'Module::Build::Platform::Default'=> '0.4204',
9440             'Module::Build::Platform::MacOS'=> '0.4204',
9441             'Module::Build::Platform::Unix'=> '0.4204',
9442             'Module::Build::Platform::VMS'=> '0.4204',
9443             'Module::Build::Platform::VOS'=> '0.4204',
9444             'Module::Build::Platform::Windows'=> '0.4204',
9445             'Module::Build::Platform::aix'=> '0.4204',
9446             'Module::Build::Platform::cygwin'=> '0.4204',
9447             'Module::Build::Platform::darwin'=> '0.4204',
9448             'Module::Build::Platform::os2'=> '0.4204',
9449             'Module::Build::PodParser'=> '0.4204',
9450             'Module::CoreList'      => '3.04',
9451             'Module::CoreList::TieHashDelta'=> '3.04',
9452             'Module::CoreList::Utils'=> '3.04',
9453             'Module::Load'          => '0.28',
9454             'Module::Load::Conditional'=> '0.60',
9455             'Net::Config'           => '1.13',
9456             'Net::FTP::A'           => '1.19',
9457             'POSIX'                 => '1.38_01',
9458             'Perl::OSType'          => '1.007',
9459             'PerlIO::encoding'      => '0.18',
9460             'Pod::Perldoc'          => '3.21',
9461             'Pod::Perldoc::BaseTo'  => '3.21',
9462             'Pod::Perldoc::GetOptsOO'=> '3.21',
9463             'Pod::Perldoc::ToANSI'  => '3.21',
9464             'Pod::Perldoc::ToChecker'=> '3.21',
9465             'Pod::Perldoc::ToMan'   => '3.21',
9466             'Pod::Perldoc::ToNroff' => '3.21',
9467             'Pod::Perldoc::ToPod'   => '3.21',
9468             'Pod::Perldoc::ToRtf'   => '3.21',
9469             'Pod::Perldoc::ToTerm'  => '3.21',
9470             'Pod::Perldoc::ToText'  => '3.21',
9471             'Pod::Perldoc::ToTk'    => '3.21',
9472             'Pod::Perldoc::ToXml'   => '3.21',
9473             'Scalar::Util'          => '1.36',
9474             'Time::Piece'           => '1.27',
9475             'Time::Seconds'         => '1.27',
9476             'Unicode::UCD'          => '0.57',
9477             'XS::APItest'           => '0.59',
9478             'XSLoader'              => '0.17',
9479             'base'                  => '2.21',
9480             'constant'              => '1.31',
9481             'inc::latest'           => '0.4204',
9482             'threads::shared'       => '1.46',
9483             'version'               => '0.9907',
9484             'version::regex'        => '0.9907',
9485             'version::vpp'          => '0.9907',
9486             'warnings'              => '1.21',
9487         },
9488         removed => {
9489         }
9490     },
9491     5.019009 => {
9492         delta_from => 5.019008,
9493         changed => {
9494             'B'                     => '1.48',
9495             'B::Concise'            => '0.992',
9496             'B::Deparse'            => '1.25',
9497             'CGI'                   => '3.65',
9498             'CPAN::Meta::YAML'      => '0.011',
9499             'Compress::Raw::Bzip2'  => '2.064',
9500             'Compress::Raw::Zlib'   => '2.065',
9501             'Compress::Zlib'        => '2.064',
9502             'Config'                => '5.019009',
9503             'Config::Perl::V'       => '0.20',
9504             'Cwd'                   => '3.47',
9505             'Devel::Peek'           => '1.16',
9506             'Digest::SHA'           => '5.87',
9507             'DynaLoader'            => '1.25',
9508             'English'               => '1.09',
9509             'ExtUtils::CBuilder'    => '0.280216',
9510             'ExtUtils::CBuilder::Base'=> '0.280216',
9511             'ExtUtils::CBuilder::Platform::Unix'=> '0.280216',
9512             'ExtUtils::CBuilder::Platform::VMS'=> '0.280216',
9513             'ExtUtils::CBuilder::Platform::Windows'=> '0.280216',
9514             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280216',
9515             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280216',
9516             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280216',
9517             'ExtUtils::CBuilder::Platform::aix'=> '0.280216',
9518             'ExtUtils::CBuilder::Platform::android'=> '0.280216',
9519             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280216',
9520             'ExtUtils::CBuilder::Platform::darwin'=> '0.280216',
9521             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280216',
9522             'ExtUtils::CBuilder::Platform::os2'=> '0.280216',
9523             'ExtUtils::Command::MM' => '6.88',
9524             'ExtUtils::Embed'       => '1.32',
9525             'ExtUtils::Install'     => '1.62',
9526             'ExtUtils::Installed'   => '1.999004',
9527             'ExtUtils::Liblist'     => '6.88',
9528             'ExtUtils::Liblist::Kid'=> '6.88',
9529             'ExtUtils::MM'          => '6.88',
9530             'ExtUtils::MM_AIX'      => '6.88',
9531             'ExtUtils::MM_Any'      => '6.88',
9532             'ExtUtils::MM_BeOS'     => '6.88',
9533             'ExtUtils::MM_Cygwin'   => '6.88',
9534             'ExtUtils::MM_DOS'      => '6.88',
9535             'ExtUtils::MM_Darwin'   => '6.88',
9536             'ExtUtils::MM_MacOS'    => '6.88',
9537             'ExtUtils::MM_NW5'      => '6.88',
9538             'ExtUtils::MM_OS2'      => '6.88',
9539             'ExtUtils::MM_QNX'      => '6.88',
9540             'ExtUtils::MM_UWIN'     => '6.88',
9541             'ExtUtils::MM_Unix'     => '6.88',
9542             'ExtUtils::MM_VMS'      => '6.88',
9543             'ExtUtils::MM_VOS'      => '6.88',
9544             'ExtUtils::MM_Win32'    => '6.88',
9545             'ExtUtils::MM_Win95'    => '6.88',
9546             'ExtUtils::MY'          => '6.88',
9547             'ExtUtils::MakeMaker'   => '6.88',
9548             'ExtUtils::MakeMaker::Config'=> '6.88',
9549             'ExtUtils::Mkbootstrap' => '6.88',
9550             'ExtUtils::Mksymlists'  => '6.88',
9551             'ExtUtils::Packlist'    => '1.47',
9552             'ExtUtils::testlib'     => '6.88',
9553             'Fatal'                 => '2.23',
9554             'File::Fetch'           => '0.48',
9555             'File::Spec'            => '3.47',
9556             'File::Spec::Cygwin'    => '3.47',
9557             'File::Spec::Epoc'      => '3.47',
9558             'File::Spec::Functions' => '3.47',
9559             'File::Spec::Mac'       => '3.47',
9560             'File::Spec::OS2'       => '3.47',
9561             'File::Spec::Unix'      => '3.47',
9562             'File::Spec::VMS'       => '3.47',
9563             'File::Spec::Win32'     => '3.47',
9564             'HTTP::Tiny'            => '0.042',
9565             'IO::Compress::Adapter::Bzip2'=> '2.064',
9566             'IO::Compress::Adapter::Deflate'=> '2.064',
9567             'IO::Compress::Adapter::Identity'=> '2.064',
9568             'IO::Compress::Base'    => '2.064',
9569             'IO::Compress::Base::Common'=> '2.064',
9570             'IO::Compress::Bzip2'   => '2.064',
9571             'IO::Compress::Deflate' => '2.064',
9572             'IO::Compress::Gzip'    => '2.064',
9573             'IO::Compress::Gzip::Constants'=> '2.064',
9574             'IO::Compress::RawDeflate'=> '2.064',
9575             'IO::Compress::Zip'     => '2.064',
9576             'IO::Compress::Zip::Constants'=> '2.064',
9577             'IO::Compress::Zlib::Constants'=> '2.064',
9578             'IO::Compress::Zlib::Extra'=> '2.064',
9579             'IO::Socket::INET'      => '1.35',
9580             'IO::Socket::IP'        => '0.28',
9581             'IO::Uncompress::Adapter::Bunzip2'=> '2.064',
9582             'IO::Uncompress::Adapter::Identity'=> '2.064',
9583             'IO::Uncompress::Adapter::Inflate'=> '2.064',
9584             'IO::Uncompress::AnyInflate'=> '2.064',
9585             'IO::Uncompress::AnyUncompress'=> '2.064',
9586             'IO::Uncompress::Base'  => '2.064',
9587             'IO::Uncompress::Bunzip2'=> '2.064',
9588             'IO::Uncompress::Gunzip'=> '2.064',
9589             'IO::Uncompress::Inflate'=> '2.064',
9590             'IO::Uncompress::RawInflate'=> '2.064',
9591             'IO::Uncompress::Unzip' => '2.064',
9592             'IPC::Cmd'              => '0.92',
9593             'List::Util'            => '1.38',
9594             'List::Util::XS'        => '1.38',
9595             'Locale::Codes'         => '3.29',
9596             'Locale::Codes::Constants'=> '3.29',
9597             'Locale::Codes::Country'=> '3.29',
9598             'Locale::Codes::Country_Codes'=> '3.29',
9599             'Locale::Codes::Country_Retired'=> '3.29',
9600             'Locale::Codes::Currency'=> '3.29',
9601             'Locale::Codes::Currency_Codes'=> '3.29',
9602             'Locale::Codes::Currency_Retired'=> '3.29',
9603             'Locale::Codes::LangExt'=> '3.29',
9604             'Locale::Codes::LangExt_Codes'=> '3.29',
9605             'Locale::Codes::LangExt_Retired'=> '3.29',
9606             'Locale::Codes::LangFam'=> '3.29',
9607             'Locale::Codes::LangFam_Codes'=> '3.29',
9608             'Locale::Codes::LangFam_Retired'=> '3.29',
9609             'Locale::Codes::LangVar'=> '3.29',
9610             'Locale::Codes::LangVar_Codes'=> '3.29',
9611             'Locale::Codes::LangVar_Retired'=> '3.29',
9612             'Locale::Codes::Language'=> '3.29',
9613             'Locale::Codes::Language_Codes'=> '3.29',
9614             'Locale::Codes::Language_Retired'=> '3.29',
9615             'Locale::Codes::Script' => '3.29',
9616             'Locale::Codes::Script_Codes'=> '3.29',
9617             'Locale::Codes::Script_Retired'=> '3.29',
9618             'Locale::Country'       => '3.29',
9619             'Locale::Currency'      => '3.29',
9620             'Locale::Language'      => '3.29',
9621             'Locale::Script'        => '3.29',
9622             'Module::Build'         => '0.4205',
9623             'Module::Build::Base'   => '0.4205',
9624             'Module::Build::Compat' => '0.4205',
9625             'Module::Build::Config' => '0.4205',
9626             'Module::Build::Cookbook'=> '0.4205',
9627             'Module::Build::Dumper' => '0.4205',
9628             'Module::Build::ModuleInfo'=> '0.4205',
9629             'Module::Build::Notes'  => '0.4205',
9630             'Module::Build::PPMMaker'=> '0.4205',
9631             'Module::Build::Platform::Default'=> '0.4205',
9632             'Module::Build::Platform::MacOS'=> '0.4205',
9633             'Module::Build::Platform::Unix'=> '0.4205',
9634             'Module::Build::Platform::VMS'=> '0.4205',
9635             'Module::Build::Platform::VOS'=> '0.4205',
9636             'Module::Build::Platform::Windows'=> '0.4205',
9637             'Module::Build::Platform::aix'=> '0.4205',
9638             'Module::Build::Platform::cygwin'=> '0.4205',
9639             'Module::Build::Platform::darwin'=> '0.4205',
9640             'Module::Build::Platform::os2'=> '0.4205',
9641             'Module::Build::PodParser'=> '0.4205',
9642             'Module::CoreList'      => '3.06',
9643             'Module::CoreList::TieHashDelta'=> '3.06',
9644             'Module::CoreList::Utils'=> '3.06',
9645             'Module::Load'          => '0.30',
9646             'Module::Load::Conditional'=> '0.62',
9647             'Net::Domain'           => '2.23',
9648             'Net::FTP'              => '2.79',
9649             'Net::NNTP'             => '2.26',
9650             'Net::POP3'             => '2.31',
9651             'Net::Ping'             => '2.43',
9652             'Net::SMTP'             => '2.33',
9653             'POSIX'                 => '1.38_02',
9654             'Parse::CPAN::Meta'     => '1.4413',
9655             'Pod::Escapes'          => '1.06',
9656             'Pod::Find'             => '1.62',
9657             'Pod::InputObjects'     => '1.62',
9658             'Pod::ParseUtils'       => '1.62',
9659             'Pod::Parser'           => '1.62',
9660             'Pod::Select'           => '1.62',
9661             'Scalar::Util'          => '1.38',
9662             'autodie'               => '2.23',
9663             'autodie::exception'    => '2.23',
9664             'autodie::exception::system'=> '2.23',
9665             'autodie::hints'        => '2.23',
9666             'autodie::skip'         => '2.23',
9667             'diagnostics'           => '1.34',
9668             'feature'               => '1.35',
9669             'inc::latest'           => '0.4205',
9670             'locale'                => '1.03',
9671             'mro'                   => '1.15',
9672             'threads'               => '1.92',
9673             'version'               => '0.9908',
9674             'version::regex'        => '0.9908',
9675             'version::vpp'          => '0.9908',
9676             'warnings'              => '1.22',
9677         },
9678         removed => {
9679         }
9680     },
9681     5.01901 => {
9682         delta_from => 5.019009,
9683         changed => {
9684             'App::Cpan'             => '1.62',
9685             'Attribute::Handlers'   => '0.96',
9686             'B::Deparse'            => '1.26',
9687             'CPAN'                  => '2.04',
9688             'CPAN::Bundle'          => '5.5001',
9689             'CPAN::Complete'        => '5.5001',
9690             'CPAN::Distribution'    => '2.01',
9691             'CPAN::Distroprefs'     => '6.0001',
9692             'CPAN::FirstTime'       => '5.5305',
9693             'CPAN::Meta'            => '2.140640',
9694             'CPAN::Meta::Converter' => '2.140640',
9695             'CPAN::Meta::Feature'   => '2.140640',
9696             'CPAN::Meta::History'   => '2.140640',
9697             'CPAN::Meta::Prereqs'   => '2.140640',
9698             'CPAN::Meta::Spec'      => '2.140640',
9699             'CPAN::Meta::Validator' => '2.140640',
9700             'CPAN::Meta::YAML'      => '0.012',
9701             'CPAN::Queue'           => '5.5002',
9702             'CPAN::Shell'           => '5.5003',
9703             'CPAN::Tarzip'          => '5.5012',
9704             'CPAN::Version'         => '5.5003',
9705             'Carp'                  => '1.33',
9706             'Carp::Heavy'           => '1.33',
9707             'Config'                => '5.019010',
9708             'Data::Dumper'          => '2.151',
9709             'Devel::PPPort'         => '3.22',
9710             'Digest::SHA'           => '5.88',
9711             'ExtUtils::Command::MM' => '6.92',
9712             'ExtUtils::Install'     => '1.63',
9713             'ExtUtils::Installed'   => '1.999005',
9714             'ExtUtils::Liblist'     => '6.92',
9715             'ExtUtils::Liblist::Kid'=> '6.92',
9716             'ExtUtils::MM'          => '6.92',
9717             'ExtUtils::MM_AIX'      => '6.92',
9718             'ExtUtils::MM_Any'      => '6.92',
9719             'ExtUtils::MM_BeOS'     => '6.92',
9720             'ExtUtils::MM_Cygwin'   => '6.92',
9721             'ExtUtils::MM_DOS'      => '6.92',
9722             'ExtUtils::MM_Darwin'   => '6.92',
9723             'ExtUtils::MM_MacOS'    => '6.92',
9724             'ExtUtils::MM_NW5'      => '6.92',
9725             'ExtUtils::MM_OS2'      => '6.92',
9726             'ExtUtils::MM_QNX'      => '6.92',
9727             'ExtUtils::MM_UWIN'     => '6.92',
9728             'ExtUtils::MM_Unix'     => '6.92',
9729             'ExtUtils::MM_VMS'      => '6.92',
9730             'ExtUtils::MM_VOS'      => '6.92',
9731             'ExtUtils::MM_Win32'    => '6.92',
9732             'ExtUtils::MM_Win95'    => '6.92',
9733             'ExtUtils::MY'          => '6.92',
9734             'ExtUtils::MakeMaker'   => '6.92',
9735             'ExtUtils::MakeMaker::Config'=> '6.92',
9736             'ExtUtils::Mkbootstrap' => '6.92',
9737             'ExtUtils::Mksymlists'  => '6.92',
9738             'ExtUtils::Packlist'    => '1.48',
9739             'ExtUtils::ParseXS'     => '3.24',
9740             'ExtUtils::ParseXS::Constants'=> '3.24',
9741             'ExtUtils::ParseXS::CountLines'=> '3.24',
9742             'ExtUtils::ParseXS::Eval'=> '3.24',
9743             'ExtUtils::ParseXS::Utilities'=> '3.24',
9744             'ExtUtils::Typemaps'    => '3.24',
9745             'ExtUtils::Typemaps::Cmd'=> '3.24',
9746             'ExtUtils::Typemaps::InputMap'=> '3.24',
9747             'ExtUtils::Typemaps::OutputMap'=> '3.24',
9748             'ExtUtils::Typemaps::Type'=> '3.24',
9749             'ExtUtils::testlib'     => '6.92',
9750             'File::Find'            => '1.27',
9751             'Filter::Simple'        => '0.91',
9752             'HTTP::Tiny'            => '0.043',
9753             'Hash::Util::FieldHash' => '1.15',
9754             'IO'                    => '1.31',
9755             'IO::Socket::IP'        => '0.29',
9756             'Locale::Codes'         => '3.30',
9757             'Locale::Codes::Constants'=> '3.30',
9758             'Locale::Codes::Country'=> '3.30',
9759             'Locale::Codes::Country_Codes'=> '3.30',
9760             'Locale::Codes::Country_Retired'=> '3.30',
9761             'Locale::Codes::Currency'=> '3.30',
9762             'Locale::Codes::Currency_Codes'=> '3.30',
9763             'Locale::Codes::Currency_Retired'=> '3.30',
9764             'Locale::Codes::LangExt'=> '3.30',
9765             'Locale::Codes::LangExt_Codes'=> '3.30',
9766             'Locale::Codes::LangExt_Retired'=> '3.30',
9767             'Locale::Codes::LangFam'=> '3.30',
9768             'Locale::Codes::LangFam_Codes'=> '3.30',
9769             'Locale::Codes::LangFam_Retired'=> '3.30',
9770             'Locale::Codes::LangVar'=> '3.30',
9771             'Locale::Codes::LangVar_Codes'=> '3.30',
9772             'Locale::Codes::LangVar_Retired'=> '3.30',
9773             'Locale::Codes::Language'=> '3.30',
9774             'Locale::Codes::Language_Codes'=> '3.30',
9775             'Locale::Codes::Language_Retired'=> '3.30',
9776             'Locale::Codes::Script' => '3.30',
9777             'Locale::Codes::Script_Codes'=> '3.30',
9778             'Locale::Codes::Script_Retired'=> '3.30',
9779             'Locale::Country'       => '3.30',
9780             'Locale::Currency'      => '3.30',
9781             'Locale::Language'      => '3.30',
9782             'Locale::Script'        => '3.30',
9783             'Module::CoreList'      => '3.09',
9784             'Module::CoreList::TieHashDelta'=> '3.09',
9785             'Module::CoreList::Utils'=> '3.09',
9786             'Module::Load'          => '0.32',
9787             'POSIX'                 => '1.38_03',
9788             'Parse::CPAN::Meta'     => '1.4414',
9789             'Pod::Perldoc'          => '3.23',
9790             'Pod::Perldoc::BaseTo'  => '3.23',
9791             'Pod::Perldoc::GetOptsOO'=> '3.23',
9792             'Pod::Perldoc::ToANSI'  => '3.23',
9793             'Pod::Perldoc::ToChecker'=> '3.23',
9794             'Pod::Perldoc::ToMan'   => '3.23',
9795             'Pod::Perldoc::ToNroff' => '3.23',
9796             'Pod::Perldoc::ToPod'   => '3.23',
9797             'Pod::Perldoc::ToRtf'   => '3.23',
9798             'Pod::Perldoc::ToTerm'  => '3.23',
9799             'Pod::Perldoc::ToText'  => '3.23',
9800             'Pod::Perldoc::ToTk'    => '3.23',
9801             'Pod::Perldoc::ToXml'   => '3.23',
9802             'Thread::Queue'         => '3.05',
9803             'XS::APItest'           => '0.60',
9804             'XS::Typemap'           => '0.13',
9805             'autouse'               => '1.08',
9806             'base'                  => '2.22',
9807             'charnames'             => '1.40',
9808             'feature'               => '1.36',
9809             'mro'                   => '1.16',
9810             'threads'               => '1.93',
9811             'warnings'              => '1.23',
9812             'warnings::register'    => '1.03',
9813         },
9814         removed => {
9815         }
9816     },
9817     5.019011 => {
9818         delta_from => 5.01901,
9819         changed => {
9820             'CPAN'                  => '2.05',
9821             'CPAN::Distribution'    => '2.02',
9822             'CPAN::FirstTime'       => '5.5306',
9823             'CPAN::Shell'           => '5.5004',
9824             'Carp'                  => '1.3301',
9825             'Carp::Heavy'           => '1.3301',
9826             'Config'                => '5.019011',
9827             'ExtUtils::Command::MM' => '6.94',
9828             'ExtUtils::Install'     => '1.67',
9829             'ExtUtils::Liblist'     => '6.94',
9830             'ExtUtils::Liblist::Kid'=> '6.94',
9831             'ExtUtils::MM'          => '6.94',
9832             'ExtUtils::MM_AIX'      => '6.94',
9833             'ExtUtils::MM_Any'      => '6.94',
9834             'ExtUtils::MM_BeOS'     => '6.94',
9835             'ExtUtils::MM_Cygwin'   => '6.94',
9836             'ExtUtils::MM_DOS'      => '6.94',
9837             'ExtUtils::MM_Darwin'   => '6.94',
9838             'ExtUtils::MM_MacOS'    => '6.94',
9839             'ExtUtils::MM_NW5'      => '6.94',
9840             'ExtUtils::MM_OS2'      => '6.94',
9841             'ExtUtils::MM_QNX'      => '6.94',
9842             'ExtUtils::MM_UWIN'     => '6.94',
9843             'ExtUtils::MM_Unix'     => '6.94',
9844             'ExtUtils::MM_VMS'      => '6.94',
9845             'ExtUtils::MM_VOS'      => '6.94',
9846             'ExtUtils::MM_Win32'    => '6.94',
9847             'ExtUtils::MM_Win95'    => '6.94',
9848             'ExtUtils::MY'          => '6.94',
9849             'ExtUtils::MakeMaker'   => '6.94',
9850             'ExtUtils::MakeMaker::Config'=> '6.94',
9851             'ExtUtils::Mkbootstrap' => '6.94',
9852             'ExtUtils::Mksymlists'  => '6.94',
9853             'ExtUtils::testlib'     => '6.94',
9854             'Module::CoreList'      => '3.10',
9855             'Module::CoreList::TieHashDelta'=> '3.10',
9856             'Module::CoreList::Utils'=> '3.10',
9857             'PerlIO'                => '1.09',
9858             'Storable'              => '2.49',
9859             'Win32'                 => '0.49',
9860             'experimental'          => '0.007',
9861         },
9862         removed => {
9863         }
9864     },
9865     5.020000 => {
9866         delta_from => 5.019011,
9867         changed => {
9868             'Config'                => '5.02',
9869             'Devel::PPPort'         => '3.21',
9870             'Encode'                => '2.60',
9871             'Errno'                 => '1.20_03',
9872             'ExtUtils::Command::MM' => '6.98',
9873             'ExtUtils::Liblist'     => '6.98',
9874             'ExtUtils::Liblist::Kid'=> '6.98',
9875             'ExtUtils::MM'          => '6.98',
9876             'ExtUtils::MM_AIX'      => '6.98',
9877             'ExtUtils::MM_Any'      => '6.98',
9878             'ExtUtils::MM_BeOS'     => '6.98',
9879             'ExtUtils::MM_Cygwin'   => '6.98',
9880             'ExtUtils::MM_DOS'      => '6.98',
9881             'ExtUtils::MM_Darwin'   => '6.98',
9882             'ExtUtils::MM_MacOS'    => '6.98',
9883             'ExtUtils::MM_NW5'      => '6.98',
9884             'ExtUtils::MM_OS2'      => '6.98',
9885             'ExtUtils::MM_QNX'      => '6.98',
9886             'ExtUtils::MM_UWIN'     => '6.98',
9887             'ExtUtils::MM_Unix'     => '6.98',
9888             'ExtUtils::MM_VMS'      => '6.98',
9889             'ExtUtils::MM_VOS'      => '6.98',
9890             'ExtUtils::MM_Win32'    => '6.98',
9891             'ExtUtils::MM_Win95'    => '6.98',
9892             'ExtUtils::MY'          => '6.98',
9893             'ExtUtils::MakeMaker'   => '6.98',
9894             'ExtUtils::MakeMaker::Config'=> '6.98',
9895             'ExtUtils::Miniperl'    => '1.01',
9896             'ExtUtils::Mkbootstrap' => '6.98',
9897             'ExtUtils::Mksymlists'  => '6.98',
9898             'ExtUtils::testlib'     => '6.98',
9899             'Pod::Functions::Functions'=> '1.08',
9900         },
9901         removed => {
9902         }
9903     },
9904     5.021000 => {
9905         delta_from => 5.020000,
9906         changed => {
9907             'Module::CoreList'      => '5.021001',
9908             'Module::CoreList::TieHashDelta'=> '5.021001',
9909             'Module::CoreList::Utils'=> '5.021001',
9910             'feature'               => '1.37',
9911         },
9912         removed => {
9913             'CGI'                   => 1,
9914             'CGI::Apache'           => 1,
9915             'CGI::Carp'             => 1,
9916             'CGI::Cookie'           => 1,
9917             'CGI::Fast'             => 1,
9918             'CGI::Pretty'           => 1,
9919             'CGI::Push'             => 1,
9920             'CGI::Switch'           => 1,
9921             'CGI::Util'             => 1,
9922             'Module::Build'         => 1,
9923             'Module::Build::Base'   => 1,
9924             'Module::Build::Compat' => 1,
9925             'Module::Build::Config' => 1,
9926             'Module::Build::ConfigData'=> 1,
9927             'Module::Build::Cookbook'=> 1,
9928             'Module::Build::Dumper' => 1,
9929             'Module::Build::ModuleInfo'=> 1,
9930             'Module::Build::Notes'  => 1,
9931             'Module::Build::PPMMaker'=> 1,
9932             'Module::Build::Platform::Default'=> 1,
9933             'Module::Build::Platform::MacOS'=> 1,
9934             'Module::Build::Platform::Unix'=> 1,
9935             'Module::Build::Platform::VMS'=> 1,
9936             'Module::Build::Platform::VOS'=> 1,
9937             'Module::Build::Platform::Windows'=> 1,
9938             'Module::Build::Platform::aix'=> 1,
9939             'Module::Build::Platform::cygwin'=> 1,
9940             'Module::Build::Platform::darwin'=> 1,
9941             'Module::Build::Platform::os2'=> 1,
9942             'Module::Build::PodParser'=> 1,
9943             'Module::Build::Version'=> 1,
9944             'Module::Build::YAML'   => 1,
9945             'Package::Constants'    => 1,
9946             'inc::latest'           => 1,
9947         }
9948     },
9949     5.021001 => {
9950         delta_from => 5.021000,
9951         changed => {
9952             'App::Prove'            => '3.32',
9953             'App::Prove::State'     => '3.32',
9954             'App::Prove::State::Result'=> '3.32',
9955             'App::Prove::State::Result::Test'=> '3.32',
9956             'Archive::Tar'          => '2.00',
9957             'Archive::Tar::Constant'=> '2.00',
9958             'Archive::Tar::File'    => '2.00',
9959             'B'                     => '1.49',
9960             'B::Deparse'            => '1.27',
9961             'Benchmark'             => '1.19',
9962             'CPAN::Meta'            => '2.141520',
9963             'CPAN::Meta::Converter' => '2.141520',
9964             'CPAN::Meta::Feature'   => '2.141520',
9965             'CPAN::Meta::History'   => '2.141520',
9966             'CPAN::Meta::Prereqs'   => '2.141520',
9967             'CPAN::Meta::Spec'      => '2.141520',
9968             'CPAN::Meta::Validator' => '2.141520',
9969             'Carp'                  => '1.34',
9970             'Carp::Heavy'           => '1.34',
9971             'Config'                => '5.021001',
9972             'Cwd'                   => '3.48',
9973             'Data::Dumper'          => '2.152',
9974             'Devel::PPPort'         => '3.24',
9975             'Devel::Peek'           => '1.17',
9976             'Digest::SHA'           => '5.92',
9977             'DynaLoader'            => '1.26',
9978             'Encode'                => '2.62',
9979             'Errno'                 => '1.20_04',
9980             'Exporter'              => '5.71',
9981             'Exporter::Heavy'       => '5.71',
9982             'ExtUtils::Install'     => '1.68',
9983             'ExtUtils::Miniperl'    => '1.02',
9984             'ExtUtils::ParseXS'     => '3.25',
9985             'ExtUtils::ParseXS::Constants'=> '3.25',
9986             'ExtUtils::ParseXS::CountLines'=> '3.25',
9987             'ExtUtils::ParseXS::Eval'=> '3.25',
9988             'ExtUtils::ParseXS::Utilities'=> '3.25',
9989             'ExtUtils::Typemaps'    => '3.25',
9990             'ExtUtils::Typemaps::Cmd'=> '3.25',
9991             'ExtUtils::Typemaps::InputMap'=> '3.25',
9992             'ExtUtils::Typemaps::OutputMap'=> '3.25',
9993             'ExtUtils::Typemaps::Type'=> '3.25',
9994             'Fatal'                 => '2.25',
9995             'File::Spec'            => '3.48',
9996             'File::Spec::Cygwin'    => '3.48',
9997             'File::Spec::Epoc'      => '3.48',
9998             'File::Spec::Functions' => '3.48',
9999             'File::Spec::Mac'       => '3.48',
10000             'File::Spec::OS2'       => '3.48',
10001             'File::Spec::Unix'      => '3.48',
10002             'File::Spec::VMS'       => '3.48',
10003             'File::Spec::Win32'     => '3.48',
10004             'Hash::Util'            => '0.17',
10005             'IO'                    => '1.32',
10006             'List::Util'            => '1.39',
10007             'List::Util::XS'        => '1.39',
10008             'Locale::Codes'         => '3.31',
10009             'Locale::Codes::Constants'=> '3.31',
10010             'Locale::Codes::Country'=> '3.31',
10011             'Locale::Codes::Country_Codes'=> '3.31',
10012             'Locale::Codes::Country_Retired'=> '3.31',
10013             'Locale::Codes::Currency'=> '3.31',
10014             'Locale::Codes::Currency_Codes'=> '3.31',
10015             'Locale::Codes::Currency_Retired'=> '3.31',
10016             'Locale::Codes::LangExt'=> '3.31',
10017             'Locale::Codes::LangExt_Codes'=> '3.31',
10018             'Locale::Codes::LangExt_Retired'=> '3.31',
10019             'Locale::Codes::LangFam'=> '3.31',
10020             'Locale::Codes::LangFam_Codes'=> '3.31',
10021             'Locale::Codes::LangFam_Retired'=> '3.31',
10022             'Locale::Codes::LangVar'=> '3.31',
10023             'Locale::Codes::LangVar_Codes'=> '3.31',
10024             'Locale::Codes::LangVar_Retired'=> '3.31',
10025             'Locale::Codes::Language'=> '3.31',
10026             'Locale::Codes::Language_Codes'=> '3.31',
10027             'Locale::Codes::Language_Retired'=> '3.31',
10028             'Locale::Codes::Script' => '3.31',
10029             'Locale::Codes::Script_Codes'=> '3.31',
10030             'Locale::Codes::Script_Retired'=> '3.31',
10031             'Locale::Country'       => '3.31',
10032             'Locale::Currency'      => '3.31',
10033             'Locale::Language'      => '3.31',
10034             'Locale::Script'        => '3.31',
10035             'Math::BigFloat'        => '1.9994',
10036             'Math::BigInt'          => '1.9995',
10037             'Math::BigInt::Calc'    => '1.9994',
10038             'Math::BigInt::CalcEmu' => '1.9994',
10039             'Math::BigRat'          => '0.2608',
10040             'Module::CoreList'      => '5.021001_01',
10041             'Module::CoreList::TieHashDelta'=> '5.021001_01',
10042             'Module::CoreList::Utils'=> '5.021001_01',
10043             'Module::Metadata'      => '1.000024',
10044             'NDBM_File'             => '1.13',
10045             'Net::Config'           => '1.14',
10046             'Net::SMTP'             => '2.34',
10047             'Net::Time'             => '2.11',
10048             'OS2::Process'          => '1.10',
10049             'POSIX'                 => '1.40',
10050             'PerlIO::encoding'      => '0.19',
10051             'PerlIO::mmap'          => '0.013',
10052             'PerlIO::scalar'        => '0.19',
10053             'PerlIO::via'           => '0.15',
10054             'Pod::Html'             => '1.22',
10055             'Scalar::Util'          => '1.39',
10056             'SelfLoader'            => '1.22',
10057             'Socket'                => '2.014',
10058             'Storable'              => '2.51',
10059             'TAP::Base'             => '3.32',
10060             'TAP::Formatter::Base'  => '3.32',
10061             'TAP::Formatter::Color' => '3.32',
10062             'TAP::Formatter::Console'=> '3.32',
10063             'TAP::Formatter::Console::ParallelSession'=> '3.32',
10064             'TAP::Formatter::Console::Session'=> '3.32',
10065             'TAP::Formatter::File'  => '3.32',
10066             'TAP::Formatter::File::Session'=> '3.32',
10067             'TAP::Formatter::Session'=> '3.32',
10068             'TAP::Harness'          => '3.32',
10069             'TAP::Harness::Env'     => '3.32',
10070             'TAP::Object'           => '3.32',
10071             'TAP::Parser'           => '3.32',
10072             'TAP::Parser::Aggregator'=> '3.32',
10073             'TAP::Parser::Grammar'  => '3.32',
10074             'TAP::Parser::Iterator' => '3.32',
10075             'TAP::Parser::Iterator::Array'=> '3.32',
10076             'TAP::Parser::Iterator::Process'=> '3.32',
10077             'TAP::Parser::Iterator::Stream'=> '3.32',
10078             'TAP::Parser::IteratorFactory'=> '3.32',
10079             'TAP::Parser::Multiplexer'=> '3.32',
10080             'TAP::Parser::Result'   => '3.32',
10081             'TAP::Parser::Result::Bailout'=> '3.32',
10082             'TAP::Parser::Result::Comment'=> '3.32',
10083             'TAP::Parser::Result::Plan'=> '3.32',
10084             'TAP::Parser::Result::Pragma'=> '3.32',
10085             'TAP::Parser::Result::Test'=> '3.32',
10086             'TAP::Parser::Result::Unknown'=> '3.32',
10087             'TAP::Parser::Result::Version'=> '3.32',
10088             'TAP::Parser::Result::YAML'=> '3.32',
10089             'TAP::Parser::ResultFactory'=> '3.32',
10090             'TAP::Parser::Scheduler'=> '3.32',
10091             'TAP::Parser::Scheduler::Job'=> '3.32',
10092             'TAP::Parser::Scheduler::Spinner'=> '3.32',
10093             'TAP::Parser::Source'   => '3.32',
10094             'TAP::Parser::SourceHandler'=> '3.32',
10095             'TAP::Parser::SourceHandler::Executable'=> '3.32',
10096             'TAP::Parser::SourceHandler::File'=> '3.32',
10097             'TAP::Parser::SourceHandler::Handle'=> '3.32',
10098             'TAP::Parser::SourceHandler::Perl'=> '3.32',
10099             'TAP::Parser::SourceHandler::RawTAP'=> '3.32',
10100             'TAP::Parser::YAMLish::Reader'=> '3.32',
10101             'TAP::Parser::YAMLish::Writer'=> '3.32',
10102             'Term::ANSIColor'       => '4.03',
10103             'Test::Builder'         => '1.001003',
10104             'Test::Builder::Module' => '1.001003',
10105             'Test::Builder::Tester' => '1.23_003',
10106             'Test::Harness'         => '3.32',
10107             'Test::More'            => '1.001003',
10108             'Test::Simple'          => '1.001003',
10109             'Tie::File'             => '1.01',
10110             'Unicode'               => '7.0.0',
10111             'Unicode::Collate'      => '1.07',
10112             'Unicode::Normalize'    => '1.18',
10113             'Unicode::UCD'          => '0.58',
10114             'XS::APItest'           => '0.61',
10115             '_charnames'            => '1.41',
10116             'autodie'               => '2.25',
10117             'autodie::Scope::Guard' => '2.25',
10118             'autodie::Scope::GuardStack'=> '2.25',
10119             'autodie::ScopeUtil'    => '2.25',
10120             'autodie::exception'    => '2.25',
10121             'autodie::exception::system'=> '2.25',
10122             'autodie::hints'        => '2.25',
10123             'autodie::skip'         => '2.25',
10124             'charnames'             => '1.41',
10125             'locale'                => '1.04',
10126             'threads'               => '1.94',
10127             'utf8'                  => '1.14',
10128             'warnings'              => '1.24',
10129         },
10130         removed => {
10131         }
10132     },
10133     5.021002 => {
10134         delta_from => 5.021001,
10135         changed => {
10136             'B'                     => '1.50',
10137             'Config'                => '5.021002',
10138             'Cwd'                   => '3.49',
10139             'Devel::Peek'           => '1.18',
10140             'ExtUtils::Manifest'    => '1.64',
10141             'File::Copy'            => '2.30',
10142             'File::Spec'            => '3.49',
10143             'File::Spec::Cygwin'    => '3.49',
10144             'File::Spec::Epoc'      => '3.49',
10145             'File::Spec::Functions' => '3.49',
10146             'File::Spec::Mac'       => '3.49',
10147             'File::Spec::OS2'       => '3.49',
10148             'File::Spec::Unix'      => '3.49',
10149             'File::Spec::VMS'       => '3.49',
10150             'File::Spec::Win32'     => '3.49',
10151             'Filter::Simple'        => '0.92',
10152             'Hash::Util'            => '0.18',
10153             'IO'                    => '1.33',
10154             'IO::Socket::IP'        => '0.31',
10155             'IPC::Open3'            => '1.17',
10156             'Math::BigFloat'        => '1.9996',
10157             'Math::BigInt'          => '1.9996',
10158             'Math::BigInt::Calc'    => '1.9996',
10159             'Math::BigInt::CalcEmu' => '1.9996',
10160             'Module::CoreList'      => '5.021002',
10161             'Module::CoreList::TieHashDelta'=> '5.021002',
10162             'Module::CoreList::Utils'=> '5.021002',
10163             'POSIX'                 => '1.41',
10164             'Pod::Usage'            => '1.64',
10165             'XS::APItest'           => '0.62',
10166             'arybase'               => '0.08',
10167             'experimental'          => '0.008',
10168             'threads'               => '1.95',
10169             'warnings'              => '1.26',
10170         },
10171         removed => {
10172         }
10173     },
10174     5.021003 => {
10175         delta_from => 5.021002,
10176         changed => {
10177             'B::Debug'              => '1.21',
10178             'CPAN::Meta'            => '2.142060',
10179             'CPAN::Meta::Converter' => '2.142060',
10180             'CPAN::Meta::Feature'   => '2.142060',
10181             'CPAN::Meta::History'   => '2.142060',
10182             'CPAN::Meta::Merge'     => '2.142060',
10183             'CPAN::Meta::Prereqs'   => '2.142060',
10184             'CPAN::Meta::Requirements'=> '2.126',
10185             'CPAN::Meta::Spec'      => '2.142060',
10186             'CPAN::Meta::Validator' => '2.142060',
10187             'Config'                => '5.021003',
10188             'Config::Perl::V'       => '0.22',
10189             'ExtUtils::CBuilder'    => '0.280217',
10190             'ExtUtils::CBuilder::Base'=> '0.280217',
10191             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10192             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10193             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10194             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10195             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10196             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10197             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10198             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10199             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10200             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10201             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10202             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10203             'ExtUtils::Manifest'    => '1.65',
10204             'HTTP::Tiny'            => '0.047',
10205             'IPC::Open3'            => '1.18',
10206             'Module::CoreList'      => '5.021003',
10207             'Module::CoreList::TieHashDelta'=> '5.021003',
10208             'Module::CoreList::Utils'=> '5.021003',
10209             'Opcode'                => '1.28',
10210             'POSIX'                 => '1.42',
10211             'Safe'                  => '2.38',
10212             'Socket'                => '2.015',
10213             'Sys::Hostname'         => '1.19',
10214             'UNIVERSAL'             => '1.12',
10215             'XS::APItest'           => '0.63',
10216             'perlfaq'               => '5.0150045',
10217         },
10218         removed => {
10219         }
10220     },
10221     5.020001 => {
10222         delta_from => 5.020000,
10223         changed => {
10224             'Config'                => '5.020001',
10225             'Config::Perl::V'       => '0.22',
10226             'Cwd'                   => '3.48',
10227             'Exporter'              => '5.71',
10228             'Exporter::Heavy'       => '5.71',
10229             'ExtUtils::CBuilder'    => '0.280217',
10230             'ExtUtils::CBuilder::Base'=> '0.280217',
10231             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10232             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10233             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10234             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10235             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10236             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10237             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10238             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10239             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10240             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10241             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10242             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10243             'File::Copy'            => '2.30',
10244             'File::Spec'            => '3.48',
10245             'File::Spec::Cygwin'    => '3.48',
10246             'File::Spec::Epoc'      => '3.48',
10247             'File::Spec::Functions' => '3.48',
10248             'File::Spec::Mac'       => '3.48',
10249             'File::Spec::OS2'       => '3.48',
10250             'File::Spec::Unix'      => '3.48',
10251             'File::Spec::VMS'       => '3.48',
10252             'File::Spec::Win32'     => '3.48',
10253             'Module::CoreList'      => '5.020001',
10254             'Module::CoreList::TieHashDelta'=> '5.020001',
10255             'Module::CoreList::Utils'=> '5.020001',
10256             'PerlIO::via'           => '0.15',
10257             'Unicode::UCD'          => '0.58',
10258             'XS::APItest'           => '0.60_01',
10259             'utf8'                  => '1.13_01',
10260             'version'               => '0.9909',
10261             'version::regex'        => '0.9909',
10262             'version::vpp'          => '0.9909',
10263         },
10264         removed => {
10265         }
10266     },
10267     5.021004 => {
10268         delta_from => 5.021003,
10269         changed => {
10270             'App::Prove'            => '3.33',
10271             'App::Prove::State'     => '3.33',
10272             'App::Prove::State::Result'=> '3.33',
10273             'App::Prove::State::Result::Test'=> '3.33',
10274             'Archive::Tar'          => '2.02',
10275             'Archive::Tar::Constant'=> '2.02',
10276             'Archive::Tar::File'    => '2.02',
10277             'Attribute::Handlers'   => '0.97',
10278             'B'                     => '1.51',
10279             'B::Concise'            => '0.993',
10280             'B::Deparse'            => '1.28',
10281             'B::Op_private'         => '5.021004',
10282             'CPAN::Meta::Requirements'=> '2.128',
10283             'Config'                => '5.021004',
10284             'Cwd'                   => '3.50',
10285             'Data::Dumper'          => '2.154',
10286             'ExtUtils::CBuilder'    => '0.280219',
10287             'ExtUtils::CBuilder::Base'=> '0.280219',
10288             'ExtUtils::CBuilder::Platform::Unix'=> '0.280219',
10289             'ExtUtils::CBuilder::Platform::VMS'=> '0.280219',
10290             'ExtUtils::CBuilder::Platform::Windows'=> '0.280219',
10291             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280219',
10292             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280219',
10293             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280219',
10294             'ExtUtils::CBuilder::Platform::aix'=> '0.280219',
10295             'ExtUtils::CBuilder::Platform::android'=> '0.280219',
10296             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280219',
10297             'ExtUtils::CBuilder::Platform::darwin'=> '0.280219',
10298             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280219',
10299             'ExtUtils::CBuilder::Platform::os2'=> '0.280219',
10300             'ExtUtils::Install'     => '2.04',
10301             'ExtUtils::Installed'   => '2.04',
10302             'ExtUtils::Liblist::Kid'=> '6.98_01',
10303             'ExtUtils::Manifest'    => '1.68',
10304             'ExtUtils::Packlist'    => '2.04',
10305             'File::Find'            => '1.28',
10306             'File::Spec'            => '3.50',
10307             'File::Spec::Cygwin'    => '3.50',
10308             'File::Spec::Epoc'      => '3.50',
10309             'File::Spec::Functions' => '3.50',
10310             'File::Spec::Mac'       => '3.50',
10311             'File::Spec::OS2'       => '3.50',
10312             'File::Spec::Unix'      => '3.50',
10313             'File::Spec::VMS'       => '3.50',
10314             'File::Spec::Win32'     => '3.50',
10315             'Getopt::Std'           => '1.11',
10316             'HTTP::Tiny'            => '0.049',
10317             'IO'                    => '1.34',
10318             'IO::Socket::IP'        => '0.32',
10319             'List::Util'            => '1.41',
10320             'List::Util::XS'        => '1.41',
10321             'Locale::Codes'         => '3.32',
10322             'Locale::Codes::Constants'=> '3.32',
10323             'Locale::Codes::Country'=> '3.32',
10324             'Locale::Codes::Country_Codes'=> '3.32',
10325             'Locale::Codes::Country_Retired'=> '3.32',
10326             'Locale::Codes::Currency'=> '3.32',
10327             'Locale::Codes::Currency_Codes'=> '3.32',
10328             'Locale::Codes::Currency_Retired'=> '3.32',
10329             'Locale::Codes::LangExt'=> '3.32',
10330             'Locale::Codes::LangExt_Codes'=> '3.32',
10331             'Locale::Codes::LangExt_Retired'=> '3.32',
10332             'Locale::Codes::LangFam'=> '3.32',
10333             'Locale::Codes::LangFam_Codes'=> '3.32',
10334             'Locale::Codes::LangFam_Retired'=> '3.32',
10335             'Locale::Codes::LangVar'=> '3.32',
10336             'Locale::Codes::LangVar_Codes'=> '3.32',
10337             'Locale::Codes::LangVar_Retired'=> '3.32',
10338             'Locale::Codes::Language'=> '3.32',
10339             'Locale::Codes::Language_Codes'=> '3.32',
10340             'Locale::Codes::Language_Retired'=> '3.32',
10341             'Locale::Codes::Script' => '3.32',
10342             'Locale::Codes::Script_Codes'=> '3.32',
10343             'Locale::Codes::Script_Retired'=> '3.32',
10344             'Locale::Country'       => '3.32',
10345             'Locale::Currency'      => '3.32',
10346             'Locale::Language'      => '3.32',
10347             'Locale::Script'        => '3.32',
10348             'Math::BigFloat'        => '1.9997',
10349             'Math::BigInt'          => '1.9997',
10350             'Math::BigInt::Calc'    => '1.9997',
10351             'Math::BigInt::CalcEmu' => '1.9997',
10352             'Module::CoreList'      => '5.20140920',
10353             'Module::CoreList::TieHashDelta'=> '5.20140920',
10354             'Module::CoreList::Utils'=> '5.20140920',
10355             'POSIX'                 => '1.43',
10356             'Pod::Perldoc'          => '3.24',
10357             'Pod::Perldoc::BaseTo'  => '3.24',
10358             'Pod::Perldoc::GetOptsOO'=> '3.24',
10359             'Pod::Perldoc::ToANSI'  => '3.24',
10360             'Pod::Perldoc::ToChecker'=> '3.24',
10361             'Pod::Perldoc::ToMan'   => '3.24',
10362             'Pod::Perldoc::ToNroff' => '3.24',
10363             'Pod::Perldoc::ToPod'   => '3.24',
10364             'Pod::Perldoc::ToRtf'   => '3.24',
10365             'Pod::Perldoc::ToTerm'  => '3.24',
10366             'Pod::Perldoc::ToText'  => '3.24',
10367             'Pod::Perldoc::ToTk'    => '3.24',
10368             'Pod::Perldoc::ToXml'   => '3.24',
10369             'Scalar::Util'          => '1.41',
10370             'Sub::Util'             => '1.41',
10371             'TAP::Base'             => '3.33',
10372             'TAP::Formatter::Base'  => '3.33',
10373             'TAP::Formatter::Color' => '3.33',
10374             'TAP::Formatter::Console'=> '3.33',
10375             'TAP::Formatter::Console::ParallelSession'=> '3.33',
10376             'TAP::Formatter::Console::Session'=> '3.33',
10377             'TAP::Formatter::File'  => '3.33',
10378             'TAP::Formatter::File::Session'=> '3.33',
10379             'TAP::Formatter::Session'=> '3.33',
10380             'TAP::Harness'          => '3.33',
10381             'TAP::Harness::Env'     => '3.33',
10382             'TAP::Object'           => '3.33',
10383             'TAP::Parser'           => '3.33',
10384             'TAP::Parser::Aggregator'=> '3.33',
10385             'TAP::Parser::Grammar'  => '3.33',
10386             'TAP::Parser::Iterator' => '3.33',
10387             'TAP::Parser::Iterator::Array'=> '3.33',
10388             'TAP::Parser::Iterator::Process'=> '3.33',
10389             'TAP::Parser::Iterator::Stream'=> '3.33',
10390             'TAP::Parser::IteratorFactory'=> '3.33',
10391             'TAP::Parser::Multiplexer'=> '3.33',
10392             'TAP::Parser::Result'   => '3.33',
10393             'TAP::Parser::Result::Bailout'=> '3.33',
10394             'TAP::Parser::Result::Comment'=> '3.33',
10395             'TAP::Parser::Result::Plan'=> '3.33',
10396             'TAP::Parser::Result::Pragma'=> '3.33',
10397             'TAP::Parser::Result::Test'=> '3.33',
10398             'TAP::Parser::Result::Unknown'=> '3.33',
10399             'TAP::Parser::Result::Version'=> '3.33',
10400             'TAP::Parser::Result::YAML'=> '3.33',
10401             'TAP::Parser::ResultFactory'=> '3.33',
10402             'TAP::Parser::Scheduler'=> '3.33',
10403             'TAP::Parser::Scheduler::Job'=> '3.33',
10404             'TAP::Parser::Scheduler::Spinner'=> '3.33',
10405             'TAP::Parser::Source'   => '3.33',
10406             'TAP::Parser::SourceHandler'=> '3.33',
10407             'TAP::Parser::SourceHandler::Executable'=> '3.33',
10408             'TAP::Parser::SourceHandler::File'=> '3.33',
10409             'TAP::Parser::SourceHandler::Handle'=> '3.33',
10410             'TAP::Parser::SourceHandler::Perl'=> '3.33',
10411             'TAP::Parser::SourceHandler::RawTAP'=> '3.33',
10412             'TAP::Parser::YAMLish::Reader'=> '3.33',
10413             'TAP::Parser::YAMLish::Writer'=> '3.33',
10414             'Term::ReadLine'        => '1.15',
10415             'Test::Builder'         => '1.001006',
10416             'Test::Builder::Module' => '1.001006',
10417             'Test::Builder::Tester' => '1.24',
10418             'Test::Builder::Tester::Color'=> '1.24',
10419             'Test::Harness'         => '3.33',
10420             'Test::More'            => '1.001006',
10421             'Test::Simple'          => '1.001006',
10422             'Time::Piece'           => '1.29',
10423             'Time::Seconds'         => '1.29',
10424             'XS::APItest'           => '0.64',
10425             '_charnames'            => '1.42',
10426             'attributes'            => '0.23',
10427             'bigint'                => '0.37',
10428             'bignum'                => '0.38',
10429             'bigrat'                => '0.37',
10430             'constant'              => '1.32',
10431             'experimental'          => '0.010',
10432             'overload'              => '1.23',
10433             'threads'               => '1.96',
10434             'version'               => '0.9909',
10435             'version::regex'        => '0.9909',
10436             'version::vpp'          => '0.9909',
10437         },
10438         removed => {
10439         }
10440     },
10441     5.021005 => {
10442         delta_from => 5.021004,
10443         changed => {
10444             'B'                     => '1.52',
10445             'B::Concise'            => '0.994',
10446             'B::Debug'              => '1.22',
10447             'B::Deparse'            => '1.29',
10448             'B::Op_private'         => '5.021005',
10449             'CPAN::Meta'            => '2.142690',
10450             'CPAN::Meta::Converter' => '2.142690',
10451             'CPAN::Meta::Feature'   => '2.142690',
10452             'CPAN::Meta::History'   => '2.142690',
10453             'CPAN::Meta::Merge'     => '2.142690',
10454             'CPAN::Meta::Prereqs'   => '2.142690',
10455             'CPAN::Meta::Spec'      => '2.142690',
10456             'CPAN::Meta::Validator' => '2.142690',
10457             'Compress::Raw::Bzip2'  => '2.066',
10458             'Compress::Raw::Zlib'   => '2.066',
10459             'Compress::Zlib'        => '2.066',
10460             'Config'                => '5.021005',
10461             'Cwd'                   => '3.51',
10462             'DynaLoader'            => '1.27',
10463             'Errno'                 => '1.21',
10464             'ExtUtils::CBuilder'    => '0.280220',
10465             'ExtUtils::CBuilder::Base'=> '0.280220',
10466             'ExtUtils::CBuilder::Platform::Unix'=> '0.280220',
10467             'ExtUtils::CBuilder::Platform::VMS'=> '0.280220',
10468             'ExtUtils::CBuilder::Platform::Windows'=> '0.280220',
10469             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280220',
10470             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280220',
10471             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280220',
10472             'ExtUtils::CBuilder::Platform::aix'=> '0.280220',
10473             'ExtUtils::CBuilder::Platform::android'=> '0.280220',
10474             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280220',
10475             'ExtUtils::CBuilder::Platform::darwin'=> '0.280220',
10476             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280220',
10477             'ExtUtils::CBuilder::Platform::os2'=> '0.280220',
10478             'ExtUtils::Miniperl'    => '1.03',
10479             'Fcntl'                 => '1.13',
10480             'File::Find'            => '1.29',
10481             'File::Spec'            => '3.51',
10482             'File::Spec::Cygwin'    => '3.51',
10483             'File::Spec::Epoc'      => '3.51',
10484             'File::Spec::Functions' => '3.51',
10485             'File::Spec::Mac'       => '3.51',
10486             'File::Spec::OS2'       => '3.51',
10487             'File::Spec::Unix'      => '3.51',
10488             'File::Spec::VMS'       => '3.51',
10489             'File::Spec::Win32'     => '3.51',
10490             'HTTP::Tiny'            => '0.050',
10491             'IO::Compress::Adapter::Bzip2'=> '2.066',
10492             'IO::Compress::Adapter::Deflate'=> '2.066',
10493             'IO::Compress::Adapter::Identity'=> '2.066',
10494             'IO::Compress::Base'    => '2.066',
10495             'IO::Compress::Base::Common'=> '2.066',
10496             'IO::Compress::Bzip2'   => '2.066',
10497             'IO::Compress::Deflate' => '2.066',
10498             'IO::Compress::Gzip'    => '2.066',
10499             'IO::Compress::Gzip::Constants'=> '2.066',
10500             'IO::Compress::RawDeflate'=> '2.066',
10501             'IO::Compress::Zip'     => '2.066',
10502             'IO::Compress::Zip::Constants'=> '2.066',
10503             'IO::Compress::Zlib::Constants'=> '2.066',
10504             'IO::Compress::Zlib::Extra'=> '2.066',
10505             'IO::Uncompress::Adapter::Bunzip2'=> '2.066',
10506             'IO::Uncompress::Adapter::Identity'=> '2.066',
10507             'IO::Uncompress::Adapter::Inflate'=> '2.066',
10508             'IO::Uncompress::AnyInflate'=> '2.066',
10509             'IO::Uncompress::AnyUncompress'=> '2.066',
10510             'IO::Uncompress::Base'  => '2.066',
10511             'IO::Uncompress::Bunzip2'=> '2.066',
10512             'IO::Uncompress::Gunzip'=> '2.066',
10513             'IO::Uncompress::Inflate'=> '2.066',
10514             'IO::Uncompress::RawInflate'=> '2.066',
10515             'IO::Uncompress::Unzip' => '2.066',
10516             'JSON::PP'              => '2.27300',
10517             'Module::CoreList'      => '5.20141020',
10518             'Module::CoreList::TieHashDelta'=> '5.20141020',
10519             'Module::CoreList::Utils'=> '5.20141020',
10520             'Net::Cmd'              => '3.02',
10521             'Net::Config'           => '3.02',
10522             'Net::Domain'           => '3.02',
10523             'Net::FTP'              => '3.02',
10524             'Net::FTP::A'           => '3.02',
10525             'Net::FTP::E'           => '3.02',
10526             'Net::FTP::I'           => '3.02',
10527             'Net::FTP::L'           => '3.02',
10528             'Net::FTP::dataconn'    => '3.02',
10529             'Net::NNTP'             => '3.02',
10530             'Net::Netrc'            => '3.02',
10531             'Net::POP3'             => '3.02',
10532             'Net::SMTP'             => '3.02',
10533             'Net::Time'             => '3.02',
10534             'Opcode'                => '1.29',
10535             'POSIX'                 => '1.45',
10536             'Socket'                => '2.016',
10537             'Test::Builder'         => '1.001008',
10538             'Test::Builder::Module' => '1.001008',
10539             'Test::More'            => '1.001008',
10540             'Test::Simple'          => '1.001008',
10541             'XS::APItest'           => '0.65',
10542             'XSLoader'              => '0.18',
10543             'attributes'            => '0.24',
10544             'experimental'          => '0.012',
10545             'feature'               => '1.38',
10546             'perlfaq'               => '5.0150046',
10547             're'                    => '0.27',
10548             'threads::shared'       => '1.47',
10549             'warnings'              => '1.28',
10550             'warnings::register'    => '1.04',
10551         },
10552         removed => {
10553         }
10554     },
10555     5.021006 => {
10556         delta_from => 5.021005,
10557         changed => {
10558             'App::Prove'            => '3.34',
10559             'App::Prove::State'     => '3.34',
10560             'App::Prove::State::Result'=> '3.34',
10561             'App::Prove::State::Result::Test'=> '3.34',
10562             'B'                     => '1.53',
10563             'B::Concise'            => '0.995',
10564             'B::Deparse'            => '1.30',
10565             'B::Op_private'         => '5.021006',
10566             'CPAN::Meta'            => '2.143240',
10567             'CPAN::Meta::Converter' => '2.143240',
10568             'CPAN::Meta::Feature'   => '2.143240',
10569             'CPAN::Meta::History'   => '2.143240',
10570             'CPAN::Meta::Merge'     => '2.143240',
10571             'CPAN::Meta::Prereqs'   => '2.143240',
10572             'CPAN::Meta::Requirements'=> '2.130',
10573             'CPAN::Meta::Spec'      => '2.143240',
10574             'CPAN::Meta::Validator' => '2.143240',
10575             'Config'                => '5.021006',
10576             'Devel::Peek'           => '1.19',
10577             'Digest::SHA'           => '5.93',
10578             'DynaLoader'            => '1.28',
10579             'Encode'                => '2.64',
10580             'Exporter'              => '5.72',
10581             'Exporter::Heavy'       => '5.72',
10582             'ExtUtils::Command::MM' => '7.02',
10583             'ExtUtils::Liblist'     => '7.02',
10584             'ExtUtils::Liblist::Kid'=> '7.02',
10585             'ExtUtils::MM'          => '7.02',
10586             'ExtUtils::MM_AIX'      => '7.02',
10587             'ExtUtils::MM_Any'      => '7.02',
10588             'ExtUtils::MM_BeOS'     => '7.02',
10589             'ExtUtils::MM_Cygwin'   => '7.02',
10590             'ExtUtils::MM_DOS'      => '7.02',
10591             'ExtUtils::MM_Darwin'   => '7.02',
10592             'ExtUtils::MM_MacOS'    => '7.02',
10593             'ExtUtils::MM_NW5'      => '7.02',
10594             'ExtUtils::MM_OS2'      => '7.02',
10595             'ExtUtils::MM_QNX'      => '7.02',
10596             'ExtUtils::MM_UWIN'     => '7.02',
10597             'ExtUtils::MM_Unix'     => '7.02',
10598             'ExtUtils::MM_VMS'      => '7.02',
10599             'ExtUtils::MM_VOS'      => '7.02',
10600             'ExtUtils::MM_Win32'    => '7.02',
10601             'ExtUtils::MM_Win95'    => '7.02',
10602             'ExtUtils::MY'          => '7.02',
10603             'ExtUtils::MakeMaker'   => '7.02',
10604             'ExtUtils::MakeMaker::Config'=> '7.02',
10605             'ExtUtils::MakeMaker::Locale'=> '7.02',
10606             'ExtUtils::MakeMaker::version'=> '7.02',
10607             'ExtUtils::MakeMaker::version::regex'=> '7.02',
10608             'ExtUtils::MakeMaker::version::vpp'=> '7.02',
10609             'ExtUtils::Manifest'    => '1.69',
10610             'ExtUtils::Mkbootstrap' => '7.02',
10611             'ExtUtils::Mksymlists'  => '7.02',
10612             'ExtUtils::ParseXS'     => '3.26',
10613             'ExtUtils::ParseXS::Constants'=> '3.26',
10614             'ExtUtils::ParseXS::CountLines'=> '3.26',
10615             'ExtUtils::ParseXS::Eval'=> '3.26',
10616             'ExtUtils::ParseXS::Utilities'=> '3.26',
10617             'ExtUtils::testlib'     => '7.02',
10618             'File::Spec::VMS'       => '3.52',
10619             'HTTP::Tiny'            => '0.051',
10620             'I18N::Langinfo'        => '0.12',
10621             'IO::Socket'            => '1.38',
10622             'Module::CoreList'      => '5.20141120',
10623             'Module::CoreList::TieHashDelta'=> '5.20141120',
10624             'Module::CoreList::Utils'=> '5.20141120',
10625             'POSIX'                 => '1.46',
10626             'PerlIO::encoding'      => '0.20',
10627             'PerlIO::scalar'        => '0.20',
10628             'TAP::Base'             => '3.34',
10629             'TAP::Formatter::Base'  => '3.34',
10630             'TAP::Formatter::Color' => '3.34',
10631             'TAP::Formatter::Console'=> '3.34',
10632             'TAP::Formatter::Console::ParallelSession'=> '3.34',
10633             'TAP::Formatter::Console::Session'=> '3.34',
10634             'TAP::Formatter::File'  => '3.34',
10635             'TAP::Formatter::File::Session'=> '3.34',
10636             'TAP::Formatter::Session'=> '3.34',
10637             'TAP::Harness'          => '3.34',
10638             'TAP::Harness::Env'     => '3.34',
10639             'TAP::Object'           => '3.34',
10640             'TAP::Parser'           => '3.34',
10641             'TAP::Parser::Aggregator'=> '3.34',
10642             'TAP::Parser::Grammar'  => '3.34',
10643             'TAP::Parser::Iterator' => '3.34',
10644             'TAP::Parser::Iterator::Array'=> '3.34',
10645             'TAP::Parser::Iterator::Process'=> '3.34',
10646             'TAP::Parser::Iterator::Stream'=> '3.34',
10647             'TAP::Parser::IteratorFactory'=> '3.34',
10648             'TAP::Parser::Multiplexer'=> '3.34',
10649             'TAP::Parser::Result'   => '3.34',
10650             'TAP::Parser::Result::Bailout'=> '3.34',
10651             'TAP::Parser::Result::Comment'=> '3.34',
10652             'TAP::Parser::Result::Plan'=> '3.34',
10653             'TAP::Parser::Result::Pragma'=> '3.34',
10654             'TAP::Parser::Result::Test'=> '3.34',
10655             'TAP::Parser::Result::Unknown'=> '3.34',
10656             'TAP::Parser::Result::Version'=> '3.34',
10657             'TAP::Parser::Result::YAML'=> '3.34',
10658             'TAP::Parser::ResultFactory'=> '3.34',
10659             'TAP::Parser::Scheduler'=> '3.34',
10660             'TAP::Parser::Scheduler::Job'=> '3.34',
10661             'TAP::Parser::Scheduler::Spinner'=> '3.34',
10662             'TAP::Parser::Source'   => '3.34',
10663             'TAP::Parser::SourceHandler'=> '3.34',
10664             'TAP::Parser::SourceHandler::Executable'=> '3.34',
10665             'TAP::Parser::SourceHandler::File'=> '3.34',
10666             'TAP::Parser::SourceHandler::Handle'=> '3.34',
10667             'TAP::Parser::SourceHandler::Perl'=> '3.34',
10668             'TAP::Parser::SourceHandler::RawTAP'=> '3.34',
10669             'TAP::Parser::YAMLish::Reader'=> '3.34',
10670             'TAP::Parser::YAMLish::Writer'=> '3.34',
10671             'Test::Builder'         => '1.301001_075',
10672             'Test::Builder::Module' => '1.301001_075',
10673             'Test::Builder::Tester' => '1.301001_075',
10674             'Test::Builder::Tester::Color'=> '1.301001_075',
10675             'Test::Harness'         => '3.34',
10676             'Test::More'            => '1.301001_075',
10677             'Test::More::DeepCheck' => undef,
10678             'Test::More::DeepCheck::Strict'=> undef,
10679             'Test::More::DeepCheck::Tolerant'=> undef,
10680             'Test::More::Tools'     => undef,
10681             'Test::MostlyLike'      => undef,
10682             'Test::Simple'          => '1.301001_075',
10683             'Test::Stream'          => '1.301001_075',
10684             'Test::Stream::ArrayBase'=> undef,
10685             'Test::Stream::ArrayBase::Meta'=> undef,
10686             'Test::Stream::Carp'    => undef,
10687             'Test::Stream::Context' => undef,
10688             'Test::Stream::Event'   => undef,
10689             'Test::Stream::Event::Bail'=> undef,
10690             'Test::Stream::Event::Child'=> undef,
10691             'Test::Stream::Event::Diag'=> undef,
10692             'Test::Stream::Event::Finish'=> undef,
10693             'Test::Stream::Event::Note'=> undef,
10694             'Test::Stream::Event::Ok'=> undef,
10695             'Test::Stream::Event::Plan'=> undef,
10696             'Test::Stream::Event::Subtest'=> undef,
10697             'Test::Stream::ExitMagic'=> undef,
10698             'Test::Stream::ExitMagic::Context'=> undef,
10699             'Test::Stream::Exporter'=> undef,
10700             'Test::Stream::Exporter::Meta'=> undef,
10701             'Test::Stream::IOSets'  => undef,
10702             'Test::Stream::Meta'    => undef,
10703             'Test::Stream::PackageUtil'=> undef,
10704             'Test::Stream::Tester'  => undef,
10705             'Test::Stream::Tester::Checks'=> undef,
10706             'Test::Stream::Tester::Checks::Event'=> undef,
10707             'Test::Stream::Tester::Events'=> undef,
10708             'Test::Stream::Tester::Events::Event'=> undef,
10709             'Test::Stream::Tester::Grab'=> undef,
10710             'Test::Stream::Threads' => undef,
10711             'Test::Stream::Toolset' => undef,
10712             'Test::Stream::Util'    => undef,
10713             'Test::Tester'          => '1.301001_075',
10714             'Test::Tester::Capture' => undef,
10715             'Test::use::ok'         => '1.301001_075',
10716             'Unicode::UCD'          => '0.59',
10717             'XS::APItest'           => '0.68',
10718             'XSLoader'              => '0.19',
10719             'experimental'          => '0.013',
10720             'locale'                => '1.05',
10721             'ok'                    => '1.301001_075',
10722             'overload'              => '1.24',
10723             're'                    => '0.28',
10724             'warnings'              => '1.29',
10725         },
10726         removed => {
10727         }
10728     },
10729     5.021007 => {
10730         delta_from => 5.021006,
10731         changed => {
10732             'Archive::Tar'          => '2.04',
10733             'Archive::Tar::Constant'=> '2.04',
10734             'Archive::Tar::File'    => '2.04',
10735             'B'                     => '1.54',
10736             'B::Concise'            => '0.996',
10737             'B::Deparse'            => '1.31',
10738             'B::Op_private'         => '5.021007',
10739             'B::Showlex'            => '1.05',
10740             'Compress::Raw::Bzip2'  => '2.067',
10741             'Compress::Raw::Zlib'   => '2.067',
10742             'Compress::Zlib'        => '2.067',
10743             'Config'                => '5.021007',
10744             'Cwd'                   => '3.54',
10745             'DB_File'               => '1.834',
10746             'Data::Dumper'          => '2.155',
10747             'Devel::PPPort'         => '3.25',
10748             'Devel::Peek'           => '1.20',
10749             'DynaLoader'            => '1.29',
10750             'Encode'                => '2.67',
10751             'Errno'                 => '1.22',
10752             'ExtUtils::CBuilder'    => '0.280221',
10753             'ExtUtils::CBuilder::Base'=> '0.280221',
10754             'ExtUtils::CBuilder::Platform::Unix'=> '0.280221',
10755             'ExtUtils::CBuilder::Platform::VMS'=> '0.280221',
10756             'ExtUtils::CBuilder::Platform::Windows'=> '0.280221',
10757             'ExtUtils::CBuilder::Platform::aix'=> '0.280221',
10758             'ExtUtils::CBuilder::Platform::android'=> '0.280221',
10759             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280221',
10760             'ExtUtils::CBuilder::Platform::darwin'=> '0.280221',
10761             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280221',
10762             'ExtUtils::CBuilder::Platform::os2'=> '0.280221',
10763             'ExtUtils::Command::MM' => '7.04',
10764             'ExtUtils::Liblist'     => '7.04',
10765             'ExtUtils::Liblist::Kid'=> '7.04',
10766             'ExtUtils::MM'          => '7.04',
10767             'ExtUtils::MM_AIX'      => '7.04',
10768             'ExtUtils::MM_Any'      => '7.04',
10769             'ExtUtils::MM_BeOS'     => '7.04',
10770             'ExtUtils::MM_Cygwin'   => '7.04',
10771             'ExtUtils::MM_DOS'      => '7.04',
10772             'ExtUtils::MM_Darwin'   => '7.04',
10773             'ExtUtils::MM_MacOS'    => '7.04',
10774             'ExtUtils::MM_NW5'      => '7.04',
10775             'ExtUtils::MM_OS2'      => '7.04',
10776             'ExtUtils::MM_QNX'      => '7.04',
10777             'ExtUtils::MM_UWIN'     => '7.04',
10778             'ExtUtils::MM_Unix'     => '7.04',
10779             'ExtUtils::MM_VMS'      => '7.04',
10780             'ExtUtils::MM_VOS'      => '7.04',
10781             'ExtUtils::MM_Win32'    => '7.04',
10782             'ExtUtils::MM_Win95'    => '7.04',
10783             'ExtUtils::MY'          => '7.04',
10784             'ExtUtils::MakeMaker'   => '7.04',
10785             'ExtUtils::MakeMaker::Config'=> '7.04',
10786             'ExtUtils::MakeMaker::Locale'=> '7.04',
10787             'ExtUtils::MakeMaker::version'=> '7.04',
10788             'ExtUtils::MakeMaker::version::regex'=> '7.04',
10789             'ExtUtils::MakeMaker::version::vpp'=> '7.04',
10790             'ExtUtils::Mkbootstrap' => '7.04',
10791             'ExtUtils::Mksymlists'  => '7.04',
10792             'ExtUtils::ParseXS'     => '3.27',
10793             'ExtUtils::ParseXS::Constants'=> '3.27',
10794             'ExtUtils::ParseXS::CountLines'=> '3.27',
10795             'ExtUtils::ParseXS::Eval'=> '3.27',
10796             'ExtUtils::ParseXS::Utilities'=> '3.27',
10797             'ExtUtils::testlib'     => '7.04',
10798             'File::Spec'            => '3.53',
10799             'File::Spec::Cygwin'    => '3.54',
10800             'File::Spec::Epoc'      => '3.54',
10801             'File::Spec::Functions' => '3.54',
10802             'File::Spec::Mac'       => '3.54',
10803             'File::Spec::OS2'       => '3.54',
10804             'File::Spec::Unix'      => '3.54',
10805             'File::Spec::VMS'       => '3.54',
10806             'File::Spec::Win32'     => '3.54',
10807             'Filter::Util::Call'    => '1.51',
10808             'HTTP::Tiny'            => '0.053',
10809             'IO'                    => '1.35',
10810             'IO::Compress::Adapter::Bzip2'=> '2.067',
10811             'IO::Compress::Adapter::Deflate'=> '2.067',
10812             'IO::Compress::Adapter::Identity'=> '2.067',
10813             'IO::Compress::Base'    => '2.067',
10814             'IO::Compress::Base::Common'=> '2.067',
10815             'IO::Compress::Bzip2'   => '2.067',
10816             'IO::Compress::Deflate' => '2.067',
10817             'IO::Compress::Gzip'    => '2.067',
10818             'IO::Compress::Gzip::Constants'=> '2.067',
10819             'IO::Compress::RawDeflate'=> '2.067',
10820             'IO::Compress::Zip'     => '2.067',
10821             'IO::Compress::Zip::Constants'=> '2.067',
10822             'IO::Compress::Zlib::Constants'=> '2.067',
10823             'IO::Compress::Zlib::Extra'=> '2.067',
10824             'IO::Socket::IP'        => '0.34',
10825             'IO::Uncompress::Adapter::Bunzip2'=> '2.067',
10826             'IO::Uncompress::Adapter::Identity'=> '2.067',
10827             'IO::Uncompress::Adapter::Inflate'=> '2.067',
10828             'IO::Uncompress::AnyInflate'=> '2.067',
10829             'IO::Uncompress::AnyUncompress'=> '2.067',
10830             'IO::Uncompress::Base'  => '2.067',
10831             'IO::Uncompress::Bunzip2'=> '2.067',
10832             'IO::Uncompress::Gunzip'=> '2.067',
10833             'IO::Uncompress::Inflate'=> '2.067',
10834             'IO::Uncompress::RawInflate'=> '2.067',
10835             'IO::Uncompress::Unzip' => '2.067',
10836             'Locale::Codes'         => '3.33',
10837             'Locale::Codes::Constants'=> '3.33',
10838             'Locale::Codes::Country'=> '3.33',
10839             'Locale::Codes::Country_Codes'=> '3.33',
10840             'Locale::Codes::Country_Retired'=> '3.33',
10841             'Locale::Codes::Currency'=> '3.33',
10842             'Locale::Codes::Currency_Codes'=> '3.33',
10843             'Locale::Codes::Currency_Retired'=> '3.33',
10844             'Locale::Codes::LangExt'=> '3.33',
10845             'Locale::Codes::LangExt_Codes'=> '3.33',
10846             'Locale::Codes::LangExt_Retired'=> '3.33',
10847             'Locale::Codes::LangFam'=> '3.33',
10848             'Locale::Codes::LangFam_Codes'=> '3.33',
10849             'Locale::Codes::LangFam_Retired'=> '3.33',
10850             'Locale::Codes::LangVar'=> '3.33',
10851             'Locale::Codes::LangVar_Codes'=> '3.33',
10852             'Locale::Codes::LangVar_Retired'=> '3.33',
10853             'Locale::Codes::Language'=> '3.33',
10854             'Locale::Codes::Language_Codes'=> '3.33',
10855             'Locale::Codes::Language_Retired'=> '3.33',
10856             'Locale::Codes::Script' => '3.33',
10857             'Locale::Codes::Script_Codes'=> '3.33',
10858             'Locale::Codes::Script_Retired'=> '3.33',
10859             'Locale::Country'       => '3.33',
10860             'Locale::Currency'      => '3.33',
10861             'Locale::Language'      => '3.33',
10862             'Locale::Maketext'      => '1.26',
10863             'Locale::Script'        => '3.33',
10864             'Module::CoreList'      => '5.20141220',
10865             'Module::CoreList::TieHashDelta'=> '5.20141220',
10866             'Module::CoreList::Utils'=> '5.20141220',
10867             'NDBM_File'             => '1.14',
10868             'Net::Cmd'              => '3.04',
10869             'Net::Config'           => '3.04',
10870             'Net::Domain'           => '3.04',
10871             'Net::FTP'              => '3.04',
10872             'Net::FTP::A'           => '3.04',
10873             'Net::FTP::E'           => '3.04',
10874             'Net::FTP::I'           => '3.04',
10875             'Net::FTP::L'           => '3.04',
10876             'Net::FTP::dataconn'    => '3.04',
10877             'Net::NNTP'             => '3.04',
10878             'Net::Netrc'            => '3.04',
10879             'Net::POP3'             => '3.04',
10880             'Net::SMTP'             => '3.04',
10881             'Net::Time'             => '3.04',
10882             'Opcode'                => '1.30',
10883             'POSIX'                 => '1.48',
10884             'PerlIO::scalar'        => '0.21',
10885             'Pod::Escapes'          => '1.07',
10886             'SDBM_File'             => '1.12',
10887             'Storable'              => '2.52',
10888             'Sys::Hostname'         => '1.20',
10889             'Test::Builder'         => '1.301001_090',
10890             'Test::Builder::Module' => '1.301001_090',
10891             'Test::Builder::Tester' => '1.301001_090',
10892             'Test::Builder::Tester::Color'=> '1.301001_090',
10893             'Test::CanFork'         => undef,
10894             'Test::CanThread'       => undef,
10895             'Test::More'            => '1.301001_090',
10896             'Test::Simple'          => '1.301001_090',
10897             'Test::Stream'          => '1.301001_090',
10898             'Test::Stream::API'     => undef,
10899             'Test::Stream::ForceExit'=> undef,
10900             'Test::Stream::Subtest' => undef,
10901             'Test::Tester'          => '1.301001_090',
10902             'Test::use::ok'         => '1.301001_090',
10903             'Unicode::Collate'      => '1.09',
10904             'Unicode::Collate::CJK::Big5'=> '1.09',
10905             'Unicode::Collate::CJK::GB2312'=> '1.09',
10906             'Unicode::Collate::CJK::JISX0208'=> '1.09',
10907             'Unicode::Collate::CJK::Korean'=> '1.09',
10908             'Unicode::Collate::CJK::Pinyin'=> '1.09',
10909             'Unicode::Collate::CJK::Stroke'=> '1.09',
10910             'Unicode::Collate::CJK::Zhuyin'=> '1.09',
10911             'Unicode::Collate::Locale'=> '1.09',
10912             'XS::APItest'           => '0.69',
10913             'XSLoader'              => '0.20',
10914             '_charnames'            => '1.43',
10915             'arybase'               => '0.09',
10916             'charnames'             => '1.43',
10917             'feature'               => '1.39',
10918             'mro'                   => '1.17',
10919             'ok'                    => '1.301001_090',
10920             'strict'                => '1.09',
10921             'threads'               => '1.96_001',
10922         },
10923         removed => {
10924         }
10925     },
10926     5.021008 => {
10927         delta_from => 5.021007,
10928         changed => {
10929             'App::Prove'            => '3.35',
10930             'App::Prove::State'     => '3.35',
10931             'App::Prove::State::Result'=> '3.35',
10932             'App::Prove::State::Result::Test'=> '3.35',
10933             'B'                     => '1.55',
10934             'B::Deparse'            => '1.32',
10935             'B::Op_private'         => '5.021008',
10936             'CPAN::Meta::Requirements'=> '2.131',
10937             'Compress::Raw::Bzip2'  => '2.068',
10938             'Compress::Raw::Zlib'   => '2.068',
10939             'Compress::Zlib'        => '2.068',
10940             'Config'                => '5.021008',
10941             'DB_File'               => '1.835',
10942             'Data::Dumper'          => '2.156',
10943             'Devel::PPPort'         => '3.28',
10944             'Devel::Peek'           => '1.21',
10945             'Digest::MD5'           => '2.54',
10946             'Digest::SHA'           => '5.95',
10947             'DynaLoader'            => '1.30',
10948             'ExtUtils::Command'     => '1.20',
10949             'ExtUtils::Manifest'    => '1.70',
10950             'Fatal'                 => '2.26',
10951             'File::Glob'            => '1.24',
10952             'Filter::Util::Call'    => '1.54',
10953             'Getopt::Long'          => '2.43',
10954             'IO::Compress::Adapter::Bzip2'=> '2.068',
10955             'IO::Compress::Adapter::Deflate'=> '2.068',
10956             'IO::Compress::Adapter::Identity'=> '2.068',
10957             'IO::Compress::Base'    => '2.068',
10958             'IO::Compress::Base::Common'=> '2.068',
10959             'IO::Compress::Bzip2'   => '2.068',
10960             'IO::Compress::Deflate' => '2.068',
10961             'IO::Compress::Gzip'    => '2.068',
10962             'IO::Compress::Gzip::Constants'=> '2.068',
10963             'IO::Compress::RawDeflate'=> '2.068',
10964             'IO::Compress::Zip'     => '2.068',
10965             'IO::Compress::Zip::Constants'=> '2.068',
10966             'IO::Compress::Zlib::Constants'=> '2.068',
10967             'IO::Compress::Zlib::Extra'=> '2.068',
10968             'IO::Socket::IP'        => '0.36',
10969             'IO::Uncompress::Adapter::Bunzip2'=> '2.068',
10970             'IO::Uncompress::Adapter::Identity'=> '2.068',
10971             'IO::Uncompress::Adapter::Inflate'=> '2.068',
10972             'IO::Uncompress::AnyInflate'=> '2.068',
10973             'IO::Uncompress::AnyUncompress'=> '2.068',
10974             'IO::Uncompress::Base'  => '2.068',
10975             'IO::Uncompress::Bunzip2'=> '2.068',
10976             'IO::Uncompress::Gunzip'=> '2.068',
10977             'IO::Uncompress::Inflate'=> '2.068',
10978             'IO::Uncompress::RawInflate'=> '2.068',
10979             'IO::Uncompress::Unzip' => '2.068',
10980             'MIME::Base64'          => '3.15',
10981             'Module::CoreList'      => '5.20150220',
10982             'Module::CoreList::TieHashDelta'=> '5.20150220',
10983             'Module::CoreList::Utils'=> '5.20150220',
10984             'Module::Load::Conditional'=> '0.64',
10985             'Module::Metadata'      => '1.000026',
10986             'Net::Cmd'              => '3.05',
10987             'Net::Config'           => '3.05',
10988             'Net::Domain'           => '3.05',
10989             'Net::FTP'              => '3.05',
10990             'Net::FTP::A'           => '3.05',
10991             'Net::FTP::E'           => '3.05',
10992             'Net::FTP::I'           => '3.05',
10993             'Net::FTP::L'           => '3.05',
10994             'Net::FTP::dataconn'    => '3.05',
10995             'Net::NNTP'             => '3.05',
10996             'Net::Netrc'            => '3.05',
10997             'Net::POP3'             => '3.05',
10998             'Net::SMTP'             => '3.05',
10999             'Net::Time'             => '3.05',
11000             'Opcode'                => '1.31',
11001             'POSIX'                 => '1.49',
11002             'PerlIO::encoding'      => '0.21',
11003             'Pod::Simple'           => '3.29',
11004             'Pod::Simple::BlackBox' => '3.29',
11005             'Pod::Simple::Checker'  => '3.29',
11006             'Pod::Simple::Debug'    => '3.29',
11007             'Pod::Simple::DumpAsText'=> '3.29',
11008             'Pod::Simple::DumpAsXML'=> '3.29',
11009             'Pod::Simple::HTML'     => '3.29',
11010             'Pod::Simple::HTMLBatch'=> '3.29',
11011             'Pod::Simple::LinkSection'=> '3.29',
11012             'Pod::Simple::Methody'  => '3.29',
11013             'Pod::Simple::Progress' => '3.29',
11014             'Pod::Simple::PullParser'=> '3.29',
11015             'Pod::Simple::PullParserEndToken'=> '3.29',
11016             'Pod::Simple::PullParserStartToken'=> '3.29',
11017             'Pod::Simple::PullParserTextToken'=> '3.29',
11018             'Pod::Simple::PullParserToken'=> '3.29',
11019             'Pod::Simple::RTF'      => '3.29',
11020             'Pod::Simple::Search'   => '3.29',
11021             'Pod::Simple::SimpleTree'=> '3.29',
11022             'Pod::Simple::Text'     => '3.29',
11023             'Pod::Simple::TextContent'=> '3.29',
11024             'Pod::Simple::TiedOutFH'=> '3.29',
11025             'Pod::Simple::Transcode'=> '3.29',
11026             'Pod::Simple::TranscodeDumb'=> '3.29',
11027             'Pod::Simple::TranscodeSmart'=> '3.29',
11028             'Pod::Simple::XHTML'    => '3.29',
11029             'Pod::Simple::XMLOutStream'=> '3.29',
11030             'SDBM_File'             => '1.13',
11031             'Safe'                  => '2.39',
11032             'TAP::Base'             => '3.35',
11033             'TAP::Formatter::Base'  => '3.35',
11034             'TAP::Formatter::Color' => '3.35',
11035             'TAP::Formatter::Console'=> '3.35',
11036             'TAP::Formatter::Console::ParallelSession'=> '3.35',
11037             'TAP::Formatter::Console::Session'=> '3.35',
11038             'TAP::Formatter::File'  => '3.35',
11039             'TAP::Formatter::File::Session'=> '3.35',
11040             'TAP::Formatter::Session'=> '3.35',
11041             'TAP::Harness'          => '3.35',
11042             'TAP::Harness::Env'     => '3.35',
11043             'TAP::Object'           => '3.35',
11044             'TAP::Parser'           => '3.35',
11045             'TAP::Parser::Aggregator'=> '3.35',
11046             'TAP::Parser::Grammar'  => '3.35',
11047             'TAP::Parser::Iterator' => '3.35',
11048             'TAP::Parser::Iterator::Array'=> '3.35',
11049             'TAP::Parser::Iterator::Process'=> '3.35',
11050             'TAP::Parser::Iterator::Stream'=> '3.35',
11051             'TAP::Parser::IteratorFactory'=> '3.35',
11052             'TAP::Parser::Multiplexer'=> '3.35',
11053             'TAP::Parser::Result'   => '3.35',
11054             'TAP::Parser::Result::Bailout'=> '3.35',
11055             'TAP::Parser::Result::Comment'=> '3.35',
11056             'TAP::Parser::Result::Plan'=> '3.35',
11057             'TAP::Parser::Result::Pragma'=> '3.35',
11058             'TAP::Parser::Result::Test'=> '3.35',
11059             'TAP::Parser::Result::Unknown'=> '3.35',
11060             'TAP::Parser::Result::Version'=> '3.35',
11061             'TAP::Parser::Result::YAML'=> '3.35',
11062             'TAP::Parser::ResultFactory'=> '3.35',
11063             'TAP::Parser::Scheduler'=> '3.35',
11064             'TAP::Parser::Scheduler::Job'=> '3.35',
11065             'TAP::Parser::Scheduler::Spinner'=> '3.35',
11066             'TAP::Parser::Source'   => '3.35',
11067             'TAP::Parser::SourceHandler'=> '3.35',
11068             'TAP::Parser::SourceHandler::Executable'=> '3.35',
11069             'TAP::Parser::SourceHandler::File'=> '3.35',
11070             'TAP::Parser::SourceHandler::Handle'=> '3.35',
11071             'TAP::Parser::SourceHandler::Perl'=> '3.35',
11072             'TAP::Parser::SourceHandler::RawTAP'=> '3.35',
11073             'TAP::Parser::YAMLish::Reader'=> '3.35',
11074             'TAP::Parser::YAMLish::Writer'=> '3.35',
11075             'Test::Builder'         => '1.301001_097',
11076             'Test::Builder::Module' => '1.301001_097',
11077             'Test::Builder::Tester' => '1.301001_097',
11078             'Test::Builder::Tester::Color'=> '1.301001_097',
11079             'Test::Harness'         => '3.35',
11080             'Test::More'            => '1.301001_097',
11081             'Test::Simple'          => '1.301001_097',
11082             'Test::Stream'          => '1.301001_097',
11083             'Test::Stream::Block'   => undef,
11084             'Test::Tester'          => '1.301001_097',
11085             'Test::Tester::CaptureRunner'=> undef,
11086             'Test::Tester::Delegate'=> undef,
11087             'Test::use::ok'         => '1.301001_097',
11088             'Unicode::Collate'      => '1.10',
11089             'Unicode::Collate::CJK::Big5'=> '1.10',
11090             'Unicode::Collate::CJK::GB2312'=> '1.10',
11091             'Unicode::Collate::CJK::JISX0208'=> '1.10',
11092             'Unicode::Collate::CJK::Korean'=> '1.10',
11093             'Unicode::Collate::CJK::Pinyin'=> '1.10',
11094             'Unicode::Collate::CJK::Stroke'=> '1.10',
11095             'Unicode::Collate::CJK::Zhuyin'=> '1.10',
11096             'Unicode::Collate::Locale'=> '1.10',
11097             'VMS::DCLsym'           => '1.06',
11098             'XS::APItest'           => '0.70',
11099             'arybase'               => '0.10',
11100             'attributes'            => '0.25',
11101             'autodie'               => '2.26',
11102             'autodie::Scope::Guard' => '2.26',
11103             'autodie::Scope::GuardStack'=> '2.26',
11104             'autodie::ScopeUtil'    => '2.26',
11105             'autodie::exception'    => '2.26',
11106             'autodie::exception::system'=> '2.26',
11107             'autodie::hints'        => '2.26',
11108             'autodie::skip'         => '2.26',
11109             'ok'                    => '1.301001_097',
11110             're'                    => '0.30',
11111             'warnings'              => '1.30',
11112         },
11113         removed => {
11114         }
11115     },
11116     5.020002 => {
11117         delta_from => 5.020001,
11118         changed => {
11119             'CPAN::Author'          => '5.5002',
11120             'CPAN::CacheMgr'        => '5.5002',
11121             'CPAN::FTP'             => '5.5006',
11122             'CPAN::HTTP::Client'    => '1.9601',
11123             'CPAN::HandleConfig'    => '5.5005',
11124             'CPAN::Index'           => '1.9601',
11125             'CPAN::LWP::UserAgent'  => '1.9601',
11126             'CPAN::Mirrors'         => '1.9601',
11127             'Config'                => '5.020002',
11128             'Cwd'                   => '3.48_01',
11129             'Data::Dumper'          => '2.151_01',
11130             'Errno'                 => '1.20_05',
11131             'File::Spec'            => '3.48_01',
11132             'File::Spec::Cygwin'    => '3.48_01',
11133             'File::Spec::Epoc'      => '3.48_01',
11134             'File::Spec::Functions' => '3.48_01',
11135             'File::Spec::Mac'       => '3.48_01',
11136             'File::Spec::OS2'       => '3.48_01',
11137             'File::Spec::Unix'      => '3.48_01',
11138             'File::Spec::VMS'       => '3.48_01',
11139             'File::Spec::Win32'     => '3.48_01',
11140             'IO::Socket'            => '1.38',
11141             'Module::CoreList'      => '5.20150214',
11142             'Module::CoreList::TieHashDelta'=> '5.20150214',
11143             'Module::CoreList::Utils'=> '5.20150214',
11144             'PerlIO::scalar'        => '0.18_01',
11145             'Pod::PlainText'        => '2.07',
11146             'Storable'              => '2.49_01',
11147             'VMS::DCLsym'           => '1.05_01',
11148             'VMS::Stdio'            => '2.41',
11149             'attributes'            => '0.23',
11150             'feature'               => '1.36_01',
11151         },
11152         removed => {
11153         }
11154     },
11155     5.021009 => {
11156         delta_from => 5.021008,
11157         changed => {
11158             'B'                     => '1.56',
11159             'B::Debug'              => '1.23',
11160             'B::Deparse'            => '1.33',
11161             'B::Op_private'         => '5.021009',
11162             'Benchmark'             => '1.20',
11163             'CPAN::Author'          => '5.5002',
11164             'CPAN::CacheMgr'        => '5.5002',
11165             'CPAN::FTP'             => '5.5006',
11166             'CPAN::HTTP::Client'    => '1.9601',
11167             'CPAN::HandleConfig'    => '5.5005',
11168             'CPAN::Index'           => '1.9601',
11169             'CPAN::LWP::UserAgent'  => '1.9601',
11170             'CPAN::Meta::Requirements'=> '2.132',
11171             'CPAN::Mirrors'         => '1.9601',
11172             'Carp'                  => '1.35',
11173             'Carp::Heavy'           => '1.35',
11174             'Config'                => '5.021009',
11175             'Config::Perl::V'       => '0.23',
11176             'Data::Dumper'          => '2.157',
11177             'Devel::Peek'           => '1.22',
11178             'DynaLoader'            => '1.31',
11179             'Encode'                => '2.70',
11180             'Encode::MIME::Header'  => '2.16',
11181             'Errno'                 => '1.23',
11182             'ExtUtils::Miniperl'    => '1.04',
11183             'HTTP::Tiny'            => '0.054',
11184             'Module::CoreList'      => '5.20150220',
11185             'Module::CoreList::TieHashDelta'=> '5.20150220',
11186             'Module::CoreList::Utils'=> '5.20150220',
11187             'Opcode'                => '1.32',
11188             'POSIX'                 => '1.51',
11189             'Perl::OSType'          => '1.008',
11190             'PerlIO::scalar'        => '0.22',
11191             'Pod::Find'             => '1.63',
11192             'Pod::InputObjects'     => '1.63',
11193             'Pod::ParseUtils'       => '1.63',
11194             'Pod::Parser'           => '1.63',
11195             'Pod::Perldoc'          => '3.25',
11196             'Pod::Perldoc::BaseTo'  => '3.25',
11197             'Pod::Perldoc::GetOptsOO'=> '3.25',
11198             'Pod::Perldoc::ToANSI'  => '3.25',
11199             'Pod::Perldoc::ToChecker'=> '3.25',
11200             'Pod::Perldoc::ToMan'   => '3.25',
11201             'Pod::Perldoc::ToNroff' => '3.25',
11202             'Pod::Perldoc::ToPod'   => '3.25',
11203             'Pod::Perldoc::ToRtf'   => '3.25',
11204             'Pod::Perldoc::ToTerm'  => '3.25',
11205             'Pod::Perldoc::ToText'  => '3.25',
11206             'Pod::Perldoc::ToTk'    => '3.25',
11207             'Pod::Perldoc::ToXml'   => '3.25',
11208             'Pod::PlainText'        => '2.07',
11209             'Pod::Select'           => '1.63',
11210             'Socket'                => '2.018',
11211             'Storable'              => '2.53',
11212             'Test::Builder'         => '1.301001_098',
11213             'Test::Builder::Module' => '1.301001_098',
11214             'Test::Builder::Tester' => '1.301001_098',
11215             'Test::Builder::Tester::Color'=> '1.301001_098',
11216             'Test::More'            => '1.301001_098',
11217             'Test::Simple'          => '1.301001_098',
11218             'Test::Stream'          => '1.301001_098',
11219             'Test::Tester'          => '1.301001_098',
11220             'Test::use::ok'         => '1.301001_098',
11221             'Unicode::Collate'      => '1.11',
11222             'Unicode::Collate::CJK::Big5'=> '1.11',
11223             'Unicode::Collate::CJK::GB2312'=> '1.11',
11224             'Unicode::Collate::CJK::JISX0208'=> '1.11',
11225             'Unicode::Collate::CJK::Korean'=> '1.11',
11226             'Unicode::Collate::CJK::Pinyin'=> '1.11',
11227             'Unicode::Collate::CJK::Stroke'=> '1.11',
11228             'Unicode::Collate::CJK::Zhuyin'=> '1.11',
11229             'Unicode::Collate::Locale'=> '1.11',
11230             'Unicode::UCD'          => '0.61',
11231             'VMS::Stdio'            => '2.41',
11232             'Win32'                 => '0.51',
11233             'Win32API::File'        => '0.1202',
11234             'attributes'            => '0.26',
11235             'bigint'                => '0.39',
11236             'bignum'                => '0.39',
11237             'bigrat'                => '0.39',
11238             'constant'              => '1.33',
11239             'encoding'              => '2.13',
11240             'feature'               => '1.40',
11241             'ok'                    => '1.301001_098',
11242             'overload'              => '1.25',
11243             'perlfaq'               => '5.021009',
11244             're'                    => '0.31',
11245             'threads::shared'       => '1.48',
11246             'warnings'              => '1.31',
11247         },
11248         removed => {
11249         }
11250     },
11251     5.021010 => {
11252         delta_from => 5.021009,
11253         changed => {
11254             'App::Cpan'             => '1.63',
11255             'B'                     => '1.57',
11256             'B::Deparse'            => '1.34',
11257             'B::Op_private'         => '5.021010',
11258             'Benchmark'             => '1.2',
11259             'CPAN'                  => '2.10',
11260             'CPAN::Distribution'    => '2.04',
11261             'CPAN::FirstTime'       => '5.5307',
11262             'CPAN::HTTP::Credentials'=> '1.9601',
11263             'CPAN::HandleConfig'    => '5.5006',
11264             'CPAN::Meta'            => '2.150001',
11265             'CPAN::Meta::Converter' => '2.150001',
11266             'CPAN::Meta::Feature'   => '2.150001',
11267             'CPAN::Meta::History'   => '2.150001',
11268             'CPAN::Meta::Merge'     => '2.150001',
11269             'CPAN::Meta::Prereqs'   => '2.150001',
11270             'CPAN::Meta::Spec'      => '2.150001',
11271             'CPAN::Meta::Validator' => '2.150001',
11272             'CPAN::Module'          => '5.5002',
11273             'CPAN::Plugin'          => '0.95',
11274             'CPAN::Plugin::Specfile'=> '0.01',
11275             'CPAN::Shell'           => '5.5005',
11276             'Carp'                  => '1.36',
11277             'Carp::Heavy'           => '1.36',
11278             'Config'                => '5.02101',
11279             'Cwd'                   => '3.55',
11280             'DB'                    => '1.08',
11281             'Data::Dumper'          => '2.158',
11282             'Devel::PPPort'         => '3.31',
11283             'DynaLoader'            => '1.32',
11284             'Encode'                => '2.72',
11285             'Encode::Alias'         => '2.19',
11286             'File::Spec'            => '3.55',
11287             'File::Spec::Cygwin'    => '3.55',
11288             'File::Spec::Epoc'      => '3.55',
11289             'File::Spec::Functions' => '3.55',
11290             'File::Spec::Mac'       => '3.55',
11291             'File::Spec::OS2'       => '3.55',
11292             'File::Spec::Unix'      => '3.55',
11293             'File::Spec::VMS'       => '3.55',
11294             'File::Spec::Win32'     => '3.55',
11295             'Getopt::Long'          => '2.45',
11296             'Locale::Codes'         => '3.34',
11297             'Locale::Codes::Constants'=> '3.34',
11298             'Locale::Codes::Country'=> '3.34',
11299             'Locale::Codes::Country_Codes'=> '3.34',
11300             'Locale::Codes::Country_Retired'=> '3.34',
11301             'Locale::Codes::Currency'=> '3.34',
11302             'Locale::Codes::Currency_Codes'=> '3.34',
11303             'Locale::Codes::Currency_Retired'=> '3.34',
11304             'Locale::Codes::LangExt'=> '3.34',
11305             'Locale::Codes::LangExt_Codes'=> '3.34',
11306             'Locale::Codes::LangExt_Retired'=> '3.34',
11307             'Locale::Codes::LangFam'=> '3.34',
11308             'Locale::Codes::LangFam_Codes'=> '3.34',
11309             'Locale::Codes::LangFam_Retired'=> '3.34',
11310             'Locale::Codes::LangVar'=> '3.34',
11311             'Locale::Codes::LangVar_Codes'=> '3.34',
11312             'Locale::Codes::LangVar_Retired'=> '3.34',
11313             'Locale::Codes::Language'=> '3.34',
11314             'Locale::Codes::Language_Codes'=> '3.34',
11315             'Locale::Codes::Language_Retired'=> '3.34',
11316             'Locale::Codes::Script' => '3.34',
11317             'Locale::Codes::Script_Codes'=> '3.34',
11318             'Locale::Codes::Script_Retired'=> '3.34',
11319             'Locale::Country'       => '3.34',
11320             'Locale::Currency'      => '3.34',
11321             'Locale::Language'      => '3.34',
11322             'Locale::Script'        => '3.34',
11323             'Module::CoreList'      => '5.20150320',
11324             'Module::CoreList::TieHashDelta'=> '5.20150320',
11325             'Module::CoreList::Utils'=> '5.20150320',
11326             'POSIX'                 => '1.52',
11327             'Pod::Functions'        => '1.09',
11328             'Pod::Functions::Functions'=> '1.09',
11329             'Term::Complete'        => '1.403',
11330             'Test::Builder'         => '1.001014',
11331             'Test::Builder::IO::Scalar'=> '2.113',
11332             'Test::Builder::Module' => '1.001014',
11333             'Test::Builder::Tester' => '1.28',
11334             'Test::Builder::Tester::Color'=> '1.290001',
11335             'Test::More'            => '1.001014',
11336             'Test::Simple'          => '1.001014',
11337             'Test::Tester'          => '0.114',
11338             'Test::use::ok'         => '0.16',
11339             'Text::Balanced'        => '2.03',
11340             'Text::ParseWords'      => '3.30',
11341             'Unicode::Collate'      => '1.12',
11342             'Unicode::Collate::CJK::Big5'=> '1.12',
11343             'Unicode::Collate::CJK::GB2312'=> '1.12',
11344             'Unicode::Collate::CJK::JISX0208'=> '1.12',
11345             'Unicode::Collate::CJK::Korean'=> '1.12',
11346             'Unicode::Collate::CJK::Pinyin'=> '1.12',
11347             'Unicode::Collate::CJK::Stroke'=> '1.12',
11348             'Unicode::Collate::CJK::Zhuyin'=> '1.12',
11349             'Unicode::Collate::Locale'=> '1.12',
11350             'XS::APItest'           => '0.71',
11351             'encoding'              => '2.14',
11352             'locale'                => '1.06',
11353             'meta_notation'         => undef,
11354             'ok'                    => '0.16',
11355             'parent'                => '0.232',
11356             're'                    => '0.32',
11357             'sigtrap'               => '1.08',
11358             'threads'               => '2.01',
11359             'utf8'                  => '1.15',
11360         },
11361         removed => {
11362             'Test::CanFork'         => 1,
11363             'Test::CanThread'       => 1,
11364             'Test::More::DeepCheck' => 1,
11365             'Test::More::DeepCheck::Strict'=> 1,
11366             'Test::More::DeepCheck::Tolerant'=> 1,
11367             'Test::More::Tools'     => 1,
11368             'Test::MostlyLike'      => 1,
11369             'Test::Stream'          => 1,
11370             'Test::Stream::API'     => 1,
11371             'Test::Stream::ArrayBase'=> 1,
11372             'Test::Stream::ArrayBase::Meta'=> 1,
11373             'Test::Stream::Block'   => 1,
11374             'Test::Stream::Carp'    => 1,
11375             'Test::Stream::Context' => 1,
11376             'Test::Stream::Event'   => 1,
11377             'Test::Stream::Event::Bail'=> 1,
11378             'Test::Stream::Event::Child'=> 1,
11379             'Test::Stream::Event::Diag'=> 1,
11380             'Test::Stream::Event::Finish'=> 1,
11381             'Test::Stream::Event::Note'=> 1,
11382             'Test::Stream::Event::Ok'=> 1,
11383             'Test::Stream::Event::Plan'=> 1,
11384             'Test::Stream::Event::Subtest'=> 1,
11385             'Test::Stream::ExitMagic'=> 1,
11386             'Test::Stream::ExitMagic::Context'=> 1,
11387             'Test::Stream::Exporter'=> 1,
11388             'Test::Stream::Exporter::Meta'=> 1,
11389             'Test::Stream::ForceExit'=> 1,
11390             'Test::Stream::IOSets'  => 1,
11391             'Test::Stream::Meta'    => 1,
11392             'Test::Stream::PackageUtil'=> 1,
11393             'Test::Stream::Subtest' => 1,
11394             'Test::Stream::Tester'  => 1,
11395             'Test::Stream::Tester::Checks'=> 1,
11396             'Test::Stream::Tester::Checks::Event'=> 1,
11397             'Test::Stream::Tester::Events'=> 1,
11398             'Test::Stream::Tester::Events::Event'=> 1,
11399             'Test::Stream::Tester::Grab'=> 1,
11400             'Test::Stream::Threads' => 1,
11401             'Test::Stream::Toolset' => 1,
11402             'Test::Stream::Util'    => 1,
11403         }
11404     },
11405     5.021011 => {
11406         delta_from => 5.021010,
11407         changed => {
11408             'B'                     => '1.58',
11409             'B::Deparse'            => '1.35',
11410             'B::Op_private'         => '5.021011',
11411             'CPAN'                  => '2.11',
11412             'Config'                => '5.021011',
11413             'Config::Perl::V'       => '0.24',
11414             'Cwd'                   => '3.56',
11415             'ExtUtils::Miniperl'    => '1.05',
11416             'ExtUtils::ParseXS'     => '3.28',
11417             'ExtUtils::ParseXS::Constants'=> '3.28',
11418             'ExtUtils::ParseXS::CountLines'=> '3.28',
11419             'ExtUtils::ParseXS::Eval'=> '3.28',
11420             'ExtUtils::ParseXS::Utilities'=> '3.28',
11421             'ExtUtils::Typemaps'    => '3.28',
11422             'ExtUtils::Typemaps::Cmd'=> '3.28',
11423             'ExtUtils::Typemaps::InputMap'=> '3.28',
11424             'ExtUtils::Typemaps::OutputMap'=> '3.28',
11425             'ExtUtils::Typemaps::Type'=> '3.28',
11426             'File::Spec'            => '3.56',
11427             'File::Spec::Cygwin'    => '3.56',
11428             'File::Spec::Epoc'      => '3.56',
11429             'File::Spec::Functions' => '3.56',
11430             'File::Spec::Mac'       => '3.56',
11431             'File::Spec::OS2'       => '3.56',
11432             'File::Spec::Unix'      => '3.56',
11433             'File::Spec::VMS'       => '3.56',
11434             'File::Spec::Win32'     => '3.56',
11435             'IO::Socket::IP'        => '0.37',
11436             'Module::CoreList'      => '5.20150420',
11437             'Module::CoreList::TieHashDelta'=> '5.20150420',
11438             'Module::CoreList::Utils'=> '5.20150420',
11439             'PerlIO::mmap'          => '0.014',
11440             'XS::APItest'           => '0.72',
11441             'attributes'            => '0.27',
11442             'if'                    => '0.0604',
11443             'utf8'                  => '1.16',
11444             'warnings'              => '1.32',
11445         },
11446         removed => {
11447         }
11448     },
11449     5.022000 => {
11450         delta_from => 5.021011,
11451         changed => {
11452             'B::Op_private'         => '5.022000',
11453             'Config'                => '5.022',
11454             'ExtUtils::Command::MM' => '7.04_01',
11455             'ExtUtils::Liblist'     => '7.04_01',
11456             'ExtUtils::Liblist::Kid'=> '7.04_01',
11457             'ExtUtils::MM'          => '7.04_01',
11458             'ExtUtils::MM_AIX'      => '7.04_01',
11459             'ExtUtils::MM_Any'      => '7.04_01',
11460             'ExtUtils::MM_BeOS'     => '7.04_01',
11461             'ExtUtils::MM_Cygwin'   => '7.04_01',
11462             'ExtUtils::MM_DOS'      => '7.04_01',
11463             'ExtUtils::MM_Darwin'   => '7.04_01',
11464             'ExtUtils::MM_MacOS'    => '7.04_01',
11465             'ExtUtils::MM_NW5'      => '7.04_01',
11466             'ExtUtils::MM_OS2'      => '7.04_01',
11467             'ExtUtils::MM_QNX'      => '7.04_01',
11468             'ExtUtils::MM_UWIN'     => '7.04_01',
11469             'ExtUtils::MM_Unix'     => '7.04_01',
11470             'ExtUtils::MM_VMS'      => '7.04_01',
11471             'ExtUtils::MM_VOS'      => '7.04_01',
11472             'ExtUtils::MM_Win32'    => '7.04_01',
11473             'ExtUtils::MM_Win95'    => '7.04_01',
11474             'ExtUtils::MY'          => '7.04_01',
11475             'ExtUtils::MakeMaker'   => '7.04_01',
11476             'ExtUtils::MakeMaker::Config'=> '7.04_01',
11477             'ExtUtils::MakeMaker::Locale'=> '7.04_01',
11478             'ExtUtils::MakeMaker::version'=> '7.04_01',
11479             'ExtUtils::MakeMaker::version::regex'=> '7.04_01',
11480             'ExtUtils::MakeMaker::version::vpp'=> '7.04_01',
11481             'ExtUtils::Mkbootstrap' => '7.04_01',
11482             'ExtUtils::Mksymlists'  => '7.04_01',
11483             'ExtUtils::testlib'     => '7.04_01',
11484             'Module::CoreList'      => '5.20150520',
11485             'Module::CoreList::TieHashDelta'=> '5.20150520',
11486             'Module::CoreList::Utils'=> '5.20150520',
11487             'POSIX'                 => '1.53',
11488             'PerlIO::via::QuotedPrint'=> '0.08',
11489             'overload'              => '1.26',
11490             'utf8'                  => '1.17',
11491         },
11492         removed => {
11493         }
11494     },
11495     5.023000 => {
11496         delta_from => 5.022000,
11497         changed => {
11498             'B::Op_private'         => '5.023000',
11499             'CPAN::Meta'            => '2.150005',
11500             'CPAN::Meta::Converter' => '2.150005',
11501             'CPAN::Meta::Feature'   => '2.150005',
11502             'CPAN::Meta::History'   => '2.150005',
11503             'CPAN::Meta::Merge'     => '2.150005',
11504             'CPAN::Meta::Prereqs'   => '2.150005',
11505             'CPAN::Meta::Requirements'=> '2.133',
11506             'CPAN::Meta::Spec'      => '2.150005',
11507             'CPAN::Meta::Validator' => '2.150005',
11508             'CPAN::Meta::YAML'      => '0.016',
11509             'Config'                => '5.023',
11510             'Encode'                => '2.73',
11511             'ExtUtils::CBuilder'    => '0.280223',
11512             'ExtUtils::CBuilder::Base'=> '0.280223',
11513             'ExtUtils::CBuilder::Platform::Unix'=> '0.280223',
11514             'ExtUtils::CBuilder::Platform::VMS'=> '0.280223',
11515             'ExtUtils::CBuilder::Platform::Windows'=> '0.280223',
11516             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280223',
11517             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280223',
11518             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280223',
11519             'ExtUtils::CBuilder::Platform::aix'=> '0.280223',
11520             'ExtUtils::CBuilder::Platform::android'=> '0.280223',
11521             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280223',
11522             'ExtUtils::CBuilder::Platform::darwin'=> '0.280223',
11523             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280223',
11524             'ExtUtils::CBuilder::Platform::os2'=> '0.280223',
11525             'Fatal'                 => '2.27',
11526             'Getopt::Long'          => '2.46',
11527             'HTTP::Tiny'            => '0.056',
11528             'List::Util'            => '1.42_01',
11529             'List::Util::XS'        => '1.42_01',
11530             'Locale::Codes'         => '3.35',
11531             'Locale::Codes::Constants'=> '3.35',
11532             'Locale::Codes::Country'=> '3.35',
11533             'Locale::Codes::Country_Codes'=> '3.35',
11534             'Locale::Codes::Country_Retired'=> '3.35',
11535             'Locale::Codes::Currency'=> '3.35',
11536             'Locale::Codes::Currency_Codes'=> '3.35',
11537             'Locale::Codes::Currency_Retired'=> '3.35',
11538             'Locale::Codes::LangExt'=> '3.35',
11539             'Locale::Codes::LangExt_Codes'=> '3.35',
11540             'Locale::Codes::LangExt_Retired'=> '3.35',
11541             'Locale::Codes::LangFam'=> '3.35',
11542             'Locale::Codes::LangFam_Codes'=> '3.35',
11543             'Locale::Codes::LangFam_Retired'=> '3.35',
11544             'Locale::Codes::LangVar'=> '3.35',
11545             'Locale::Codes::LangVar_Codes'=> '3.35',
11546             'Locale::Codes::LangVar_Retired'=> '3.35',
11547             'Locale::Codes::Language'=> '3.35',
11548             'Locale::Codes::Language_Codes'=> '3.35',
11549             'Locale::Codes::Language_Retired'=> '3.35',
11550             'Locale::Codes::Script' => '3.35',
11551             'Locale::Codes::Script_Codes'=> '3.35',
11552             'Locale::Codes::Script_Retired'=> '3.35',
11553             'Locale::Country'       => '3.35',
11554             'Locale::Currency'      => '3.35',
11555             'Locale::Language'      => '3.35',
11556             'Locale::Script'        => '3.35',
11557             'Math::BigFloat'        => '1.999701',
11558             'Math::BigInt'          => '1.999701',
11559             'Math::BigInt::Calc'    => '1.999701',
11560             'Math::BigInt::CalcEmu' => '1.999701',
11561             'Math::BigRat'          => '0.260801',
11562             'Module::CoreList'      => '5.20150620',
11563             'Module::CoreList::TieHashDelta'=> '5.20150620',
11564             'Module::CoreList::Utils'=> '5.20150620',
11565             'Module::Metadata'      => '1.000027',
11566             'Net::Cmd'              => '3.06',
11567             'Net::Config'           => '3.06',
11568             'Net::Domain'           => '3.06',
11569             'Net::FTP'              => '3.06',
11570             'Net::FTP::A'           => '3.06',
11571             'Net::FTP::E'           => '3.06',
11572             'Net::FTP::I'           => '3.06',
11573             'Net::FTP::L'           => '3.06',
11574             'Net::FTP::dataconn'    => '3.06',
11575             'Net::NNTP'             => '3.06',
11576             'Net::Netrc'            => '3.06',
11577             'Net::POP3'             => '3.06',
11578             'Net::SMTP'             => '3.06',
11579             'Net::Time'             => '3.06',
11580             'POSIX'                 => '1.54',
11581             'Parse::CPAN::Meta'     => '1.4417',
11582             'Pod::Simple'           => '3.30',
11583             'Pod::Simple::BlackBox' => '3.30',
11584             'Pod::Simple::Checker'  => '3.30',
11585             'Pod::Simple::Debug'    => '3.30',
11586             'Pod::Simple::DumpAsText'=> '3.30',
11587             'Pod::Simple::DumpAsXML'=> '3.30',
11588             'Pod::Simple::HTML'     => '3.30',
11589             'Pod::Simple::HTMLBatch'=> '3.30',
11590             'Pod::Simple::LinkSection'=> '3.30',
11591             'Pod::Simple::Methody'  => '3.30',
11592             'Pod::Simple::Progress' => '3.30',
11593             'Pod::Simple::PullParser'=> '3.30',
11594             'Pod::Simple::PullParserEndToken'=> '3.30',
11595             'Pod::Simple::PullParserStartToken'=> '3.30',
11596             'Pod::Simple::PullParserTextToken'=> '3.30',
11597             'Pod::Simple::PullParserToken'=> '3.30',
11598             'Pod::Simple::RTF'      => '3.30',
11599             'Pod::Simple::Search'   => '3.30',
11600             'Pod::Simple::SimpleTree'=> '3.30',
11601             'Pod::Simple::Text'     => '3.30',
11602             'Pod::Simple::TextContent'=> '3.30',
11603             'Pod::Simple::TiedOutFH'=> '3.30',
11604             'Pod::Simple::Transcode'=> '3.30',
11605             'Pod::Simple::TranscodeDumb'=> '3.30',
11606             'Pod::Simple::TranscodeSmart'=> '3.30',
11607             'Pod::Simple::XHTML'    => '3.30',
11608             'Pod::Simple::XMLOutStream'=> '3.30',
11609             'Pod::Usage'            => '1.67',
11610             'Scalar::Util'          => '1.42_01',
11611             'Socket'                => '2.019',
11612             'Sub::Util'             => '1.42_01',
11613             'Time::Piece'           => '1.30',
11614             'Time::Seconds'         => '1.30',
11615             'UNIVERSAL'             => '1.13',
11616             'Unicode'               => '8.0.0',
11617             'XS::APItest'           => '0.73',
11618             'autodie'               => '2.27',
11619             'autodie::Scope::Guard' => '2.27',
11620             'autodie::Scope::GuardStack'=> '2.27',
11621             'autodie::Util'         => '2.27',
11622             'autodie::exception'    => '2.27',
11623             'autodie::exception::system'=> '2.27',
11624             'autodie::hints'        => '2.27',
11625             'autodie::skip'         => '2.27',
11626             'encoding'              => '2.15',
11627             'feature'               => '1.41',
11628             'parent'                => '0.234',
11629             'threads'               => '2.02',
11630         },
11631         removed => {
11632         }
11633     },
11634     5.023001 => {
11635         delta_from => 5.023000,
11636         changed => {
11637             'B::Op_private'         => '5.023001',
11638             'Config'                => '5.023001',
11639             'DynaLoader'            => '1.33',
11640             'Encode'                => '2.75',
11641             'Encode::MIME::Header'  => '2.17',
11642             'Encode::Unicode'       => '2.13',
11643             'Fatal'                 => '2.29',
11644             'File::Path'            => '2.11',
11645             'Getopt::Long'          => '2.47',
11646             'I18N::Langinfo'        => '0.13',
11647             'IPC::Open3'            => '1.19',
11648             'Module::CoreList'      => '5.20150720',
11649             'Module::CoreList::TieHashDelta'=> '5.20150720',
11650             'Module::CoreList::Utils'=> '5.20150720',
11651             'Net::Cmd'              => '3.07',
11652             'Net::Config'           => '3.07',
11653             'Net::Domain'           => '3.07',
11654             'Net::FTP'              => '3.07',
11655             'Net::FTP::A'           => '3.07',
11656             'Net::FTP::E'           => '3.07',
11657             'Net::FTP::I'           => '3.07',
11658             'Net::FTP::L'           => '3.07',
11659             'Net::FTP::dataconn'    => '3.07',
11660             'Net::NNTP'             => '3.07',
11661             'Net::Netrc'            => '3.07',
11662             'Net::POP3'             => '3.07',
11663             'Net::SMTP'             => '3.07',
11664             'Net::Time'             => '3.07',
11665             'Opcode'                => '1.33',
11666             'POSIX'                 => '1.55',
11667             'PerlIO::scalar'        => '0.23',
11668             'Socket'                => '2.020',
11669             'Storable'              => '2.54',
11670             'Unicode::Collate'      => '1.14',
11671             'Unicode::Collate::CJK::Big5'=> '1.14',
11672             'Unicode::Collate::CJK::GB2312'=> '1.14',
11673             'Unicode::Collate::CJK::JISX0208'=> '1.14',
11674             'Unicode::Collate::CJK::Korean'=> '1.14',
11675             'Unicode::Collate::CJK::Pinyin'=> '1.14',
11676             'Unicode::Collate::CJK::Stroke'=> '1.14',
11677             'Unicode::Collate::CJK::Zhuyin'=> '1.14',
11678             'Unicode::Collate::Locale'=> '1.14',
11679             'Unicode::Normalize'    => '1.19',
11680             'XS::APItest'           => '0.74',
11681             'XS::Typemap'           => '0.14',
11682             'autodie'               => '2.29',
11683             'autodie::Scope::Guard' => '2.29',
11684             'autodie::Scope::GuardStack'=> '2.29',
11685             'autodie::Util'         => '2.29',
11686             'autodie::exception'    => '2.29',
11687             'autodie::exception::system'=> '2.29',
11688             'autodie::hints'        => '2.29',
11689             'autodie::skip'         => '2.29',
11690             'encoding'              => '2.16',
11691             'feature'               => '1.42',
11692             'warnings'              => '1.33',
11693         },
11694         removed => {
11695             'autodie::ScopeUtil'    => 1,
11696         }
11697     },
11698     5.023002 => {
11699         delta_from => 5.023001,
11700         changed => {
11701             'Attribute::Handlers'   => '0.99',
11702             'B::Op_private'         => '5.023002',
11703             'CPAN::Meta::YAML'      => '0.017',
11704             'Config'                => '5.023002',
11705             'Cwd'                   => '3.57',
11706             'Encode'                => '2.76',
11707             'ExtUtils::ParseXS'     => '3.29',
11708             'ExtUtils::ParseXS::Constants'=> '3.29',
11709             'ExtUtils::ParseXS::CountLines'=> '3.29',
11710             'ExtUtils::ParseXS::Eval'=> '3.29',
11711             'ExtUtils::ParseXS::Utilities'=> '3.29',
11712             'ExtUtils::Typemaps'    => '3.29',
11713             'File::Find'            => '1.30',
11714             'File::Spec'            => '3.57',
11715             'File::Spec::Cygwin'    => '3.57',
11716             'File::Spec::Epoc'      => '3.57',
11717             'File::Spec::Functions' => '3.57',
11718             'File::Spec::Mac'       => '3.57',
11719             'File::Spec::OS2'       => '3.57',
11720             'File::Spec::Unix'      => '3.57',
11721             'File::Spec::VMS'       => '3.57',
11722             'File::Spec::Win32'     => '3.57',
11723             'Filter::Util::Call'    => '1.55',
11724             'Hash::Util'            => '0.19',
11725             'Module::CoreList'      => '5.20150820',
11726             'Module::CoreList::TieHashDelta'=> '5.20150820',
11727             'Module::CoreList::Utils'=> '5.20150820',
11728             'POSIX'                 => '1.56',
11729             'Term::Cap'             => '1.17',
11730             'Unicode::UCD'          => '0.62',
11731             'perlfaq'               => '5.021010',
11732         },
11733         removed => {
11734         }
11735     },
11736     5.020003 => {
11737         delta_from => 5.020002,
11738         changed => {
11739             'Config'                => '5.020003',
11740             'Errno'                 => '1.20_06',
11741             'Module::CoreList'      => '5.20150912',
11742             'Module::CoreList::TieHashDelta'=> '5.20150912',
11743             'Module::CoreList::Utils'=> '5.20150912',
11744         },
11745         removed => {
11746         }
11747     },
11748     5.023003 => {
11749         delta_from => 5.023002,
11750         changed => {
11751             'Amiga::ARexx'          => '0.02',
11752             'Amiga::Exec'           => '0.01',
11753             'B'                     => '1.59',
11754             'B::Op_private'         => '5.023003',
11755             'Carp'                  => '1.37',
11756             'Carp::Heavy'           => '1.37',
11757             'Compress::Raw::Zlib'   => '2.068_01',
11758             'Config'                => '5.023003',
11759             'Cwd'                   => '3.58',
11760             'DynaLoader'            => '1.34',
11761             'Encode'                => '2.77',
11762             'Encode::Unicode'       => '2.14',
11763             'English'               => '1.10',
11764             'Errno'                 => '1.24',
11765             'ExtUtils::Command'     => '7.10',
11766             'ExtUtils::Command::MM' => '7.10',
11767             'ExtUtils::Liblist'     => '7.10',
11768             'ExtUtils::Liblist::Kid'=> '7.10',
11769             'ExtUtils::MM'          => '7.10',
11770             'ExtUtils::MM_AIX'      => '7.10',
11771             'ExtUtils::MM_Any'      => '7.10',
11772             'ExtUtils::MM_BeOS'     => '7.10',
11773             'ExtUtils::MM_Cygwin'   => '7.10',
11774             'ExtUtils::MM_DOS'      => '7.10',
11775             'ExtUtils::MM_Darwin'   => '7.10',
11776             'ExtUtils::MM_MacOS'    => '7.10',
11777             'ExtUtils::MM_NW5'      => '7.10',
11778             'ExtUtils::MM_OS2'      => '7.10',
11779             'ExtUtils::MM_QNX'      => '7.10',
11780             'ExtUtils::MM_UWIN'     => '7.10',
11781             'ExtUtils::MM_Unix'     => '7.10',
11782             'ExtUtils::MM_VMS'      => '7.10',
11783             'ExtUtils::MM_VOS'      => '7.10',
11784             'ExtUtils::MM_Win32'    => '7.10',
11785             'ExtUtils::MM_Win95'    => '7.10',
11786             'ExtUtils::MY'          => '7.10',
11787             'ExtUtils::MakeMaker'   => '7.10',
11788             'ExtUtils::MakeMaker::Config'=> '7.10',
11789             'ExtUtils::MakeMaker::Locale'=> '7.10',
11790             'ExtUtils::MakeMaker::version'=> '7.10',
11791             'ExtUtils::MakeMaker::version::regex'=> '7.10',
11792             'ExtUtils::MakeMaker::version::vpp'=> '7.10',
11793             'ExtUtils::Mkbootstrap' => '7.10',
11794             'ExtUtils::Mksymlists'  => '7.10',
11795             'ExtUtils::ParseXS'     => '3.30',
11796             'ExtUtils::ParseXS::Constants'=> '3.30',
11797             'ExtUtils::ParseXS::CountLines'=> '3.30',
11798             'ExtUtils::ParseXS::Eval'=> '3.30',
11799             'ExtUtils::ParseXS::Utilities'=> '3.30',
11800             'ExtUtils::Typemaps'    => '3.30',
11801             'ExtUtils::Typemaps::Cmd'=> '3.30',
11802             'ExtUtils::Typemaps::InputMap'=> '3.30',
11803             'ExtUtils::Typemaps::OutputMap'=> '3.30',
11804             'ExtUtils::Typemaps::Type'=> '3.30',
11805             'ExtUtils::testlib'     => '7.10',
11806             'File::Find'            => '1.31',
11807             'File::Glob'            => '1.25',
11808             'File::Spec'            => '3.58',
11809             'File::Spec::AmigaOS'   => '3.58',
11810             'File::Spec::Cygwin'    => '3.58',
11811             'File::Spec::Epoc'      => '3.58',
11812             'File::Spec::Functions' => '3.58',
11813             'File::Spec::Mac'       => '3.58',
11814             'File::Spec::OS2'       => '3.58',
11815             'File::Spec::Unix'      => '3.58',
11816             'File::Spec::VMS'       => '3.58',
11817             'File::Spec::Win32'     => '3.58',
11818             'Hash::Util::FieldHash' => '1.17',
11819             'Locale::Codes'         => '3.36',
11820             'Locale::Codes::Constants'=> '3.36',
11821             'Locale::Codes::Country'=> '3.36',
11822             'Locale::Codes::Country_Codes'=> '3.36',
11823             'Locale::Codes::Country_Retired'=> '3.36',
11824             'Locale::Codes::Currency'=> '3.36',
11825             'Locale::Codes::Currency_Codes'=> '3.36',
11826             'Locale::Codes::Currency_Retired'=> '3.36',
11827             'Locale::Codes::LangExt'=> '3.36',
11828             'Locale::Codes::LangExt_Codes'=> '3.36',
11829             'Locale::Codes::LangExt_Retired'=> '3.36',
11830             'Locale::Codes::LangFam'=> '3.36',
11831             'Locale::Codes::LangFam_Codes'=> '3.36',
11832             'Locale::Codes::LangFam_Retired'=> '3.36',
11833             'Locale::Codes::LangVar'=> '3.36',
11834             'Locale::Codes::LangVar_Codes'=> '3.36',
11835             'Locale::Codes::LangVar_Retired'=> '3.36',
11836             'Locale::Codes::Language'=> '3.36',
11837             'Locale::Codes::Language_Codes'=> '3.36',
11838             'Locale::Codes::Language_Retired'=> '3.36',
11839             'Locale::Codes::Script' => '3.36',
11840             'Locale::Codes::Script_Codes'=> '3.36',
11841             'Locale::Codes::Script_Retired'=> '3.36',
11842             'Locale::Country'       => '3.36',
11843             'Locale::Currency'      => '3.36',
11844             'Locale::Language'      => '3.36',
11845             'Locale::Script'        => '3.36',
11846             'Math::BigFloat::Trace' => '0.40',
11847             'Math::BigInt::Trace'   => '0.40',
11848             'Module::CoreList'      => '5.20150920',
11849             'Module::CoreList::TieHashDelta'=> '5.20150920',
11850             'Module::CoreList::Utils'=> '5.20150920',
11851             'OS2::DLL'              => '1.06',
11852             'OS2::ExtAttr'          => '0.04',
11853             'OS2::Process'          => '1.11',
11854             'OS2::REXX'             => '1.05',
11855             'POSIX'                 => '1.57',
11856             'Pod::Perldoc'          => '3.25_01',
11857             'Socket'                => '2.020_01',
11858             'Test'                  => '1.27',
11859             'Thread::Queue'         => '3.06',
11860             'Time::HiRes'           => '1.9727_02',
11861             'Unicode::UCD'          => '0.63',
11862             'Win32'                 => '0.52',
11863             'XS::APItest'           => '0.75',
11864             'bigint'                => '0.40',
11865             'bignum'                => '0.40',
11866             'bigrat'                => '0.40',
11867             'encoding'              => '2.17',
11868             'experimental'          => '0.014',
11869             'if'                    => '0.0605',
11870             'locale'                => '1.07',
11871             'mro'                   => '1.18',
11872             'threads'               => '2.03',
11873         },
11874         removed => {
11875         }
11876     },
11877     5.023004 => {
11878         delta_from => 5.023003,
11879         changed => {
11880             'B'                     => '1.60',
11881             'B::Op_private'         => '5.023004',
11882             'Compress::Raw::Bzip2'  => '2.069',
11883             'Compress::Raw::Zlib'   => '2.069',
11884             'Compress::Zlib'        => '2.069',
11885             'Config'                => '5.023004',
11886             'Devel::PPPort'         => '3.32',
11887             'DynaLoader'            => '1.35',
11888             'Encode'                => '2.78',
11889             'ExtUtils::CBuilder'    => '0.280224',
11890             'ExtUtils::CBuilder::Base'=> '0.280224',
11891             'ExtUtils::CBuilder::Platform::Unix'=> '0.280224',
11892             'ExtUtils::CBuilder::Platform::VMS'=> '0.280224',
11893             'ExtUtils::CBuilder::Platform::Windows'=> '0.280224',
11894             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280224',
11895             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280224',
11896             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280224',
11897             'ExtUtils::CBuilder::Platform::aix'=> '0.280224',
11898             'ExtUtils::CBuilder::Platform::android'=> '0.280224',
11899             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280224',
11900             'ExtUtils::CBuilder::Platform::darwin'=> '0.280224',
11901             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280224',
11902             'ExtUtils::CBuilder::Platform::os2'=> '0.280224',
11903             'File::Path'            => '2.12',
11904             'IO'                    => '1.36',
11905             'IO::Compress::Adapter::Bzip2'=> '2.069',
11906             'IO::Compress::Adapter::Deflate'=> '2.069',
11907             'IO::Compress::Adapter::Identity'=> '2.069',
11908             'IO::Compress::Base'    => '2.069',
11909             'IO::Compress::Base::Common'=> '2.069',
11910             'IO::Compress::Bzip2'   => '2.069',
11911             'IO::Compress::Deflate' => '2.069',
11912             'IO::Compress::Gzip'    => '2.069',
11913             'IO::Compress::Gzip::Constants'=> '2.069',
11914             'IO::Compress::RawDeflate'=> '2.069',
11915             'IO::Compress::Zip'     => '2.069',
11916             'IO::Compress::Zip::Constants'=> '2.069',
11917             'IO::Compress::Zlib::Constants'=> '2.069',
11918             'IO::Compress::Zlib::Extra'=> '2.069',
11919             'IO::Poll'              => '0.10',
11920             'IO::Uncompress::Adapter::Bunzip2'=> '2.069',
11921             'IO::Uncompress::Adapter::Identity'=> '2.069',
11922             'IO::Uncompress::Adapter::Inflate'=> '2.069',
11923             'IO::Uncompress::AnyInflate'=> '2.069',
11924             'IO::Uncompress::AnyUncompress'=> '2.069',
11925             'IO::Uncompress::Base'  => '2.069',
11926             'IO::Uncompress::Bunzip2'=> '2.069',
11927             'IO::Uncompress::Gunzip'=> '2.069',
11928             'IO::Uncompress::Inflate'=> '2.069',
11929             'IO::Uncompress::RawInflate'=> '2.069',
11930             'IO::Uncompress::Unzip' => '2.069',
11931             'Math::BigFloat'        => '1.999704',
11932             'Math::BigFloat::Trace' => '0.41',
11933             'Math::BigInt'          => '1.999704',
11934             'Math::BigInt::Calc'    => '1.999704',
11935             'Math::BigInt::CalcEmu' => '1.999704',
11936             'Math::BigInt::FastCalc'=> '0.34',
11937             'Math::BigInt::Trace'   => '0.41',
11938             'Module::CoreList'      => '5.20151020',
11939             'Module::CoreList::TieHashDelta'=> '5.20151020',
11940             'Module::CoreList::Utils'=> '5.20151020',
11941             'Module::Metadata'      => '1.000029',
11942             'POSIX'                 => '1.58',
11943             'Perl::OSType'          => '1.009',
11944             'PerlIO::encoding'      => '0.22',
11945             'Socket'                => '2.020_02',
11946             'Unicode::Normalize'    => '1.21',
11947             'XS::APItest'           => '0.76',
11948             'bigint'                => '0.41',
11949             'bignum'                => '0.41',
11950             'bigrat'                => '0.41',
11951             'experimental'          => '0.016',
11952             'if'                    => '0.0606',
11953             'warnings'              => '1.35',
11954         },
11955         removed => {
11956         }
11957     },
11958     5.023005 => {
11959         delta_from => 5.023004,
11960         changed => {
11961             'B'                     => '1.61',
11962             'B::Op_private'         => '5.023005',
11963             'Carp'                  => '1.38',
11964             'Carp::Heavy'           => '1.38',
11965             'Config'                => '5.023005',
11966             'Config::Perl::V'       => '0.25',
11967             'Cwd'                   => '3.59',
11968             'Devel::Peek'           => '1.23',
11969             'Dumpvalue'             => '1.18',
11970             'DynaLoader'            => '1.36',
11971             'File::Find'            => '1.32',
11972             'File::Spec'            => '3.59',
11973             'File::Spec::AmigaOS'   => '3.59',
11974             'File::Spec::Cygwin'    => '3.59',
11975             'File::Spec::Epoc'      => '3.59',
11976             'File::Spec::Functions' => '3.59',
11977             'File::Spec::Mac'       => '3.59',
11978             'File::Spec::OS2'       => '3.59',
11979             'File::Spec::Unix'      => '3.59',
11980             'File::Spec::VMS'       => '3.59',
11981             'File::Spec::Win32'     => '3.59',
11982             'Getopt::Long'          => '2.48',
11983             'Hash::Util::FieldHash' => '1.18',
11984             'IPC::Open3'            => '1.20',
11985             'Math::BigFloat'        => '1.999710',
11986             'Math::BigInt'          => '1.999710',
11987             'Math::BigInt::Calc'    => '1.999710',
11988             'Math::BigInt::CalcEmu' => '1.999710',
11989             'Math::BigInt::FastCalc'=> '0.37',
11990             'Module::CoreList'      => '5.20151120',
11991             'Module::CoreList::TieHashDelta'=> '5.20151120',
11992             'Module::CoreList::Utils'=> '5.20151120',
11993             'Module::Metadata'      => '1.000030',
11994             'POSIX'                 => '1.59',
11995             'PerlIO::encoding'      => '0.23',
11996             'PerlIO::mmap'          => '0.015',
11997             'PerlIO::scalar'        => '0.24',
11998             'PerlIO::via'           => '0.16',
11999             'Pod::Simple'           => '3.32',
12000             'Pod::Simple::BlackBox' => '3.32',
12001             'Pod::Simple::Checker'  => '3.32',
12002             'Pod::Simple::Debug'    => '3.32',
12003             'Pod::Simple::DumpAsText'=> '3.32',
12004             'Pod::Simple::DumpAsXML'=> '3.32',
12005             'Pod::Simple::HTML'     => '3.32',
12006             'Pod::Simple::HTMLBatch'=> '3.32',
12007             'Pod::Simple::LinkSection'=> '3.32',
12008             'Pod::Simple::Methody'  => '3.32',
12009             'Pod::Simple::Progress' => '3.32',
12010             'Pod::Simple::PullParser'=> '3.32',
12011             'Pod::Simple::PullParserEndToken'=> '3.32',
12012             'Pod::Simple::PullParserStartToken'=> '3.32',
12013             'Pod::Simple::PullParserTextToken'=> '3.32',
12014             'Pod::Simple::PullParserToken'=> '3.32',
12015             'Pod::Simple::RTF'      => '3.32',
12016             'Pod::Simple::Search'   => '3.32',
12017             'Pod::Simple::SimpleTree'=> '3.32',
12018             'Pod::Simple::Text'     => '3.32',
12019             'Pod::Simple::TextContent'=> '3.32',
12020             'Pod::Simple::TiedOutFH'=> '3.32',
12021             'Pod::Simple::Transcode'=> '3.32',
12022             'Pod::Simple::TranscodeDumb'=> '3.32',
12023             'Pod::Simple::TranscodeSmart'=> '3.32',
12024             'Pod::Simple::XHTML'    => '3.32',
12025             'Pod::Simple::XMLOutStream'=> '3.32',
12026             'Thread::Queue'         => '3.07',
12027             'Tie::Scalar'           => '1.04',
12028             'Time::HiRes'           => '1.9728',
12029             'Time::Piece'           => '1.31',
12030             'Time::Seconds'         => '1.31',
12031             'Unicode::Normalize'    => '1.23',
12032             'XSLoader'              => '0.21',
12033             'arybase'               => '0.11',
12034             'base'                  => '2.22_01',
12035             'fields'                => '2.22_01',
12036             'threads'               => '2.04',
12037             'threads::shared'       => '1.49',
12038         },
12039         removed => {
12040             'ExtUtils::MakeMaker::version::vpp'=> 1,
12041             'version::vpp'          => 1,
12042         }
12043     },
12044     5.022001 => {
12045         delta_from => 5.022,
12046         changed => {
12047             'B::Op_private'         => '5.022001',
12048             'Config'                => '5.022001',
12049             'Module::CoreList'      => '5.20151213',
12050             'Module::CoreList::TieHashDelta'=> '5.20151213',
12051             'Module::CoreList::Utils'=> '5.20151213',
12052             'POSIX'                 => '1.53_01',
12053             'PerlIO::scalar'        => '0.23',
12054             'Storable'              => '2.53_01',
12055             'Win32'                 => '0.52',
12056             'warnings'              => '1.34',
12057         },
12058         removed => {
12059         }
12060     },
12061     5.023006 => {
12062         delta_from => 5.023005,
12063         changed => {
12064             'B::Deparse'            => '1.36',
12065             'B::Op_private'         => '5.023006',
12066             'Benchmark'             => '1.21',
12067             'CPAN::Meta::Requirements'=> '2.140',
12068             'CPAN::Meta::YAML'      => '0.018',
12069             'Config'                => '5.023006',
12070             'Cwd'                   => '3.60',
12071             'Data::Dumper'          => '2.159',
12072             'DynaLoader'            => '1.37',
12073             'File::Spec'            => '3.60',
12074             'File::Spec::AmigaOS'   => '3.60',
12075             'File::Spec::Cygwin'    => '3.60',
12076             'File::Spec::Epoc'      => '3.60',
12077             'File::Spec::Functions' => '3.60',
12078             'File::Spec::Mac'       => '3.60',
12079             'File::Spec::OS2'       => '3.60',
12080             'File::Spec::Unix'      => '3.60',
12081             'File::Spec::VMS'       => '3.60',
12082             'File::Spec::Win32'     => '3.60',
12083             'Hash::Util::FieldHash' => '1.19',
12084             'Locale::Codes'         => '3.37',
12085             'Locale::Codes::Constants'=> '3.37',
12086             'Locale::Codes::Country'=> '3.37',
12087             'Locale::Codes::Country_Codes'=> '3.37',
12088             'Locale::Codes::Country_Retired'=> '3.37',
12089             'Locale::Codes::Currency'=> '3.37',
12090             'Locale::Codes::Currency_Codes'=> '3.37',
12091             'Locale::Codes::Currency_Retired'=> '3.37',
12092             'Locale::Codes::LangExt'=> '3.37',
12093             'Locale::Codes::LangExt_Codes'=> '3.37',
12094             'Locale::Codes::LangExt_Retired'=> '3.37',
12095             'Locale::Codes::LangFam'=> '3.37',
12096             'Locale::Codes::LangFam_Codes'=> '3.37',
12097             'Locale::Codes::LangFam_Retired'=> '3.37',
12098             'Locale::Codes::LangVar'=> '3.37',
12099             'Locale::Codes::LangVar_Codes'=> '3.37',
12100             'Locale::Codes::LangVar_Retired'=> '3.37',
12101             'Locale::Codes::Language'=> '3.37',
12102             'Locale::Codes::Language_Codes'=> '3.37',
12103             'Locale::Codes::Language_Retired'=> '3.37',
12104             'Locale::Codes::Script' => '3.37',
12105             'Locale::Codes::Script_Codes'=> '3.37',
12106             'Locale::Codes::Script_Retired'=> '3.37',
12107             'Locale::Country'       => '3.37',
12108             'Locale::Currency'      => '3.37',
12109             'Locale::Language'      => '3.37',
12110             'Locale::Script'        => '3.37',
12111             'Math::BigInt::FastCalc'=> '0.38',
12112             'Module::CoreList'      => '5.20151220',
12113             'Module::CoreList::TieHashDelta'=> '5.20151220',
12114             'Module::CoreList::Utils'=> '5.20151220',
12115             'Module::Metadata'      => '1.000031',
12116             'Opcode'                => '1.34',
12117             'PerlIO::mmap'          => '0.016',
12118             'Pod::Perldoc'          => '3.25_02',
12119             'SDBM_File'             => '1.14',
12120             'Term::ANSIColor'       => '4.04',
12121             'Test'                  => '1.28',
12122             'Unicode::Normalize'    => '1.24',
12123             'XS::APItest'           => '0.77',
12124             'base'                  => '2.23',
12125             'encoding::warnings'    => '0.12',
12126             'fields'                => '2.23',
12127             'locale'                => '1.08',
12128             'strict'                => '1.10',
12129             'threads'               => '2.05',
12130             'threads::shared'       => '1.50',
12131             'utf8'                  => '1.18',
12132         },
12133         removed => {
12134         }
12135     },
12136     5.023007 => {
12137         delta_from => 5.023006,
12138         changed => {
12139             'App::Prove'            => '3.36',
12140             'App::Prove::State'     => '3.36',
12141             'App::Prove::State::Result'=> '3.36',
12142             'App::Prove::State::Result::Test'=> '3.36',
12143             'B'                     => '1.62',
12144             'B::Deparse'            => '1.37',
12145             'B::Op_private'         => '5.023007',
12146             'Benchmark'             => '1.22',
12147             'Config'                => '5.023007',
12148             'Cwd'                   => '3.62',
12149             'Data::Dumper'          => '2.160',
12150             'ExtUtils::ParseXS'     => '3.31',
12151             'ExtUtils::ParseXS::Constants'=> '3.31',
12152             'ExtUtils::ParseXS::CountLines'=> '3.31',
12153             'ExtUtils::ParseXS::Eval'=> '3.31',
12154             'ExtUtils::ParseXS::Utilities'=> '3.31',
12155             'ExtUtils::Typemaps'    => '3.31',
12156             'ExtUtils::Typemaps::Cmd'=> '3.31',
12157             'ExtUtils::Typemaps::InputMap'=> '3.31',
12158             'ExtUtils::Typemaps::OutputMap'=> '3.31',
12159             'ExtUtils::Typemaps::Type'=> '3.31',
12160             'File::Find'            => '1.33',
12161             'File::Spec'            => '3.62',
12162             'File::Spec::AmigaOS'   => '3.62',
12163             'File::Spec::Cygwin'    => '3.62',
12164             'File::Spec::Epoc'      => '3.62',
12165             'File::Spec::Functions' => '3.62',
12166             'File::Spec::Mac'       => '3.62',
12167             'File::Spec::OS2'       => '3.62',
12168             'File::Spec::Unix'      => '3.62',
12169             'File::Spec::VMS'       => '3.62',
12170             'File::Spec::Win32'     => '3.62',
12171             'Math::BigFloat'        => '1.999715',
12172             'Math::BigFloat::Trace' => '0.42',
12173             'Math::BigInt'          => '1.999715',
12174             'Math::BigInt::Calc'    => '1.999715',
12175             'Math::BigInt::CalcEmu' => '1.999715',
12176             'Math::BigInt::FastCalc'=> '0.40',
12177             'Math::BigInt::Trace'   => '0.42',
12178             'Math::BigRat'          => '0.260802',
12179             'Module::CoreList'      => '5.20160120',
12180             'Module::CoreList::TieHashDelta'=> '5.20160120',
12181             'Module::CoreList::Utils'=> '5.20160120',
12182             'Net::Cmd'              => '3.08',
12183             'Net::Config'           => '3.08',
12184             'Net::Domain'           => '3.08',
12185             'Net::FTP'              => '3.08',
12186             'Net::FTP::A'           => '3.08',
12187             'Net::FTP::E'           => '3.08',
12188             'Net::FTP::I'           => '3.08',
12189             'Net::FTP::L'           => '3.08',
12190             'Net::FTP::dataconn'    => '3.08',
12191             'Net::NNTP'             => '3.08',
12192             'Net::Netrc'            => '3.08',
12193             'Net::POP3'             => '3.08',
12194             'Net::SMTP'             => '3.08',
12195             'Net::Time'             => '3.08',
12196             'Pod::Man'              => '4.04',
12197             'Pod::ParseLink'        => '4.04',
12198             'Pod::Text'             => '4.04',
12199             'Pod::Text::Color'      => '4.04',
12200             'Pod::Text::Overstrike' => '4.04',
12201             'Pod::Text::Termcap'    => '4.04',
12202             'Pod::Usage'            => '1.68',
12203             'TAP::Base'             => '3.36',
12204             'TAP::Formatter::Base'  => '3.36',
12205             'TAP::Formatter::Color' => '3.36',
12206             'TAP::Formatter::Console'=> '3.36',
12207             'TAP::Formatter::Console::ParallelSession'=> '3.36',
12208             'TAP::Formatter::Console::Session'=> '3.36',
12209             'TAP::Formatter::File'  => '3.36',
12210             'TAP::Formatter::File::Session'=> '3.36',
12211             'TAP::Formatter::Session'=> '3.36',
12212             'TAP::Harness'          => '3.36',
12213             'TAP::Harness::Env'     => '3.36',
12214             'TAP::Object'           => '3.36',
12215             'TAP::Parser'           => '3.36',
12216             'TAP::Parser::Aggregator'=> '3.36',
12217             'TAP::Parser::Grammar'  => '3.36',
12218             'TAP::Parser::Iterator' => '3.36',
12219             'TAP::Parser::Iterator::Array'=> '3.36',
12220             'TAP::Parser::Iterator::Process'=> '3.36',
12221             'TAP::Parser::Iterator::Stream'=> '3.36',
12222             'TAP::Parser::IteratorFactory'=> '3.36',
12223             'TAP::Parser::Multiplexer'=> '3.36',
12224             'TAP::Parser::Result'   => '3.36',
12225             'TAP::Parser::Result::Bailout'=> '3.36',
12226             'TAP::Parser::Result::Comment'=> '3.36',
12227             'TAP::Parser::Result::Plan'=> '3.36',
12228             'TAP::Parser::Result::Pragma'=> '3.36',
12229             'TAP::Parser::Result::Test'=> '3.36',
12230             'TAP::Parser::Result::Unknown'=> '3.36',
12231             'TAP::Parser::Result::Version'=> '3.36',
12232             'TAP::Parser::Result::YAML'=> '3.36',
12233             'TAP::Parser::ResultFactory'=> '3.36',
12234             'TAP::Parser::Scheduler'=> '3.36',
12235             'TAP::Parser::Scheduler::Job'=> '3.36',
12236             'TAP::Parser::Scheduler::Spinner'=> '3.36',
12237             'TAP::Parser::Source'   => '3.36',
12238             'TAP::Parser::SourceHandler'=> '3.36',
12239             'TAP::Parser::SourceHandler::Executable'=> '3.36',
12240             'TAP::Parser::SourceHandler::File'=> '3.36',
12241             'TAP::Parser::SourceHandler::Handle'=> '3.36',
12242             'TAP::Parser::SourceHandler::Perl'=> '3.36',
12243             'TAP::Parser::SourceHandler::RawTAP'=> '3.36',
12244             'TAP::Parser::YAMLish::Reader'=> '3.36',
12245             'TAP::Parser::YAMLish::Writer'=> '3.36',
12246             'Test::Harness'         => '3.36',
12247             'Unicode::Normalize'    => '1.25',
12248             'Unicode::UCD'          => '0.64',
12249             'XS::APItest'           => '0.78',
12250             'bigint'                => '0.42',
12251             'bignum'                => '0.42',
12252             'bigrat'                => '0.42',
12253             'utf8'                  => '1.19',
12254         },
12255         removed => {
12256         }
12257     },
12258     5.023008 => {
12259         delta_from => 5.023007,
12260         changed => {
12261             'B::Op_private'         => '5.023008',
12262             'Config'                => '5.023008',
12263             'Cwd'                   => '3.63',
12264             'DynaLoader'            => '1.38',
12265             'Encode'                => '2.80',
12266             'Encode::Alias'         => '2.20',
12267             'Encode::MIME::Header'  => '2.19',
12268             'Encode::Unicode'       => '2.15',
12269             'ExtUtils::CBuilder'    => '0.280225',
12270             'ExtUtils::CBuilder::Base'=> '0.280225',
12271             'ExtUtils::CBuilder::Platform::Unix'=> '0.280225',
12272             'ExtUtils::CBuilder::Platform::VMS'=> '0.280225',
12273             'ExtUtils::CBuilder::Platform::Windows'=> '0.280225',
12274             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280225',
12275             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280225',
12276             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280225',
12277             'ExtUtils::CBuilder::Platform::aix'=> '0.280225',
12278             'ExtUtils::CBuilder::Platform::android'=> '0.280225',
12279             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280225',
12280             'ExtUtils::CBuilder::Platform::darwin'=> '0.280225',
12281             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280225',
12282             'ExtUtils::CBuilder::Platform::os2'=> '0.280225',
12283             'ExtUtils::Command::MM' => '7.10_01',
12284             'ExtUtils::Liblist'     => '7.10_01',
12285             'ExtUtils::Liblist::Kid'=> '7.10_01',
12286             'ExtUtils::MM'          => '7.10_01',
12287             'ExtUtils::MM_AIX'      => '7.10_01',
12288             'ExtUtils::MM_Any'      => '7.10_01',
12289             'ExtUtils::MM_BeOS'     => '7.10_01',
12290             'ExtUtils::MM_Cygwin'   => '7.10_01',
12291             'ExtUtils::MM_DOS'      => '7.10_01',
12292             'ExtUtils::MM_Darwin'   => '7.10_01',
12293             'ExtUtils::MM_MacOS'    => '7.10_01',
12294             'ExtUtils::MM_NW5'      => '7.10_01',
12295             'ExtUtils::MM_OS2'      => '7.10_01',
12296             'ExtUtils::MM_QNX'      => '7.10_01',
12297             'ExtUtils::MM_UWIN'     => '7.10_01',
12298             'ExtUtils::MM_Unix'     => '7.10_01',
12299             'ExtUtils::MM_VMS'      => '7.10_01',
12300             'ExtUtils::MM_VOS'      => '7.10_01',
12301             'ExtUtils::MM_Win32'    => '7.10_01',
12302             'ExtUtils::MM_Win95'    => '7.10_01',
12303             'ExtUtils::MY'          => '7.10_01',
12304             'ExtUtils::MakeMaker'   => '7.10_01',
12305             'ExtUtils::MakeMaker::Config'=> '7.10_01',
12306             'ExtUtils::MakeMaker::version'=> '7.10_01',
12307             'ExtUtils::MakeMaker::version::regex'=> '7.10_01',
12308             'ExtUtils::Mkbootstrap' => '7.10_01',
12309             'ExtUtils::Mksymlists'  => '7.10_01',
12310             'ExtUtils::testlib'     => '7.10_01',
12311             'File::Spec'            => '3.63',
12312             'File::Spec::AmigaOS'   => '3.63',
12313             'File::Spec::Cygwin'    => '3.63',
12314             'File::Spec::Epoc'      => '3.63',
12315             'File::Spec::Functions' => '3.63',
12316             'File::Spec::Mac'       => '3.63',
12317             'File::Spec::OS2'       => '3.63',
12318             'File::Spec::Unix'      => '3.63',
12319             'File::Spec::VMS'       => '3.63',
12320             'File::Spec::Win32'     => '3.63',
12321             'IPC::Msg'              => '2.05',
12322             'IPC::Semaphore'        => '2.05',
12323             'IPC::SharedMem'        => '2.05',
12324             'IPC::SysV'             => '2.05',
12325             'Module::CoreList'      => '5.20160121',
12326             'Module::CoreList::TieHashDelta'=> '5.20160121',
12327             'Module::CoreList::Utils'=> '5.20160121',
12328             'ODBM_File'             => '1.13',
12329             'POSIX'                 => '1.63',
12330             'PerlIO::encoding'      => '0.24',
12331             'Pod::Man'              => '4.06',
12332             'Pod::ParseLink'        => '4.06',
12333             'Pod::Text'             => '4.06',
12334             'Pod::Text::Color'      => '4.06',
12335             'Pod::Text::Overstrike' => '4.06',
12336             'Pod::Text::Termcap'    => '4.06',
12337             'Storable'              => '2.55',
12338             'Time::HiRes'           => '1.9730',
12339             'XS::APItest'           => '0.79',
12340         },
12341         removed => {
12342         }
12343     },
12344     5.023009 => {
12345         delta_from => 5.023008,
12346         changed => {
12347             'Amiga::ARexx'          => '0.04',
12348             'Amiga::Exec'           => '0.02',
12349             'B::Op_private'         => '5.023009',
12350             'Carp'                  => '1.40',
12351             'Carp::Heavy'           => '1.40',
12352             'Config'                => '5.023009',
12353             'Errno'                 => '1.25',
12354             'ExtUtils::Embed'       => '1.33',
12355             'File::Find'            => '1.34',
12356             'File::Glob'            => '1.26',
12357             'File::Spec::AmigaOS'   => ';.64',
12358             'IPC::Msg'              => '2.06_01',
12359             'IPC::Semaphore'        => '2.06_01',
12360             'IPC::SharedMem'        => '2.06_01',
12361             'IPC::SysV'             => '2.06_01',
12362             'List::Util'            => '1.42_02',
12363             'List::Util::XS'        => '1.42_02',
12364             'Module::CoreList'      => '5.20160320',
12365             'Module::CoreList::TieHashDelta'=> '5.20160320',
12366             'Module::CoreList::Utils'=> '5.20160320',
12367             'POSIX'                 => '1.64',
12368             'Pod::Functions'        => '1.10',
12369             'Pod::Functions::Functions'=> '1.10',
12370             'Scalar::Util'          => '1.42_02',
12371             'SelfLoader'            => '1.23',
12372             'Socket'                => '2.020_03',
12373             'Storable'              => '2.56',
12374             'Sub::Util'             => '1.42_02',
12375             'Thread::Queue'         => '3.08',
12376             'Tie::File'             => '1.02',
12377             'Time::HiRes'           => '1.9732',
12378             'Win32API::File'        => '0.1203',
12379             'Win32API::File::inc::ExtUtils::Myconst2perl'=> '1',
12380             'XS::APItest'           => '0.80',
12381             'autouse'               => '1.11',
12382             'bytes'                 => '1.05',
12383             'strict'                => '1.11',
12384             'threads'               => '2.06',
12385             'version'               => '0.9916',
12386             'version::regex'        => '0.9916',
12387             'warnings'              => '1.36',
12388         },
12389         removed => {
12390             'Win32API::File::ExtUtils::Myconst2perl'=> 1,
12391         }
12392     },
12393     5.022002 => {
12394         delta_from => 5.022001,
12395         changed => {
12396             'B::Op_private'         => '5.022002',
12397             'Config'                => '5.022002',
12398             'Cwd'                   => '3.56_01',
12399             'File::Spec'            => '3.56_01',
12400             'File::Spec::Cygwin'    => '3.56_01',
12401             'File::Spec::Epoc'      => '3.56_01',
12402             'File::Spec::Functions' => '3.56_01',
12403             'File::Spec::Mac'       => '3.56_01',
12404             'File::Spec::OS2'       => '3.56_01',
12405             'File::Spec::Unix'      => '3.56_01',
12406             'File::Spec::VMS'       => '3.56_01',
12407             'File::Spec::Win32'     => '3.56_01',
12408             'Module::CoreList'      => '5.20160429',
12409             'Module::CoreList::TieHashDelta'=> '5.20160429',
12410             'Module::CoreList::Utils'=> '5.20160429',
12411             'XS::APItest'           => '0.72_01',
12412         },
12413         removed => {
12414         }
12415     },
12416     5.024000 => {
12417         delta_from => 5.023009,
12418         changed => {
12419             'B::Op_private'         => '5.024000',
12420             'Config'                => '5.024',
12421             'File::Copy'            => '2.31',
12422             'File::Path'            => '2.12_01',
12423             'File::Spec::AmigaOS'   => '3.64',
12424             'IO::Handle'            => '1.36',
12425             'Module::CoreList'      => '5.20160506',
12426             'Module::CoreList::TieHashDelta'=> '5.20160506',
12427             'Module::CoreList::Utils'=> '5.20160506',
12428             'ODBM_File'             => '1.14',
12429             'POSIX'                 => '1.65',
12430             'Pod::Man'              => '4.07',
12431             'Pod::ParseLink'        => '4.07',
12432             'Pod::Text'             => '4.07',
12433             'Pod::Text::Color'      => '4.07',
12434             'Pod::Text::Overstrike' => '4.07',
12435             'Pod::Text::Termcap'    => '4.07',
12436             'Thread::Queue'         => '3.09',
12437             'Time::HiRes'           => '1.9733',
12438             'threads'               => '2.07',
12439             'threads::shared'       => '1.51',
12440             'locale'                => '1.09',
12441         },
12442         removed => {
12443         }
12444     },
12445     5.025000 => {
12446         delta_from => 5.024,
12447         changed => {
12448             'B::Op_private'         => '5.025000',
12449             'Config'                => '5.025',
12450             'Module::CoreList'      => '5.20160507',
12451             'Module::CoreList::TieHashDelta'=> '5.20160507',
12452             'Module::CoreList::Utils'=> '5.20160507',
12453             'feature'               => '1.43',
12454         },
12455         removed => {
12456         }
12457     },
12458     5.025001 => {
12459         delta_from => 5.025,
12460         changed => {
12461             'Archive::Tar'          => '2.08',
12462             'Archive::Tar::Constant'=> '2.08',
12463             'Archive::Tar::File'    => '2.08',
12464             'B::Op_private'         => '5.025001',
12465             'Carp'                  => '1.41',
12466             'Carp::Heavy'           => '1.41',
12467             'Config'                => '5.025001',
12468             'Config::Perl::V'       => '0.26',
12469             'DB_File'               => '1.838',
12470             'Digest::MD5'           => '2.55',
12471             'IPC::Cmd'              => '0.94',
12472             'IPC::Msg'              => '2.07',
12473             'IPC::Semaphore'        => '2.07',
12474             'IPC::SharedMem'        => '2.07',
12475             'IPC::SysV'             => '2.07',
12476             'List::Util'            => '1.45_01',
12477             'List::Util::XS'        => '1.45_01',
12478             'Locale::Codes'         => '3.38',
12479             'Locale::Codes::Constants'=> '3.38',
12480             'Locale::Codes::Country'=> '3.38',
12481             'Locale::Codes::Country_Codes'=> '3.38',
12482             'Locale::Codes::Country_Retired'=> '3.38',
12483             'Locale::Codes::Currency'=> '3.38',
12484             'Locale::Codes::Currency_Codes'=> '3.38',
12485             'Locale::Codes::Currency_Retired'=> '3.38',
12486             'Locale::Codes::LangExt'=> '3.38',
12487             'Locale::Codes::LangExt_Codes'=> '3.38',
12488             'Locale::Codes::LangExt_Retired'=> '3.38',
12489             'Locale::Codes::LangFam'=> '3.38',
12490             'Locale::Codes::LangFam_Codes'=> '3.38',
12491             'Locale::Codes::LangFam_Retired'=> '3.38',
12492             'Locale::Codes::LangVar'=> '3.38',
12493             'Locale::Codes::LangVar_Codes'=> '3.38',
12494             'Locale::Codes::LangVar_Retired'=> '3.38',
12495             'Locale::Codes::Language'=> '3.38',
12496             'Locale::Codes::Language_Codes'=> '3.38',
12497             'Locale::Codes::Language_Retired'=> '3.38',
12498             'Locale::Codes::Script' => '3.38',
12499             'Locale::Codes::Script_Codes'=> '3.38',
12500             'Locale::Codes::Script_Retired'=> '3.38',
12501             'Locale::Country'       => '3.38',
12502             'Locale::Currency'      => '3.38',
12503             'Locale::Language'      => '3.38',
12504             'Locale::Maketext'      => '1.27',
12505             'Locale::Script'        => '3.38',
12506             'Module::CoreList'      => '5.20160520',
12507             'Module::CoreList::TieHashDelta'=> '5.20160520',
12508             'Module::CoreList::Utils'=> '5.20160520',
12509             'Module::Metadata'      => '1.000032',
12510             'POSIX'                 => '1.69',
12511             'Scalar::Util'          => '1.45_01',
12512             'Sub::Util'             => '1.45_01',
12513             'Sys::Syslog'           => '0.34',
12514             'Term::ANSIColor'       => '4.05',
12515             'Test2'                 => '1.302015',
12516             'Test2::API'            => '1.302015',
12517             'Test2::API::Breakage'  => '1.302015',
12518             'Test2::API::Context'   => '1.302015',
12519             'Test2::API::Instance'  => '1.302015',
12520             'Test2::API::Stack'     => '1.302015',
12521             'Test2::Event'          => '1.302015',
12522             'Test2::Event::Bail'    => '1.302015',
12523             'Test2::Event::Diag'    => '1.302015',
12524             'Test2::Event::Exception'=> '1.302015',
12525             'Test2::Event::Note'    => '1.302015',
12526             'Test2::Event::Ok'      => '1.302015',
12527             'Test2::Event::Plan'    => '1.302015',
12528             'Test2::Event::Skip'    => '1.302015',
12529             'Test2::Event::Subtest' => '1.302015',
12530             'Test2::Event::Waiting' => '1.302015',
12531             'Test2::Formatter'      => '1.302015',
12532             'Test2::Formatter::TAP' => '1.302015',
12533             'Test2::Hub'            => '1.302015',
12534             'Test2::Hub::Interceptor'=> '1.302015',
12535             'Test2::Hub::Interceptor::Terminator'=> '1.302015',
12536             'Test2::Hub::Subtest'   => '1.302015',
12537             'Test2::IPC'            => '1.302015',
12538             'Test2::IPC::Driver'    => '1.302015',
12539             'Test2::IPC::Driver::Files'=> '1.302015',
12540             'Test2::Util'           => '1.302015',
12541             'Test2::Util::ExternalMeta'=> '1.302015',
12542             'Test2::Util::HashBase' => '1.302015',
12543             'Test2::Util::Trace'    => '1.302015',
12544             'Test::Builder'         => '1.302015',
12545             'Test::Builder::Formatter'=> '1.302015',
12546             'Test::Builder::Module' => '1.302015',
12547             'Test::Builder::Tester' => '1.302015',
12548             'Test::Builder::Tester::Color'=> '1.302015',
12549             'Test::Builder::TodoDiag'=> '1.302015',
12550             'Test::More'            => '1.302015',
12551             'Test::Simple'          => '1.302015',
12552             'Test::Tester'          => '1.302015',
12553             'Test::Tester::Capture' => '1.302015',
12554             'Test::Tester::CaptureRunner'=> '1.302015',
12555             'Test::Tester::Delegate'=> '1.302015',
12556             'Test::use::ok'         => '1.302015',
12557             'XS::APItest'           => '0.81',
12558             '_charnames'            => '1.44',
12559             'charnames'             => '1.44',
12560             'ok'                    => '1.302015',
12561             'perlfaq'               => '5.021011',
12562             're'                    => '0.33',
12563             'threads'               => '2.08',
12564             'threads::shared'       => '1.52',
12565         },
12566         removed => {
12567         }
12568     },
12569     5.025002 => {
12570         delta_from => 5.025001,
12571         changed => {
12572             'App::Cpan'             => '1.64',
12573             'B::Op_private'         => '5.025002',
12574             'CPAN'                  => '2.14',
12575             'CPAN::Distribution'    => '2.12',
12576             'CPAN::FTP'             => '5.5007',
12577             'CPAN::FirstTime'       => '5.5309',
12578             'CPAN::HandleConfig'    => '5.5007',
12579             'CPAN::Index'           => '2.12',
12580             'CPAN::Mirrors'         => '2.12',
12581             'CPAN::Plugin'          => '0.96',
12582             'CPAN::Shell'           => '5.5006',
12583             'Config'                => '5.025002',
12584             'Cwd'                   => '3.64',
12585             'Devel::Peek'           => '1.24',
12586             'DynaLoader'            => '1.39',
12587             'ExtUtils::Command'     => '7.18',
12588             'ExtUtils::Command::MM' => '7.18',
12589             'ExtUtils::Liblist'     => '7.18',
12590             'ExtUtils::Liblist::Kid'=> '7.18',
12591             'ExtUtils::MM'          => '7.18',
12592             'ExtUtils::MM_AIX'      => '7.18',
12593             'ExtUtils::MM_Any'      => '7.18',
12594             'ExtUtils::MM_BeOS'     => '7.18',
12595             'ExtUtils::MM_Cygwin'   => '7.18',
12596             'ExtUtils::MM_DOS'      => '7.18',
12597             'ExtUtils::MM_Darwin'   => '7.18',
12598             'ExtUtils::MM_MacOS'    => '7.18',
12599             'ExtUtils::MM_NW5'      => '7.18',
12600             'ExtUtils::MM_OS2'      => '7.18',
12601             'ExtUtils::MM_QNX'      => '7.18',
12602             'ExtUtils::MM_UWIN'     => '7.18',
12603             'ExtUtils::MM_Unix'     => '7.18',
12604             'ExtUtils::MM_VMS'      => '7.18',
12605             'ExtUtils::MM_VOS'      => '7.18',
12606             'ExtUtils::MM_Win32'    => '7.18',
12607             'ExtUtils::MM_Win95'    => '7.18',
12608             'ExtUtils::MY'          => '7.18',
12609             'ExtUtils::MakeMaker'   => '7.18',
12610             'ExtUtils::MakeMaker::Config'=> '7.18',
12611             'ExtUtils::MakeMaker::Locale'=> '7.18',
12612             'ExtUtils::MakeMaker::version'=> '7.18',
12613             'ExtUtils::MakeMaker::version::regex'=> '7.18',
12614             'ExtUtils::Miniperl'    => '1.06',
12615             'ExtUtils::Mkbootstrap' => '7.18',
12616             'ExtUtils::Mksymlists'  => '7.18',
12617             'ExtUtils::ParseXS'     => '3.32',
12618             'ExtUtils::ParseXS::Constants'=> '3.32',
12619             'ExtUtils::ParseXS::CountLines'=> '3.32',
12620             'ExtUtils::ParseXS::Eval'=> '3.32',
12621             'ExtUtils::ParseXS::Utilities'=> '3.32',
12622             'ExtUtils::Typemaps'    => '3.32',
12623             'ExtUtils::Typemaps::Cmd'=> '3.32',
12624             'ExtUtils::Typemaps::InputMap'=> '3.32',
12625             'ExtUtils::Typemaps::OutputMap'=> '3.32',
12626             'ExtUtils::Typemaps::Type'=> '3.32',
12627             'ExtUtils::testlib'     => '7.18',
12628             'File::Copy'            => '2.32',
12629             'File::Glob'            => '1.27',
12630             'File::Spec'            => '3.64',
12631             'File::Spec::Cygwin'    => '3.64',
12632             'File::Spec::Epoc'      => '3.64',
12633             'File::Spec::Functions' => '3.64',
12634             'File::Spec::Mac'       => '3.64',
12635             'File::Spec::OS2'       => '3.64',
12636             'File::Spec::Unix'      => '3.64',
12637             'File::Spec::VMS'       => '3.64',
12638             'File::Spec::Win32'     => '3.64',
12639             'FileHandle'            => '2.03',
12640             'Getopt::Long'          => '2.49',
12641             'HTTP::Tiny'            => '0.058',
12642             'JSON::PP'              => '2.27400',
12643             'Locale::Codes'         => '3.39',
12644             'Locale::Codes::Constants'=> '3.39',
12645             'Locale::Codes::Country'=> '3.39',
12646             'Locale::Codes::Country_Codes'=> '3.39',
12647             'Locale::Codes::Country_Retired'=> '3.39',
12648             'Locale::Codes::Currency'=> '3.39',
12649             'Locale::Codes::Currency_Codes'=> '3.39',
12650             'Locale::Codes::Currency_Retired'=> '3.39',
12651             'Locale::Codes::LangExt'=> '3.39',
12652             'Locale::Codes::LangExt_Codes'=> '3.39',
12653             'Locale::Codes::LangExt_Retired'=> '3.39',
12654             'Locale::Codes::LangFam'=> '3.39',
12655             'Locale::Codes::LangFam_Codes'=> '3.39',
12656             'Locale::Codes::LangFam_Retired'=> '3.39',
12657             'Locale::Codes::LangVar'=> '3.39',
12658             'Locale::Codes::LangVar_Codes'=> '3.39',
12659             'Locale::Codes::LangVar_Retired'=> '3.39',
12660             'Locale::Codes::Language'=> '3.39',
12661             'Locale::Codes::Language_Codes'=> '3.39',
12662             'Locale::Codes::Language_Retired'=> '3.39',
12663             'Locale::Codes::Script' => '3.39',
12664             'Locale::Codes::Script_Codes'=> '3.39',
12665             'Locale::Codes::Script_Retired'=> '3.39',
12666             'Locale::Country'       => '3.39',
12667             'Locale::Currency'      => '3.39',
12668             'Locale::Language'      => '3.39',
12669             'Locale::Script'        => '3.39',
12670             'Module::CoreList'      => '5.20160620',
12671             'Module::CoreList::TieHashDelta'=> '5.20160620',
12672             'Module::CoreList::Utils'=> '5.20160620',
12673             'Opcode'                => '1.35',
12674             'POSIX'                 => '1.70',
12675             'Pod::Checker'          => '1.73',
12676             'Pod::Functions'        => '1.11',
12677             'Pod::Functions::Functions'=> '1.11',
12678             'Pod::Usage'            => '1.69',
12679             'Test2'                 => '1.302026',
12680             'Test2::API'            => '1.302026',
12681             'Test2::API::Breakage'  => '1.302026',
12682             'Test2::API::Context'   => '1.302026',
12683             'Test2::API::Instance'  => '1.302026',
12684             'Test2::API::Stack'     => '1.302026',
12685             'Test2::Event'          => '1.302026',
12686             'Test2::Event::Bail'    => '1.302026',
12687             'Test2::Event::Diag'    => '1.302026',
12688             'Test2::Event::Exception'=> '1.302026',
12689             'Test2::Event::Generic' => '1.302026',
12690             'Test2::Event::Note'    => '1.302026',
12691             'Test2::Event::Ok'      => '1.302026',
12692             'Test2::Event::Plan'    => '1.302026',
12693             'Test2::Event::Skip'    => '1.302026',
12694             'Test2::Event::Subtest' => '1.302026',
12695             'Test2::Event::Waiting' => '1.302026',
12696             'Test2::Formatter'      => '1.302026',
12697             'Test2::Formatter::TAP' => '1.302026',
12698             'Test2::Hub'            => '1.302026',
12699             'Test2::Hub::Interceptor'=> '1.302026',
12700             'Test2::Hub::Interceptor::Terminator'=> '1.302026',
12701             'Test2::Hub::Subtest'   => '1.302026',
12702             'Test2::IPC'            => '1.302026',
12703             'Test2::IPC::Driver'    => '1.302026',
12704             'Test2::IPC::Driver::Files'=> '1.302026',
12705             'Test2::Util'           => '1.302026',
12706             'Test2::Util::ExternalMeta'=> '1.302026',
12707             'Test2::Util::HashBase' => '1.302026',
12708             'Test2::Util::Trace'    => '1.302026',
12709             'Test::Builder'         => '1.302026',
12710             'Test::Builder::Formatter'=> '1.302026',
12711             'Test::Builder::Module' => '1.302026',
12712             'Test::Builder::Tester' => '1.302026',
12713             'Test::Builder::Tester::Color'=> '1.302026',
12714             'Test::Builder::TodoDiag'=> '1.302026',
12715             'Test::More'            => '1.302026',
12716             'Test::Simple'          => '1.302026',
12717             'Test::Tester'          => '1.302026',
12718             'Test::Tester::Capture' => '1.302026',
12719             'Test::Tester::CaptureRunner'=> '1.302026',
12720             'Test::Tester::Delegate'=> '1.302026',
12721             'Test::use::ok'         => '1.302026',
12722             'Thread::Queue'         => '3.11',
12723             'Time::HiRes'           => '1.9734',
12724             'Unicode::UCD'          => '0.65',
12725             'VMS::DCLsym'           => '1.07',
12726             'XS::APItest'           => '0.82',
12727             'diagnostics'           => '1.35',
12728             'feature'               => '1.44',
12729             'ok'                    => '1.302026',
12730             'threads'               => '2.09',
12731         },
12732         removed => {
12733         }
12734     },
12735     5.025003 => {
12736         delta_from => 5.025002,
12737         changed => {
12738             'B::Op_private'         => '5.025003',
12739             'Config'                => '5.025003',
12740             'Data::Dumper'          => '2.161',
12741             'Devel::PPPort'         => '3.35',
12742             'Encode'                => '2.84',
12743             'Encode::MIME::Header'  => '2.23',
12744             'Encode::MIME::Header::ISO_2022_JP'=> '1.07',
12745             'ExtUtils::ParseXS'     => '3.33',
12746             'ExtUtils::ParseXS::Constants'=> '3.33',
12747             'ExtUtils::ParseXS::CountLines'=> '3.33',
12748             'ExtUtils::ParseXS::Eval'=> '3.33',
12749             'ExtUtils::ParseXS::Utilities'=> '3.33',
12750             'ExtUtils::Typemaps'    => '3.33',
12751             'ExtUtils::Typemaps::Cmd'=> '3.33',
12752             'ExtUtils::Typemaps::InputMap'=> '3.33',
12753             'ExtUtils::Typemaps::OutputMap'=> '3.33',
12754             'ExtUtils::Typemaps::Type'=> '3.33',
12755             'Hash::Util'            => '0.20',
12756             'Math::BigFloat'        => '1.999726',
12757             'Math::BigFloat::Trace' => '0.43',
12758             'Math::BigInt'          => '1.999726',
12759             'Math::BigInt::Calc'    => '1.999726',
12760             'Math::BigInt::CalcEmu' => '1.999726',
12761             'Math::BigInt::FastCalc'=> '0.42',
12762             'Math::BigInt::Trace'   => '0.43',
12763             'Math::BigRat'          => '0.260804',
12764             'Module::CoreList'      => '5.20160720',
12765             'Module::CoreList::TieHashDelta'=> '5.20160720',
12766             'Module::CoreList::Utils'=> '5.20160720',
12767             'Net::Cmd'              => '3.09',
12768             'Net::Config'           => '3.09',
12769             'Net::Domain'           => '3.09',
12770             'Net::FTP'              => '3.09',
12771             'Net::FTP::A'           => '3.09',
12772             'Net::FTP::E'           => '3.09',
12773             'Net::FTP::I'           => '3.09',
12774             'Net::FTP::L'           => '3.09',
12775             'Net::FTP::dataconn'    => '3.09',
12776             'Net::NNTP'             => '3.09',
12777             'Net::Netrc'            => '3.09',
12778             'Net::POP3'             => '3.09',
12779             'Net::SMTP'             => '3.09',
12780             'Net::Time'             => '3.09',
12781             'Parse::CPAN::Meta'     => '1.4422',
12782             'Perl::OSType'          => '1.010',
12783             'Test2'                 => '1.302045',
12784             'Test2::API'            => '1.302045',
12785             'Test2::API::Breakage'  => '1.302045',
12786             'Test2::API::Context'   => '1.302045',
12787             'Test2::API::Instance'  => '1.302045',
12788             'Test2::API::Stack'     => '1.302045',
12789             'Test2::Event'          => '1.302045',
12790             'Test2::Event::Bail'    => '1.302045',
12791             'Test2::Event::Diag'    => '1.302045',
12792             'Test2::Event::Exception'=> '1.302045',
12793             'Test2::Event::Generic' => '1.302045',
12794             'Test2::Event::Info'    => '1.302045',
12795             'Test2::Event::Note'    => '1.302045',
12796             'Test2::Event::Ok'      => '1.302045',
12797             'Test2::Event::Plan'    => '1.302045',
12798             'Test2::Event::Skip'    => '1.302045',
12799             'Test2::Event::Subtest' => '1.302045',
12800             'Test2::Event::Waiting' => '1.302045',
12801             'Test2::Formatter'      => '1.302045',
12802             'Test2::Formatter::TAP' => '1.302045',
12803             'Test2::Hub'            => '1.302045',
12804             'Test2::Hub::Interceptor'=> '1.302045',
12805             'Test2::Hub::Interceptor::Terminator'=> '1.302045',
12806             'Test2::Hub::Subtest'   => '1.302045',
12807             'Test2::IPC'            => '1.302045',
12808             'Test2::IPC::Driver'    => '1.302045',
12809             'Test2::IPC::Driver::Files'=> '1.302045',
12810             'Test2::Util'           => '1.302045',
12811             'Test2::Util::ExternalMeta'=> '1.302045',
12812             'Test2::Util::HashBase' => '1.302045',
12813             'Test2::Util::Trace'    => '1.302045',
12814             'Test::Builder'         => '1.302045',
12815             'Test::Builder::Formatter'=> '1.302045',
12816             'Test::Builder::Module' => '1.302045',
12817             'Test::Builder::Tester' => '1.302045',
12818             'Test::Builder::Tester::Color'=> '1.302045',
12819             'Test::Builder::TodoDiag'=> '1.302045',
12820             'Test::More'            => '1.302045',
12821             'Test::Simple'          => '1.302045',
12822             'Test::Tester'          => '1.302045',
12823             'Test::Tester::Capture' => '1.302045',
12824             'Test::Tester::CaptureRunner'=> '1.302045',
12825             'Test::Tester::Delegate'=> '1.302045',
12826             'Test::use::ok'         => '1.302045',
12827             'Time::HiRes'           => '1.9739',
12828             'Unicode'               => '9.0.0',
12829             'Unicode::UCD'          => '0.66',
12830             'XSLoader'              => '0.22',
12831             'bigint'                => '0.43',
12832             'bignum'                => '0.43',
12833             'bigrat'                => '0.43',
12834             'encoding'              => '2.17_01',
12835             'encoding::warnings'    => '0.13',
12836             'feature'               => '1.45',
12837             'ok'                    => '1.302045',
12838             'version'               => '0.9917',
12839             'version::regex'        => '0.9917',
12840             'warnings'              => '1.37',
12841         },
12842         removed => {
12843         }
12844     },
12845     5.025004 => {
12846         delta_from => 5.025003,
12847         changed => {
12848             'App::Cpan'             => '1.64_01',
12849             'App::Prove'            => '3.36_01',
12850             'App::Prove::State'     => '3.36_01',
12851             'App::Prove::State::Result'=> '3.36_01',
12852             'App::Prove::State::Result::Test'=> '3.36_01',
12853             'Archive::Tar'          => '2.10',
12854             'Archive::Tar::Constant'=> '2.10',
12855             'Archive::Tar::File'    => '2.10',
12856             'B'                     => '1.63',
12857             'B::Concise'            => '0.998',
12858             'B::Deparse'            => '1.38',
12859             'B::Op_private'         => '5.025004',
12860             'CPAN'                  => '2.14_01',
12861             'CPAN::Meta'            => '2.150010',
12862             'CPAN::Meta::Converter' => '2.150010',
12863             'CPAN::Meta::Feature'   => '2.150010',
12864             'CPAN::Meta::History'   => '2.150010',
12865             'CPAN::Meta::Merge'     => '2.150010',
12866             'CPAN::Meta::Prereqs'   => '2.150010',
12867             'CPAN::Meta::Spec'      => '2.150010',
12868             'CPAN::Meta::Validator' => '2.150010',
12869             'Carp'                  => '1.42',
12870             'Carp::Heavy'           => '1.42',
12871             'Compress::Zlib'        => '2.069_01',
12872             'Config'                => '5.025004',
12873             'Config::Perl::V'       => '0.27',
12874             'Cwd'                   => '3.65',
12875             'Digest'                => '1.17_01',
12876             'Digest::SHA'           => '5.96',
12877             'Encode'                => '2.86',
12878             'Errno'                 => '1.26',
12879             'ExtUtils::Command'     => '7.24',
12880             'ExtUtils::Command::MM' => '7.24',
12881             'ExtUtils::Liblist'     => '7.24',
12882             'ExtUtils::Liblist::Kid'=> '7.24',
12883             'ExtUtils::MM'          => '7.24',
12884             'ExtUtils::MM_AIX'      => '7.24',
12885             'ExtUtils::MM_Any'      => '7.24',
12886             'ExtUtils::MM_BeOS'     => '7.24',
12887             'ExtUtils::MM_Cygwin'   => '7.24',
12888             'ExtUtils::MM_DOS'      => '7.24',
12889             'ExtUtils::MM_Darwin'   => '7.24',
12890             'ExtUtils::MM_MacOS'    => '7.24',
12891             'ExtUtils::MM_NW5'      => '7.24',
12892             'ExtUtils::MM_OS2'      => '7.24',
12893             'ExtUtils::MM_QNX'      => '7.24',
12894             'ExtUtils::MM_UWIN'     => '7.24',
12895             'ExtUtils::MM_Unix'     => '7.24',
12896             'ExtUtils::MM_VMS'      => '7.24',
12897             'ExtUtils::MM_VOS'      => '7.24',
12898             'ExtUtils::MM_Win32'    => '7.24',
12899             'ExtUtils::MM_Win95'    => '7.24',
12900             'ExtUtils::MY'          => '7.24',
12901             'ExtUtils::MakeMaker'   => '7.24',
12902             'ExtUtils::MakeMaker::Config'=> '7.24',
12903             'ExtUtils::MakeMaker::Locale'=> '7.24',
12904             'ExtUtils::MakeMaker::version'=> '7.24',
12905             'ExtUtils::MakeMaker::version::regex'=> '7.24',
12906             'ExtUtils::Mkbootstrap' => '7.24',
12907             'ExtUtils::Mksymlists'  => '7.24',
12908             'ExtUtils::testlib'     => '7.24',
12909             'File::Fetch'           => '0.52',
12910             'File::Spec'            => '3.65',
12911             'File::Spec::AmigaOS'   => '3.65',
12912             'File::Spec::Cygwin'    => '3.65',
12913             'File::Spec::Epoc'      => '3.65',
12914             'File::Spec::Functions' => '3.65',
12915             'File::Spec::Mac'       => '3.65',
12916             'File::Spec::OS2'       => '3.65',
12917             'File::Spec::Unix'      => '3.65',
12918             'File::Spec::VMS'       => '3.65',
12919             'File::Spec::Win32'     => '3.65',
12920             'HTTP::Tiny'            => '0.064',
12921             'Hash::Util'            => '0.21',
12922             'I18N::LangTags'        => '0.41',
12923             'I18N::LangTags::Detect'=> '1.06',
12924             'IO'                    => '1.37',
12925             'IO::Compress::Adapter::Bzip2'=> '2.069_01',
12926             'IO::Compress::Adapter::Deflate'=> '2.069_01',
12927             'IO::Compress::Adapter::Identity'=> '2.069_01',
12928             'IO::Compress::Base'    => '2.069_01',
12929             'IO::Compress::Base::Common'=> '2.069_01',
12930             'IO::Compress::Bzip2'   => '2.069_01',
12931             'IO::Compress::Deflate' => '2.069_01',
12932             'IO::Compress::Gzip'    => '2.069_01',
12933             'IO::Compress::Gzip::Constants'=> '2.069_01',
12934             'IO::Compress::RawDeflate'=> '2.069_01',
12935             'IO::Compress::Zip'     => '2.069_01',
12936             'IO::Compress::Zip::Constants'=> '2.069_01',
12937             'IO::Compress::Zlib::Constants'=> '2.069_01',
12938             'IO::Compress::Zlib::Extra'=> '2.069_01',
12939             'IO::Socket::IP'        => '0.38',
12940             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_01',
12941             'IO::Uncompress::Adapter::Identity'=> '2.069_01',
12942             'IO::Uncompress::Adapter::Inflate'=> '2.069_01',
12943             'IO::Uncompress::AnyInflate'=> '2.069_01',
12944             'IO::Uncompress::AnyUncompress'=> '2.069_01',
12945             'IO::Uncompress::Base'  => '2.069_01',
12946             'IO::Uncompress::Bunzip2'=> '2.069_01',
12947             'IO::Uncompress::Gunzip'=> '2.069_01',
12948             'IO::Uncompress::Inflate'=> '2.069_01',
12949             'IO::Uncompress::RawInflate'=> '2.069_01',
12950             'IO::Uncompress::Unzip' => '2.069_01',
12951             'IPC::Cmd'              => '0.96',
12952             'JSON::PP'              => '2.27400_01',
12953             'Locale::Maketext'      => '1.28',
12954             'Locale::Maketext::Simple'=> '0.21_01',
12955             'Math::BigFloat::Trace' => '0.43_01',
12956             'Math::BigInt::Trace'   => '0.43_01',
12957             'Memoize'               => '1.03_01',
12958             'Module::CoreList'      => '5.20160820',
12959             'Module::CoreList::TieHashDelta'=> '5.20160820',
12960             'Module::CoreList::Utils'=> '5.20160820',
12961             'Module::Load::Conditional'=> '0.68',
12962             'Module::Metadata'      => '1.000033',
12963             'NEXT'                  => '0.67',
12964             'Net::Cmd'              => '3.10',
12965             'Net::Config'           => '3.10',
12966             'Net::Domain'           => '3.10',
12967             'Net::FTP'              => '3.10',
12968             'Net::FTP::A'           => '3.10',
12969             'Net::FTP::E'           => '3.10',
12970             'Net::FTP::I'           => '3.10',
12971             'Net::FTP::L'           => '3.10',
12972             'Net::FTP::dataconn'    => '3.10',
12973             'Net::NNTP'             => '3.10',
12974             'Net::Netrc'            => '3.10',
12975             'Net::POP3'             => '3.10',
12976             'Net::Ping'             => '2.44',
12977             'Net::SMTP'             => '3.10',
12978             'Net::Time'             => '3.10',
12979             'Opcode'                => '1.37',
12980             'POSIX'                 => '1.71',
12981             'Parse::CPAN::Meta'     => '2.150010',
12982             'Pod::Html'             => '1.2201',
12983             'Pod::Perldoc'          => '3.27',
12984             'Pod::Perldoc::BaseTo'  => '3.27',
12985             'Pod::Perldoc::GetOptsOO'=> '3.27',
12986             'Pod::Perldoc::ToANSI'  => '3.27',
12987             'Pod::Perldoc::ToChecker'=> '3.27',
12988             'Pod::Perldoc::ToMan'   => '3.27',
12989             'Pod::Perldoc::ToNroff' => '3.27',
12990             'Pod::Perldoc::ToPod'   => '3.27',
12991             'Pod::Perldoc::ToRtf'   => '3.27',
12992             'Pod::Perldoc::ToTerm'  => '3.27',
12993             'Pod::Perldoc::ToText'  => '3.27',
12994             'Pod::Perldoc::ToTk'    => '3.27',
12995             'Pod::Perldoc::ToXml'   => '3.27',
12996             'Storable'              => '2.57',
12997             'Sys::Syslog'           => '0.34_01',
12998             'TAP::Base'             => '3.36_01',
12999             'TAP::Formatter::Base'  => '3.36_01',
13000             'TAP::Formatter::Color' => '3.36_01',
13001             'TAP::Formatter::Console'=> '3.36_01',
13002             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13003             'TAP::Formatter::Console::Session'=> '3.36_01',
13004             'TAP::Formatter::File'  => '3.36_01',
13005             'TAP::Formatter::File::Session'=> '3.36_01',
13006             'TAP::Formatter::Session'=> '3.36_01',
13007             'TAP::Harness'          => '3.36_01',
13008             'TAP::Harness::Env'     => '3.36_01',
13009             'TAP::Object'           => '3.36_01',
13010             'TAP::Parser'           => '3.36_01',
13011             'TAP::Parser::Aggregator'=> '3.36_01',
13012             'TAP::Parser::Grammar'  => '3.36_01',
13013             'TAP::Parser::Iterator' => '3.36_01',
13014             'TAP::Parser::Iterator::Array'=> '3.36_01',
13015             'TAP::Parser::Iterator::Process'=> '3.36_01',
13016             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13017             'TAP::Parser::IteratorFactory'=> '3.36_01',
13018             'TAP::Parser::Multiplexer'=> '3.36_01',
13019             'TAP::Parser::Result'   => '3.36_01',
13020             'TAP::Parser::Result::Bailout'=> '3.36_01',
13021             'TAP::Parser::Result::Comment'=> '3.36_01',
13022             'TAP::Parser::Result::Plan'=> '3.36_01',
13023             'TAP::Parser::Result::Pragma'=> '3.36_01',
13024             'TAP::Parser::Result::Test'=> '3.36_01',
13025             'TAP::Parser::Result::Unknown'=> '3.36_01',
13026             'TAP::Parser::Result::Version'=> '3.36_01',
13027             'TAP::Parser::Result::YAML'=> '3.36_01',
13028             'TAP::Parser::ResultFactory'=> '3.36_01',
13029             'TAP::Parser::Scheduler'=> '3.36_01',
13030             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13031             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13032             'TAP::Parser::Source'   => '3.36_01',
13033             'TAP::Parser::SourceHandler'=> '3.36_01',
13034             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13035             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13036             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13037             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13038             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13039             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13040             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13041             'Test'                  => '1.29',
13042             'Test2'                 => '1.302052',
13043             'Test2::API'            => '1.302052',
13044             'Test2::API::Breakage'  => '1.302052',
13045             'Test2::API::Context'   => '1.302052',
13046             'Test2::API::Instance'  => '1.302052',
13047             'Test2::API::Stack'     => '1.302052',
13048             'Test2::Event'          => '1.302052',
13049             'Test2::Event::Bail'    => '1.302052',
13050             'Test2::Event::Diag'    => '1.302052',
13051             'Test2::Event::Exception'=> '1.302052',
13052             'Test2::Event::Generic' => '1.302052',
13053             'Test2::Event::Info'    => '1.302052',
13054             'Test2::Event::Note'    => '1.302052',
13055             'Test2::Event::Ok'      => '1.302052',
13056             'Test2::Event::Plan'    => '1.302052',
13057             'Test2::Event::Skip'    => '1.302052',
13058             'Test2::Event::Subtest' => '1.302052',
13059             'Test2::Event::Waiting' => '1.302052',
13060             'Test2::Formatter'      => '1.302052',
13061             'Test2::Formatter::TAP' => '1.302052',
13062             'Test2::Hub'            => '1.302052',
13063             'Test2::Hub::Interceptor'=> '1.302052',
13064             'Test2::Hub::Interceptor::Terminator'=> '1.302052',
13065             'Test2::Hub::Subtest'   => '1.302052',
13066             'Test2::IPC'            => '1.302052',
13067             'Test2::IPC::Driver'    => '1.302052',
13068             'Test2::IPC::Driver::Files'=> '1.302052',
13069             'Test2::Util'           => '1.302052',
13070             'Test2::Util::ExternalMeta'=> '1.302052',
13071             'Test2::Util::HashBase' => '1.302052',
13072             'Test2::Util::Trace'    => '1.302052',
13073             'Test::Builder'         => '1.302052',
13074             'Test::Builder::Formatter'=> '1.302052',
13075             'Test::Builder::Module' => '1.302052',
13076             'Test::Builder::Tester' => '1.302052',
13077             'Test::Builder::Tester::Color'=> '1.302052',
13078             'Test::Builder::TodoDiag'=> '1.302052',
13079             'Test::Harness'         => '3.36_01',
13080             'Test::More'            => '1.302052',
13081             'Test::Simple'          => '1.302052',
13082             'Test::Tester'          => '1.302052',
13083             'Test::Tester::Capture' => '1.302052',
13084             'Test::Tester::CaptureRunner'=> '1.302052',
13085             'Test::Tester::Delegate'=> '1.302052',
13086             'Test::use::ok'         => '1.302052',
13087             'Tie::Hash::NamedCapture'=> '0.10',
13088             'Time::Local'           => '1.24',
13089             'XS::APItest'           => '0.83',
13090             'arybase'               => '0.12',
13091             'base'                  => '2.24',
13092             'bigint'                => '0.43_01',
13093             'bignum'                => '0.43_01',
13094             'bigrat'                => '0.43_01',
13095             'encoding'              => '2.18',
13096             'ok'                    => '1.302052',
13097         },
13098         removed => {
13099         }
13100     },
13101     5.025005 => {
13102         delta_from => 5.025004,
13103         changed => {
13104             'B::Op_private'         => '5.025005',
13105             'Config'                => '5.025005',
13106             'Filter::Simple'        => '0.93',
13107             'Locale::Codes'         => '3.40',
13108             'Locale::Codes::Constants'=> '3.40',
13109             'Locale::Codes::Country'=> '3.40',
13110             'Locale::Codes::Country_Codes'=> '3.40',
13111             'Locale::Codes::Country_Retired'=> '3.40',
13112             'Locale::Codes::Currency'=> '3.40',
13113             'Locale::Codes::Currency_Codes'=> '3.40',
13114             'Locale::Codes::Currency_Retired'=> '3.40',
13115             'Locale::Codes::LangExt'=> '3.40',
13116             'Locale::Codes::LangExt_Codes'=> '3.40',
13117             'Locale::Codes::LangExt_Retired'=> '3.40',
13118             'Locale::Codes::LangFam'=> '3.40',
13119             'Locale::Codes::LangFam_Codes'=> '3.40',
13120             'Locale::Codes::LangFam_Retired'=> '3.40',
13121             'Locale::Codes::LangVar'=> '3.40',
13122             'Locale::Codes::LangVar_Codes'=> '3.40',
13123             'Locale::Codes::LangVar_Retired'=> '3.40',
13124             'Locale::Codes::Language'=> '3.40',
13125             'Locale::Codes::Language_Codes'=> '3.40',
13126             'Locale::Codes::Language_Retired'=> '3.40',
13127             'Locale::Codes::Script' => '3.40',
13128             'Locale::Codes::Script_Codes'=> '3.40',
13129             'Locale::Codes::Script_Retired'=> '3.40',
13130             'Locale::Country'       => '3.40',
13131             'Locale::Currency'      => '3.40',
13132             'Locale::Language'      => '3.40',
13133             'Locale::Script'        => '3.40',
13134             'Module::CoreList'      => '5.20160920',
13135             'Module::CoreList::TieHashDelta'=> '5.20160920',
13136             'Module::CoreList::Utils'=> '5.20160920',
13137             'POSIX'                 => '1.72',
13138             'Sys::Syslog'           => '0.35',
13139             'Test2'                 => '1.302056',
13140             'Test2::API'            => '1.302056',
13141             'Test2::API::Breakage'  => '1.302056',
13142             'Test2::API::Context'   => '1.302056',
13143             'Test2::API::Instance'  => '1.302056',
13144             'Test2::API::Stack'     => '1.302056',
13145             'Test2::Event'          => '1.302056',
13146             'Test2::Event::Bail'    => '1.302056',
13147             'Test2::Event::Diag'    => '1.302056',
13148             'Test2::Event::Exception'=> '1.302056',
13149             'Test2::Event::Generic' => '1.302056',
13150             'Test2::Event::Info'    => '1.302056',
13151             'Test2::Event::Note'    => '1.302056',
13152             'Test2::Event::Ok'      => '1.302056',
13153             'Test2::Event::Plan'    => '1.302056',
13154             'Test2::Event::Skip'    => '1.302056',
13155             'Test2::Event::Subtest' => '1.302056',
13156             'Test2::Event::Waiting' => '1.302056',
13157             'Test2::Formatter'      => '1.302056',
13158             'Test2::Formatter::TAP' => '1.302056',
13159             'Test2::Hub'            => '1.302056',
13160             'Test2::Hub::Interceptor'=> '1.302056',
13161             'Test2::Hub::Interceptor::Terminator'=> '1.302056',
13162             'Test2::Hub::Subtest'   => '1.302056',
13163             'Test2::IPC'            => '1.302056',
13164             'Test2::IPC::Driver'    => '1.302056',
13165             'Test2::IPC::Driver::Files'=> '1.302056',
13166             'Test2::Util'           => '1.302056',
13167             'Test2::Util::ExternalMeta'=> '1.302056',
13168             'Test2::Util::HashBase' => '1.302056',
13169             'Test2::Util::Trace'    => '1.302056',
13170             'Test::Builder'         => '1.302056',
13171             'Test::Builder::Formatter'=> '1.302056',
13172             'Test::Builder::Module' => '1.302056',
13173             'Test::Builder::Tester' => '1.302056',
13174             'Test::Builder::Tester::Color'=> '1.302056',
13175             'Test::Builder::TodoDiag'=> '1.302056',
13176             'Test::More'            => '1.302056',
13177             'Test::Simple'          => '1.302056',
13178             'Test::Tester'          => '1.302056',
13179             'Test::Tester::Capture' => '1.302056',
13180             'Test::Tester::CaptureRunner'=> '1.302056',
13181             'Test::Tester::Delegate'=> '1.302056',
13182             'Test::use::ok'         => '1.302056',
13183             'Thread::Semaphore'     => '2.13',
13184             'XS::APItest'           => '0.84',
13185             'XSLoader'              => '0.24',
13186             'ok'                    => '1.302056',
13187         },
13188         removed => {
13189         }
13190     },
13191     5.025006 => {
13192         delta_from => 5.025005,
13193         changed => {
13194             'Archive::Tar'          => '2.14',
13195             'Archive::Tar::Constant'=> '2.14',
13196             'Archive::Tar::File'    => '2.14',
13197             'B'                     => '1.64',
13198             'B::Concise'            => '0.999',
13199             'B::Deparse'            => '1.39',
13200             'B::Op_private'         => '5.025006',
13201             'Config'                => '5.025006',
13202             'Data::Dumper'          => '2.162',
13203             'Devel::Peek'           => '1.25',
13204             'HTTP::Tiny'            => '0.070',
13205             'List::Util'            => '1.46',
13206             'List::Util::XS'        => '1.46',
13207             'Module::CoreList'      => '5.20161020',
13208             'Module::CoreList::TieHashDelta'=> '5.20161020',
13209             'Module::CoreList::Utils'=> '5.20161020',
13210             'Net::Ping'             => '2.51',
13211             'OS2::DLL'              => '1.07',
13212             'Opcode'                => '1.38',
13213             'POSIX'                 => '1.73',
13214             'PerlIO::encoding'      => '0.25',
13215             'Pod::Man'              => '4.08',
13216             'Pod::ParseLink'        => '4.08',
13217             'Pod::Text'             => '4.08',
13218             'Pod::Text::Color'      => '4.08',
13219             'Pod::Text::Overstrike' => '4.08',
13220             'Pod::Text::Termcap'    => '4.08',
13221             'Scalar::Util'          => '1.46',
13222             'Storable'              => '2.58',
13223             'Sub::Util'             => '1.46',
13224             'Test2'                 => '1.302059',
13225             'Test2::API'            => '1.302059',
13226             'Test2::API::Breakage'  => '1.302059',
13227             'Test2::API::Context'   => '1.302059',
13228             'Test2::API::Instance'  => '1.302059',
13229             'Test2::API::Stack'     => '1.302059',
13230             'Test2::Event'          => '1.302059',
13231             'Test2::Event::Bail'    => '1.302059',
13232             'Test2::Event::Diag'    => '1.302059',
13233             'Test2::Event::Exception'=> '1.302059',
13234             'Test2::Event::Generic' => '1.302059',
13235             'Test2::Event::Info'    => '1.302059',
13236             'Test2::Event::Note'    => '1.302059',
13237             'Test2::Event::Ok'      => '1.302059',
13238             'Test2::Event::Plan'    => '1.302059',
13239             'Test2::Event::Skip'    => '1.302059',
13240             'Test2::Event::Subtest' => '1.302059',
13241             'Test2::Event::Waiting' => '1.302059',
13242             'Test2::Formatter'      => '1.302059',
13243             'Test2::Formatter::TAP' => '1.302059',
13244             'Test2::Hub'            => '1.302059',
13245             'Test2::Hub::Interceptor'=> '1.302059',
13246             'Test2::Hub::Interceptor::Terminator'=> '1.302059',
13247             'Test2::Hub::Subtest'   => '1.302059',
13248             'Test2::IPC'            => '1.302059',
13249             'Test2::IPC::Driver'    => '1.302059',
13250             'Test2::IPC::Driver::Files'=> '1.302059',
13251             'Test2::Util'           => '1.302059',
13252             'Test2::Util::ExternalMeta'=> '1.302059',
13253             'Test2::Util::HashBase' => '1.302059',
13254             'Test2::Util::Trace'    => '1.302059',
13255             'Test::Builder'         => '1.302059',
13256             'Test::Builder::Formatter'=> '1.302059',
13257             'Test::Builder::Module' => '1.302059',
13258             'Test::Builder::Tester' => '1.302059',
13259             'Test::Builder::Tester::Color'=> '1.302059',
13260             'Test::Builder::TodoDiag'=> '1.302059',
13261             'Test::More'            => '1.302059',
13262             'Test::Simple'          => '1.302059',
13263             'Test::Tester'          => '1.302059',
13264             'Test::Tester::Capture' => '1.302059',
13265             'Test::Tester::CaptureRunner'=> '1.302059',
13266             'Test::Tester::Delegate'=> '1.302059',
13267             'Test::use::ok'         => '1.302059',
13268             'Time::HiRes'           => '1.9740_01',
13269             'VMS::Stdio'            => '2.42',
13270             'XS::APItest'           => '0.86',
13271             'attributes'            => '0.28',
13272             'mro'                   => '1.19',
13273             'ok'                    => '1.302059',
13274             'overload'              => '1.27',
13275             'parent'                => '0.236',
13276         },
13277         removed => {
13278         }
13279     },
13280     5.025007 => {
13281         delta_from => 5.025006,
13282         changed => {
13283             'Archive::Tar'          => '2.18',
13284             'Archive::Tar::Constant'=> '2.18',
13285             'Archive::Tar::File'    => '2.18',
13286             'B'                     => '1.65',
13287             'B::Op_private'         => '5.025007',
13288             'Config'                => '5.025007',
13289             'Cwd'                   => '3.66',
13290             'Data::Dumper'          => '2.165',
13291             'Devel::Peek'           => '1.26',
13292             'DynaLoader'            => '1.40',
13293             'Errno'                 => '1.27',
13294             'ExtUtils::ParseXS::Utilities'=> '3.34',
13295             'File::Spec'            => '3.66',
13296             'File::Spec::AmigaOS'   => '3.66',
13297             'File::Spec::Cygwin'    => '3.66',
13298             'File::Spec::Epoc'      => '3.66',
13299             'File::Spec::Functions' => '3.66',
13300             'File::Spec::Mac'       => '3.66',
13301             'File::Spec::OS2'       => '3.66',
13302             'File::Spec::Unix'      => '3.66',
13303             'File::Spec::VMS'       => '3.66',
13304             'File::Spec::Win32'     => '3.66',
13305             'Hash::Util'            => '0.22',
13306             'JSON::PP'              => '2.27400_02',
13307             'List::Util'            => '1.46_02',
13308             'List::Util::XS'        => '1.46_02',
13309             'Math::BigFloat'        => '1.999727',
13310             'Math::BigInt'          => '1.999727',
13311             'Math::BigInt::Calc'    => '1.999727',
13312             'Math::BigInt::CalcEmu' => '1.999727',
13313             'Math::Complex'         => '1.5901',
13314             'Module::CoreList'      => '5.20161120',
13315             'Module::CoreList::TieHashDelta'=> '5.20161120',
13316             'Module::CoreList::Utils'=> '5.20161120',
13317             'Net::Ping'             => '2.55',
13318             'Opcode'                => '1.39',
13319             'POSIX'                 => '1.75',
13320             'Pod::Man'              => '4.09',
13321             'Pod::ParseLink'        => '4.09',
13322             'Pod::Text'             => '4.09',
13323             'Pod::Text::Color'      => '4.09',
13324             'Pod::Text::Overstrike' => '4.09',
13325             'Pod::Text::Termcap'    => '4.09',
13326             'Scalar::Util'          => '1.46_02',
13327             'Storable'              => '2.59',
13328             'Sub::Util'             => '1.46_02',
13329             'Term::ANSIColor'       => '4.06',
13330             'Test2'                 => '1.302062',
13331             'Test2::API'            => '1.302062',
13332             'Test2::API::Breakage'  => '1.302062',
13333             'Test2::API::Context'   => '1.302062',
13334             'Test2::API::Instance'  => '1.302062',
13335             'Test2::API::Stack'     => '1.302062',
13336             'Test2::Event'          => '1.302062',
13337             'Test2::Event::Bail'    => '1.302062',
13338             'Test2::Event::Diag'    => '1.302062',
13339             'Test2::Event::Exception'=> '1.302062',
13340             'Test2::Event::Generic' => '1.302062',
13341             'Test2::Event::Info'    => '1.302062',
13342             'Test2::Event::Note'    => '1.302062',
13343             'Test2::Event::Ok'      => '1.302062',
13344             'Test2::Event::Plan'    => '1.302062',
13345             'Test2::Event::Skip'    => '1.302062',
13346             'Test2::Event::Subtest' => '1.302062',
13347             'Test2::Event::Waiting' => '1.302062',
13348             'Test2::Formatter'      => '1.302062',
13349             'Test2::Formatter::TAP' => '1.302062',
13350             'Test2::Hub'            => '1.302062',
13351             'Test2::Hub::Interceptor'=> '1.302062',
13352             'Test2::Hub::Interceptor::Terminator'=> '1.302062',
13353             'Test2::Hub::Subtest'   => '1.302062',
13354             'Test2::IPC'            => '1.302062',
13355             'Test2::IPC::Driver'    => '1.302062',
13356             'Test2::IPC::Driver::Files'=> '1.302062',
13357             'Test2::Util'           => '1.302062',
13358             'Test2::Util::ExternalMeta'=> '1.302062',
13359             'Test2::Util::HashBase' => '1.302062',
13360             'Test2::Util::Trace'    => '1.302062',
13361             'Test::Builder'         => '1.302062',
13362             'Test::Builder::Formatter'=> '1.302062',
13363             'Test::Builder::Module' => '1.302062',
13364             'Test::Builder::Tester' => '1.302062',
13365             'Test::Builder::Tester::Color'=> '1.302062',
13366             'Test::Builder::TodoDiag'=> '1.302062',
13367             'Test::More'            => '1.302062',
13368             'Test::Simple'          => '1.302062',
13369             'Test::Tester'          => '1.302062',
13370             'Test::Tester::Capture' => '1.302062',
13371             'Test::Tester::CaptureRunner'=> '1.302062',
13372             'Test::Tester::Delegate'=> '1.302062',
13373             'Test::use::ok'         => '1.302062',
13374             'Time::HiRes'           => '1.9740_03',
13375             'Unicode::Collate'      => '1.18',
13376             'Unicode::Collate::CJK::Big5'=> '1.18',
13377             'Unicode::Collate::CJK::GB2312'=> '1.18',
13378             'Unicode::Collate::CJK::JISX0208'=> '1.18',
13379             'Unicode::Collate::CJK::Korean'=> '1.18',
13380             'Unicode::Collate::CJK::Pinyin'=> '1.18',
13381             'Unicode::Collate::CJK::Stroke'=> '1.18',
13382             'Unicode::Collate::CJK::Zhuyin'=> '1.18',
13383             'Unicode::Collate::Locale'=> '1.18',
13384             'Unicode::UCD'          => '0.67',
13385             'XS::APItest'           => '0.87',
13386             'XS::Typemap'           => '0.15',
13387             'mro'                   => '1.20',
13388             'ok'                    => '1.302062',
13389             'threads'               => '2.10',
13390         },
13391         removed => {
13392         }
13393     },
13394     5.025008 => {
13395         delta_from => 5.025007,
13396         changed => {
13397             'Archive::Tar'          => '2.24',
13398             'Archive::Tar::Constant'=> '2.24',
13399             'Archive::Tar::File'    => '2.24',
13400             'B::Debug'              => '1.24',
13401             'B::Op_private'         => '5.025008',
13402             'Config'                => '5.025008',
13403             'Data::Dumper'          => '2.166',
13404             'Encode'                => '2.88',
13405             'Encode::Alias'         => '2.21',
13406             'Encode::CN::HZ'        => '2.08',
13407             'Encode::MIME::Header'  => '2.24',
13408             'Encode::MIME::Name'    => '1.02',
13409             'Encode::Unicode'       => '2.1501',
13410             'IO'                    => '1.38',
13411             'Locale::Codes'         => '3.42',
13412             'Locale::Codes::Constants'=> '3.42',
13413             'Locale::Codes::Country'=> '3.42',
13414             'Locale::Codes::Country_Codes'=> '3.42',
13415             'Locale::Codes::Country_Retired'=> '3.42',
13416             'Locale::Codes::Currency'=> '3.42',
13417             'Locale::Codes::Currency_Codes'=> '3.42',
13418             'Locale::Codes::Currency_Retired'=> '3.42',
13419             'Locale::Codes::LangExt'=> '3.42',
13420             'Locale::Codes::LangExt_Codes'=> '3.42',
13421             'Locale::Codes::LangExt_Retired'=> '3.42',
13422             'Locale::Codes::LangFam'=> '3.42',
13423             'Locale::Codes::LangFam_Codes'=> '3.42',
13424             'Locale::Codes::LangFam_Retired'=> '3.42',
13425             'Locale::Codes::LangVar'=> '3.42',
13426             'Locale::Codes::LangVar_Codes'=> '3.42',
13427             'Locale::Codes::LangVar_Retired'=> '3.42',
13428             'Locale::Codes::Language'=> '3.42',
13429             'Locale::Codes::Language_Codes'=> '3.42',
13430             'Locale::Codes::Language_Retired'=> '3.42',
13431             'Locale::Codes::Script' => '3.42',
13432             'Locale::Codes::Script_Codes'=> '3.42',
13433             'Locale::Codes::Script_Retired'=> '3.42',
13434             'Locale::Country'       => '3.42',
13435             'Locale::Currency'      => '3.42',
13436             'Locale::Language'      => '3.42',
13437             'Locale::Script'        => '3.42',
13438             'Math::BigFloat'        => '1.999806',
13439             'Math::BigFloat::Trace' => '0.47',
13440             'Math::BigInt'          => '1.999806',
13441             'Math::BigInt::Calc'    => '1.999806',
13442             'Math::BigInt::CalcEmu' => '1.999806',
13443             'Math::BigInt::FastCalc'=> '0.5005',
13444             'Math::BigInt::Lib'     => '1.999806',
13445             'Math::BigInt::Trace'   => '0.47',
13446             'Math::BigRat'          => '0.2611',
13447             'Module::CoreList'      => '5.20161220',
13448             'Module::CoreList::TieHashDelta'=> '5.20161220',
13449             'Module::CoreList::Utils'=> '5.20161220',
13450             'POSIX'                 => '1.76',
13451             'PerlIO::scalar'        => '0.25',
13452             'Pod::Simple'           => '3.35',
13453             'Pod::Simple::BlackBox' => '3.35',
13454             'Pod::Simple::Checker'  => '3.35',
13455             'Pod::Simple::Debug'    => '3.35',
13456             'Pod::Simple::DumpAsText'=> '3.35',
13457             'Pod::Simple::DumpAsXML'=> '3.35',
13458             'Pod::Simple::HTML'     => '3.35',
13459             'Pod::Simple::HTMLBatch'=> '3.35',
13460             'Pod::Simple::LinkSection'=> '3.35',
13461             'Pod::Simple::Methody'  => '3.35',
13462             'Pod::Simple::Progress' => '3.35',
13463             'Pod::Simple::PullParser'=> '3.35',
13464             'Pod::Simple::PullParserEndToken'=> '3.35',
13465             'Pod::Simple::PullParserStartToken'=> '3.35',
13466             'Pod::Simple::PullParserTextToken'=> '3.35',
13467             'Pod::Simple::PullParserToken'=> '3.35',
13468             'Pod::Simple::RTF'      => '3.35',
13469             'Pod::Simple::Search'   => '3.35',
13470             'Pod::Simple::SimpleTree'=> '3.35',
13471             'Pod::Simple::Text'     => '3.35',
13472             'Pod::Simple::TextContent'=> '3.35',
13473             'Pod::Simple::TiedOutFH'=> '3.35',
13474             'Pod::Simple::Transcode'=> '3.35',
13475             'Pod::Simple::TranscodeDumb'=> '3.35',
13476             'Pod::Simple::TranscodeSmart'=> '3.35',
13477             'Pod::Simple::XHTML'    => '3.35',
13478             'Pod::Simple::XMLOutStream'=> '3.35',
13479             'Test2'                 => '1.302073',
13480             'Test2::API'            => '1.302073',
13481             'Test2::API::Breakage'  => '1.302073',
13482             'Test2::API::Context'   => '1.302073',
13483             'Test2::API::Instance'  => '1.302073',
13484             'Test2::API::Stack'     => '1.302073',
13485             'Test2::Event'          => '1.302073',
13486             'Test2::Event::Bail'    => '1.302073',
13487             'Test2::Event::Diag'    => '1.302073',
13488             'Test2::Event::Encoding'=> '1.302073',
13489             'Test2::Event::Exception'=> '1.302073',
13490             'Test2::Event::Generic' => '1.302073',
13491             'Test2::Event::Info'    => '1.302073',
13492             'Test2::Event::Note'    => '1.302073',
13493             'Test2::Event::Ok'      => '1.302073',
13494             'Test2::Event::Plan'    => '1.302073',
13495             'Test2::Event::Skip'    => '1.302073',
13496             'Test2::Event::Subtest' => '1.302073',
13497             'Test2::Event::TAP::Version'=> '1.302073',
13498             'Test2::Event::Waiting' => '1.302073',
13499             'Test2::Formatter'      => '1.302073',
13500             'Test2::Formatter::TAP' => '1.302073',
13501             'Test2::Hub'            => '1.302073',
13502             'Test2::Hub::Interceptor'=> '1.302073',
13503             'Test2::Hub::Interceptor::Terminator'=> '1.302073',
13504             'Test2::Hub::Subtest'   => '1.302073',
13505             'Test2::IPC'            => '1.302073',
13506             'Test2::IPC::Driver'    => '1.302073',
13507             'Test2::IPC::Driver::Files'=> '1.302073',
13508             'Test2::Tools::Tiny'    => '1.302073',
13509             'Test2::Util'           => '1.302073',
13510             'Test2::Util::ExternalMeta'=> '1.302073',
13511             'Test2::Util::HashBase' => '0.002',
13512             'Test2::Util::Trace'    => '1.302073',
13513             'Test::Builder'         => '1.302073',
13514             'Test::Builder::Formatter'=> '1.302073',
13515             'Test::Builder::Module' => '1.302073',
13516             'Test::Builder::Tester' => '1.302073',
13517             'Test::Builder::Tester::Color'=> '1.302073',
13518             'Test::Builder::TodoDiag'=> '1.302073',
13519             'Test::More'            => '1.302073',
13520             'Test::Simple'          => '1.302073',
13521             'Test::Tester'          => '1.302073',
13522             'Test::Tester::Capture' => '1.302073',
13523             'Test::Tester::CaptureRunner'=> '1.302073',
13524             'Test::Tester::Delegate'=> '1.302073',
13525             'Test::use::ok'         => '1.302073',
13526             'Time::HiRes'           => '1.9741',
13527             'Time::Local'           => '1.25',
13528             'Unicode::Collate'      => '1.19',
13529             'Unicode::Collate::CJK::Big5'=> '1.19',
13530             'Unicode::Collate::CJK::GB2312'=> '1.19',
13531             'Unicode::Collate::CJK::JISX0208'=> '1.19',
13532             'Unicode::Collate::CJK::Korean'=> '1.19',
13533             'Unicode::Collate::CJK::Pinyin'=> '1.19',
13534             'Unicode::Collate::CJK::Stroke'=> '1.19',
13535             'Unicode::Collate::CJK::Zhuyin'=> '1.19',
13536             'Unicode::Collate::Locale'=> '1.19',
13537             'bigint'                => '0.47',
13538             'bignum'                => '0.47',
13539             'bigrat'                => '0.47',
13540             'encoding'              => '2.19',
13541             'ok'                    => '1.302073',
13542         },
13543         removed => {
13544         }
13545     },
13546     5.022003 => {
13547         delta_from => 5.022002,
13548         changed => {
13549             'App::Cpan'             => '1.63_01',
13550             'App::Prove'            => '3.35_01',
13551             'App::Prove::State'     => '3.35_01',
13552             'App::Prove::State::Result'=> '3.35_01',
13553             'App::Prove::State::Result::Test'=> '3.35_01',
13554             'Archive::Tar'          => '2.04_01',
13555             'Archive::Tar::Constant'=> '2.04_01',
13556             'Archive::Tar::File'    => '2.04_01',
13557             'B::Op_private'         => '5.022003',
13558             'CPAN'                  => '2.11_01',
13559             'Compress::Zlib'        => '2.068_001',
13560             'Config'                => '5.022003',
13561             'Cwd'                   => '3.56_02',
13562             'Digest'                => '1.17_01',
13563             'Digest::SHA'           => '5.95_01',
13564             'Encode'                => '2.72_01',
13565             'ExtUtils::Command'     => '1.20_01',
13566             'ExtUtils::Command::MM' => '7.04_02',
13567             'ExtUtils::Liblist'     => '7.04_02',
13568             'ExtUtils::Liblist::Kid'=> '7.04_02',
13569             'ExtUtils::MM'          => '7.04_02',
13570             'ExtUtils::MM_AIX'      => '7.04_02',
13571             'ExtUtils::MM_Any'      => '7.04_02',
13572             'ExtUtils::MM_BeOS'     => '7.04_02',
13573             'ExtUtils::MM_Cygwin'   => '7.04_02',
13574             'ExtUtils::MM_DOS'      => '7.04_02',
13575             'ExtUtils::MM_Darwin'   => '7.04_02',
13576             'ExtUtils::MM_MacOS'    => '7.04_02',
13577             'ExtUtils::MM_NW5'      => '7.04_02',
13578             'ExtUtils::MM_OS2'      => '7.04_02',
13579             'ExtUtils::MM_QNX'      => '7.04_02',
13580             'ExtUtils::MM_UWIN'     => '7.04_02',
13581             'ExtUtils::MM_Unix'     => '7.04_02',
13582             'ExtUtils::MM_VMS'      => '7.04_02',
13583             'ExtUtils::MM_VOS'      => '7.04_02',
13584             'ExtUtils::MM_Win32'    => '7.04_02',
13585             'ExtUtils::MM_Win95'    => '7.04_02',
13586             'ExtUtils::MY'          => '7.04_02',
13587             'ExtUtils::MakeMaker'   => '7.04_02',
13588             'ExtUtils::MakeMaker::Config'=> '7.04_02',
13589             'ExtUtils::Mkbootstrap' => '7.04_02',
13590             'ExtUtils::Mksymlists'  => '7.04_02',
13591             'ExtUtils::testlib'     => '7.04_02',
13592             'File::Fetch'           => '0.48_01',
13593             'File::Spec'            => '3.56_02',
13594             'File::Spec::Cygwin'    => '3.56_02',
13595             'File::Spec::Epoc'      => '3.56_02',
13596             'File::Spec::Functions' => '3.56_02',
13597             'File::Spec::Mac'       => '3.56_02',
13598             'File::Spec::OS2'       => '3.56_02',
13599             'File::Spec::Unix'      => '3.56_02',
13600             'File::Spec::VMS'       => '3.56_02',
13601             'File::Spec::Win32'     => '3.56_02',
13602             'HTTP::Tiny'            => '0.054_01',
13603             'I18N::LangTags::Detect'=> '1.05_01',
13604             'IO'                    => '1.35_01',
13605             'IO::Compress::Adapter::Bzip2'=> '2.068_001',
13606             'IO::Compress::Adapter::Deflate'=> '2.068_001',
13607             'IO::Compress::Adapter::Identity'=> '2.068_001',
13608             'IO::Compress::Base'    => '2.068_001',
13609             'IO::Compress::Base::Common'=> '2.068_001',
13610             'IO::Compress::Bzip2'   => '2.068_001',
13611             'IO::Compress::Deflate' => '2.068_001',
13612             'IO::Compress::Gzip'    => '2.068_001',
13613             'IO::Compress::Gzip::Constants'=> '2.068_001',
13614             'IO::Compress::RawDeflate'=> '2.068_001',
13615             'IO::Compress::Zip'     => '2.068_001',
13616             'IO::Compress::Zip::Constants'=> '2.068_001',
13617             'IO::Compress::Zlib::Constants'=> '2.068_001',
13618             'IO::Compress::Zlib::Extra'=> '2.068_001',
13619             'IO::Uncompress::Adapter::Bunzip2'=> '2.068_001',
13620             'IO::Uncompress::Adapter::Identity'=> '2.068_001',
13621             'IO::Uncompress::Adapter::Inflate'=> '2.068_001',
13622             'IO::Uncompress::AnyInflate'=> '2.068_001',
13623             'IO::Uncompress::AnyUncompress'=> '2.068_001',
13624             'IO::Uncompress::Base'  => '2.068_001',
13625             'IO::Uncompress::Bunzip2'=> '2.068_001',
13626             'IO::Uncompress::Gunzip'=> '2.068_001',
13627             'IO::Uncompress::Inflate'=> '2.068_001',
13628             'IO::Uncompress::RawInflate'=> '2.068_001',
13629             'IO::Uncompress::Unzip' => '2.068_001',
13630             'IPC::Cmd'              => '0.92_01',
13631             'JSON::PP'              => '2.27300_01',
13632             'Locale::Maketext'      => '1.26_01',
13633             'Locale::Maketext::Simple'=> '0.21_01',
13634             'Memoize'               => '1.03_01',
13635             'Module::CoreList'      => '5.20170114_22',
13636             'Module::CoreList::TieHashDelta'=> '5.20170114_22',
13637             'Module::CoreList::Utils'=> '5.20170114_22',
13638             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13639             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13640             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13641             'Net::Cmd'              => '3.05_01',
13642             'Net::Config'           => '3.05_01',
13643             'Net::Domain'           => '3.05_01',
13644             'Net::FTP'              => '3.05_01',
13645             'Net::FTP::A'           => '3.05_01',
13646             'Net::FTP::E'           => '3.05_01',
13647             'Net::FTP::I'           => '3.05_01',
13648             'Net::FTP::L'           => '3.05_01',
13649             'Net::FTP::dataconn'    => '3.05_01',
13650             'Net::NNTP'             => '3.05_01',
13651             'Net::Netrc'            => '3.05_01',
13652             'Net::POP3'             => '3.05_01',
13653             'Net::Ping'             => '2.43_01',
13654             'Net::SMTP'             => '3.05_01',
13655             'Net::Time'             => '3.05_01',
13656             'Parse::CPAN::Meta'     => '1.4414_001',
13657             'Pod::Html'             => '1.2201',
13658             'Pod::Perldoc'          => '3.25_01',
13659             'Storable'              => '2.53_02',
13660             'Sys::Syslog'           => '0.33_01',
13661             'TAP::Base'             => '3.35_01',
13662             'TAP::Formatter::Base'  => '3.35_01',
13663             'TAP::Formatter::Color' => '3.35_01',
13664             'TAP::Formatter::Console'=> '3.35_01',
13665             'TAP::Formatter::Console::ParallelSession'=> '3.35_01',
13666             'TAP::Formatter::Console::Session'=> '3.35_01',
13667             'TAP::Formatter::File'  => '3.35_01',
13668             'TAP::Formatter::File::Session'=> '3.35_01',
13669             'TAP::Formatter::Session'=> '3.35_01',
13670             'TAP::Harness'          => '3.35_01',
13671             'TAP::Harness::Env'     => '3.35_01',
13672             'TAP::Object'           => '3.35_01',
13673             'TAP::Parser'           => '3.35_01',
13674             'TAP::Parser::Aggregator'=> '3.35_01',
13675             'TAP::Parser::Grammar'  => '3.35_01',
13676             'TAP::Parser::Iterator' => '3.35_01',
13677             'TAP::Parser::Iterator::Array'=> '3.35_01',
13678             'TAP::Parser::Iterator::Process'=> '3.35_01',
13679             'TAP::Parser::Iterator::Stream'=> '3.35_01',
13680             'TAP::Parser::IteratorFactory'=> '3.35_01',
13681             'TAP::Parser::Multiplexer'=> '3.35_01',
13682             'TAP::Parser::Result'   => '3.35_01',
13683             'TAP::Parser::Result::Bailout'=> '3.35_01',
13684             'TAP::Parser::Result::Comment'=> '3.35_01',
13685             'TAP::Parser::Result::Plan'=> '3.35_01',
13686             'TAP::Parser::Result::Pragma'=> '3.35_01',
13687             'TAP::Parser::Result::Test'=> '3.35_01',
13688             'TAP::Parser::Result::Unknown'=> '3.35_01',
13689             'TAP::Parser::Result::Version'=> '3.35_01',
13690             'TAP::Parser::Result::YAML'=> '3.35_01',
13691             'TAP::Parser::ResultFactory'=> '3.35_01',
13692             'TAP::Parser::Scheduler'=> '3.35_01',
13693             'TAP::Parser::Scheduler::Job'=> '3.35_01',
13694             'TAP::Parser::Scheduler::Spinner'=> '3.35_01',
13695             'TAP::Parser::Source'   => '3.35_01',
13696             'TAP::Parser::SourceHandler'=> '3.35_01',
13697             'TAP::Parser::SourceHandler::Executable'=> '3.35_01',
13698             'TAP::Parser::SourceHandler::File'=> '3.35_01',
13699             'TAP::Parser::SourceHandler::Handle'=> '3.35_01',
13700             'TAP::Parser::SourceHandler::Perl'=> '3.35_01',
13701             'TAP::Parser::SourceHandler::RawTAP'=> '3.35_01',
13702             'TAP::Parser::YAMLish::Reader'=> '3.35_01',
13703             'TAP::Parser::YAMLish::Writer'=> '3.35_01',
13704             'Test'                  => '1.26_01',
13705             'Test::Harness'         => '3.35_01',
13706             'XSLoader'              => '0.20_01',
13707             'bigint'                => '0.39_01',
13708             'bignum'                => '0.39_01',
13709             'bigrat'                => '0.39_01',
13710         },
13711         removed => {
13712         }
13713     },
13714     5.024001 => {
13715         delta_from => 5.024000,
13716         changed => {
13717             'App::Cpan'             => '1.63_01',
13718             'App::Prove'            => '3.36_01',
13719             'App::Prove::State'     => '3.36_01',
13720             'App::Prove::State::Result'=> '3.36_01',
13721             'App::Prove::State::Result::Test'=> '3.36_01',
13722             'Archive::Tar'          => '2.04_01',
13723             'Archive::Tar::Constant'=> '2.04_01',
13724             'Archive::Tar::File'    => '2.04_01',
13725             'B::Op_private'         => '5.024001',
13726             'CPAN'                  => '2.11_01',
13727             'Compress::Zlib'        => '2.069_001',
13728             'Config'                => '5.024001',
13729             'Cwd'                   => '3.63_01',
13730             'Digest'                => '1.17_01',
13731             'Digest::SHA'           => '5.95_01',
13732             'Encode'                => '2.80_01',
13733             'ExtUtils::Command'     => '7.10_02',
13734             'ExtUtils::Command::MM' => '7.10_02',
13735             'ExtUtils::Liblist'     => '7.10_02',
13736             'ExtUtils::Liblist::Kid'=> '7.10_02',
13737             'ExtUtils::MM'          => '7.10_02',
13738             'ExtUtils::MM_AIX'      => '7.10_02',
13739             'ExtUtils::MM_Any'      => '7.10_02',
13740             'ExtUtils::MM_BeOS'     => '7.10_02',
13741             'ExtUtils::MM_Cygwin'   => '7.10_02',
13742             'ExtUtils::MM_DOS'      => '7.10_02',
13743             'ExtUtils::MM_Darwin'   => '7.10_02',
13744             'ExtUtils::MM_MacOS'    => '7.10_02',
13745             'ExtUtils::MM_NW5'      => '7.10_02',
13746             'ExtUtils::MM_OS2'      => '7.10_02',
13747             'ExtUtils::MM_QNX'      => '7.10_02',
13748             'ExtUtils::MM_UWIN'     => '7.10_02',
13749             'ExtUtils::MM_Unix'     => '7.10_02',
13750             'ExtUtils::MM_VMS'      => '7.10_02',
13751             'ExtUtils::MM_VOS'      => '7.10_02',
13752             'ExtUtils::MM_Win32'    => '7.10_02',
13753             'ExtUtils::MM_Win95'    => '7.10_02',
13754             'ExtUtils::MY'          => '7.10_02',
13755             'ExtUtils::MakeMaker'   => '7.10_02',
13756             'ExtUtils::MakeMaker::Config'=> '7.10_02',
13757             'ExtUtils::Mkbootstrap' => '7.10_02',
13758             'ExtUtils::Mksymlists'  => '7.10_02',
13759             'ExtUtils::testlib'     => '7.10_02',
13760             'File::Fetch'           => '0.48_01',
13761             'File::Spec'            => '3.63_01',
13762             'File::Spec::Cygwin'    => '3.63_01',
13763             'File::Spec::Epoc'      => '3.63_01',
13764             'File::Spec::Functions' => '3.63_01',
13765             'File::Spec::Mac'       => '3.63_01',
13766             'File::Spec::OS2'       => '3.63_01',
13767             'File::Spec::Unix'      => '3.63_01',
13768             'File::Spec::VMS'       => '3.63_01',
13769             'File::Spec::Win32'     => '3.63_01',
13770             'HTTP::Tiny'            => '0.056_001',
13771             'I18N::LangTags::Detect'=> '1.05_01',
13772             'IO'                    => '1.36_01',
13773             'IO::Compress::Adapter::Bzip2'=> '2.069_001',
13774             'IO::Compress::Adapter::Deflate'=> '2.069_001',
13775             'IO::Compress::Adapter::Identity'=> '2.069_001',
13776             'IO::Compress::Base'    => '2.069_001',
13777             'IO::Compress::Base::Common'=> '2.069_001',
13778             'IO::Compress::Bzip2'   => '2.069_001',
13779             'IO::Compress::Deflate' => '2.069_001',
13780             'IO::Compress::Gzip'    => '2.069_001',
13781             'IO::Compress::Gzip::Constants'=> '2.069_001',
13782             'IO::Compress::RawDeflate'=> '2.069_001',
13783             'IO::Compress::Zip'     => '2.069_001',
13784             'IO::Compress::Zip::Constants'=> '2.069_001',
13785             'IO::Compress::Zlib::Constants'=> '2.069_001',
13786             'IO::Compress::Zlib::Extra'=> '2.069_001',
13787             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_001',
13788             'IO::Uncompress::Adapter::Identity'=> '2.069_001',
13789             'IO::Uncompress::Adapter::Inflate'=> '2.069_001',
13790             'IO::Uncompress::AnyInflate'=> '2.069_001',
13791             'IO::Uncompress::AnyUncompress'=> '2.069_001',
13792             'IO::Uncompress::Base'  => '2.069_001',
13793             'IO::Uncompress::Bunzip2'=> '2.069_001',
13794             'IO::Uncompress::Gunzip'=> '2.069_001',
13795             'IO::Uncompress::Inflate'=> '2.069_001',
13796             'IO::Uncompress::RawInflate'=> '2.069_001',
13797             'IO::Uncompress::Unzip' => '2.069_001',
13798             'IPC::Cmd'              => '0.92_01',
13799             'JSON::PP'              => '2.27300_01',
13800             'Locale::Maketext'      => '1.26_01',
13801             'Locale::Maketext::Simple'=> '0.21_01',
13802             'Math::BigFloat::Trace' => '0.42_01',
13803             'Math::BigInt::Trace'   => '0.42_01',
13804             'Memoize'               => '1.03_01',
13805             'Module::CoreList'      => '5.20170114_24',
13806             'Module::CoreList::TieHashDelta'=> '5.20170114_24',
13807             'Module::CoreList::Utils'=> '5.20170114_24',
13808             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13809             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13810             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13811             'Net::Cmd'              => '3.08_01',
13812             'Net::Config'           => '3.08_01',
13813             'Net::Domain'           => '3.08_01',
13814             'Net::FTP'              => '3.08_01',
13815             'Net::FTP::A'           => '3.08_01',
13816             'Net::FTP::E'           => '3.08_01',
13817             'Net::FTP::I'           => '3.08_01',
13818             'Net::FTP::L'           => '3.08_01',
13819             'Net::FTP::dataconn'    => '3.08_01',
13820             'Net::NNTP'             => '3.08_01',
13821             'Net::Netrc'            => '3.08_01',
13822             'Net::POP3'             => '3.08_01',
13823             'Net::Ping'             => '2.43_01',
13824             'Net::SMTP'             => '3.08_01',
13825             'Net::Time'             => '3.08_01',
13826             'Parse::CPAN::Meta'     => '1.4417_001',
13827             'Pod::Html'             => '1.2201',
13828             'Pod::Perldoc'          => '3.25_03',
13829             'Storable'              => '2.56_01',
13830             'Sys::Syslog'           => '0.33_01',
13831             'TAP::Base'             => '3.36_01',
13832             'TAP::Formatter::Base'  => '3.36_01',
13833             'TAP::Formatter::Color' => '3.36_01',
13834             'TAP::Formatter::Console'=> '3.36_01',
13835             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13836             'TAP::Formatter::Console::Session'=> '3.36_01',
13837             'TAP::Formatter::File'  => '3.36_01',
13838             'TAP::Formatter::File::Session'=> '3.36_01',
13839             'TAP::Formatter::Session'=> '3.36_01',
13840             'TAP::Harness'          => '3.36_01',
13841             'TAP::Harness::Env'     => '3.36_01',
13842             'TAP::Object'           => '3.36_01',
13843             'TAP::Parser'           => '3.36_01',
13844             'TAP::Parser::Aggregator'=> '3.36_01',
13845             'TAP::Parser::Grammar'  => '3.36_01',
13846             'TAP::Parser::Iterator' => '3.36_01',
13847             'TAP::Parser::Iterator::Array'=> '3.36_01',
13848             'TAP::Parser::Iterator::Process'=> '3.36_01',
13849             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13850             'TAP::Parser::IteratorFactory'=> '3.36_01',
13851             'TAP::Parser::Multiplexer'=> '3.36_01',
13852             'TAP::Parser::Result'   => '3.36_01',
13853             'TAP::Parser::Result::Bailout'=> '3.36_01',
13854             'TAP::Parser::Result::Comment'=> '3.36_01',
13855             'TAP::Parser::Result::Plan'=> '3.36_01',
13856             'TAP::Parser::Result::Pragma'=> '3.36_01',
13857             'TAP::Parser::Result::Test'=> '3.36_01',
13858             'TAP::Parser::Result::Unknown'=> '3.36_01',
13859             'TAP::Parser::Result::Version'=> '3.36_01',
13860             'TAP::Parser::Result::YAML'=> '3.36_01',
13861             'TAP::Parser::ResultFactory'=> '3.36_01',
13862             'TAP::Parser::Scheduler'=> '3.36_01',
13863             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13864             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13865             'TAP::Parser::Source'   => '3.36_01',
13866             'TAP::Parser::SourceHandler'=> '3.36_01',
13867             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13868             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13869             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13870             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13871             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13872             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13873             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13874             'Test'                  => '1.28_01',
13875             'Test::Harness'         => '3.36_01',
13876             'XSLoader'              => '0.22',
13877             'bigint'                => '0.42_01',
13878             'bignum'                => '0.42_01',
13879             'bigrat'                => '0.42_01',
13880         },
13881         removed => {
13882         }
13883     },
13884     5.025009 => {
13885         delta_from => 5.025008,
13886         changed => {
13887             'App::Cpan'             => '1.66',
13888             'B::Deparse'            => '1.40',
13889             'B::Op_private'         => '5.025009',
13890             'B::Terse'              => '1.07',
13891             'B::Xref'               => '1.06',
13892             'CPAN'                  => '2.16',
13893             'CPAN::Bundle'          => '5.5002',
13894             'CPAN::Distribution'    => '2.16',
13895             'CPAN::Exception::RecursiveDependency'=> '5.5001',
13896             'CPAN::FTP'             => '5.5008',
13897             'CPAN::FirstTime'       => '5.5310',
13898             'CPAN::HandleConfig'    => '5.5008',
13899             'CPAN::Module'          => '5.5003',
13900             'Compress::Raw::Bzip2'  => '2.070',
13901             'Compress::Raw::Zlib'   => '2.070',
13902             'Config'                => '5.025009',
13903             'DB_File'               => '1.840',
13904             'Data::Dumper'          => '2.167',
13905             'Devel::SelfStubber'    => '1.06',
13906             'DynaLoader'            => '1.41',
13907             'Errno'                 => '1.28',
13908             'ExtUtils::Embed'       => '1.34',
13909             'File::Glob'            => '1.28',
13910             'I18N::LangTags'        => '0.42',
13911             'Module::CoreList'      => '5.20170120',
13912             'Module::CoreList::TieHashDelta'=> '5.20170120',
13913             'Module::CoreList::Utils'=> '5.20170120',
13914             'OS2::Process'          => '1.12',
13915             'PerlIO::scalar'        => '0.26',
13916             'Pod::Html'             => '1.2202',
13917             'Storable'              => '2.61',
13918             'Symbol'                => '1.08',
13919             'Term::ReadLine'        => '1.16',
13920             'Test'                  => '1.30',
13921             'Unicode::UCD'          => '0.68',
13922             'VMS::DCLsym'           => '1.08',
13923             'XS::APItest'           => '0.88',
13924             'XSLoader'              => '0.26',
13925             'attributes'            => '0.29',
13926             'diagnostics'           => '1.36',
13927             'feature'               => '1.46',
13928             'lib'                   => '0.64',
13929             'overload'              => '1.28',
13930             're'                    => '0.34',
13931             'threads'               => '2.12',
13932             'threads::shared'       => '1.54',
13933         },
13934         removed => {
13935         }
13936     },
13937     5.025010 => {
13938         delta_from => 5.025009,
13939         changed => {
13940             'B'                     => '1.68',
13941             'B::Op_private'         => '5.025010',
13942             'CPAN'                  => '2.17',
13943             'CPAN::Distribution'    => '2.17',
13944             'Config'                => '5.02501',
13945             'Getopt::Std'           => '1.12',
13946             'Module::CoreList'      => '5.20170220',
13947             'Module::CoreList::TieHashDelta'=> '5.20170220',
13948             'Module::CoreList::Utils'=> '5.20170220',
13949             'PerlIO'                => '1.10',
13950             'Storable'              => '2.62',
13951             'Thread::Queue'         => '3.12',
13952             'feature'               => '1.47',
13953             'open'                  => '1.11',
13954             'threads'               => '2.13',
13955         },
13956         removed => {
13957         }
13958     },
13959     5.025011 => {
13960         delta_from => 5.025010,
13961         changed => {
13962             'App::Prove'            => '3.38',
13963             'App::Prove::State'     => '3.38',
13964             'App::Prove::State::Result'=> '3.38',
13965             'App::Prove::State::Result::Test'=> '3.38',
13966             'B::Op_private'         => '5.025011',
13967             'Compress::Raw::Bzip2'  => '2.074',
13968             'Compress::Raw::Zlib'   => '2.074',
13969             'Compress::Zlib'        => '2.074',
13970             'Config'                => '5.025011',
13971             'Config::Perl::V'       => '0.28',
13972             'Cwd'                   => '3.67',
13973             'ExtUtils::ParseXS'     => '3.34',
13974             'ExtUtils::ParseXS::Constants'=> '3.34',
13975             'ExtUtils::ParseXS::CountLines'=> '3.34',
13976             'ExtUtils::ParseXS::Eval'=> '3.34',
13977             'ExtUtils::Typemaps'    => '3.34',
13978             'ExtUtils::Typemaps::Cmd'=> '3.34',
13979             'ExtUtils::Typemaps::InputMap'=> '3.34',
13980             'ExtUtils::Typemaps::OutputMap'=> '3.34',
13981             'ExtUtils::Typemaps::Type'=> '3.34',
13982             'File::Spec'            => '3.67',
13983             'File::Spec::AmigaOS'   => '3.67',
13984             'File::Spec::Cygwin'    => '3.67',
13985             'File::Spec::Epoc'      => '3.67',
13986             'File::Spec::Functions' => '3.67',
13987             'File::Spec::Mac'       => '3.67',
13988             'File::Spec::OS2'       => '3.67',
13989             'File::Spec::Unix'      => '3.67',
13990             'File::Spec::VMS'       => '3.67',
13991             'File::Spec::Win32'     => '3.67',
13992             'IO::Compress::Adapter::Bzip2'=> '2.074',
13993             'IO::Compress::Adapter::Deflate'=> '2.074',
13994             'IO::Compress::Adapter::Identity'=> '2.074',
13995             'IO::Compress::Base'    => '2.074',
13996             'IO::Compress::Base::Common'=> '2.074',
13997             'IO::Compress::Bzip2'   => '2.074',
13998             'IO::Compress::Deflate' => '2.074',
13999             'IO::Compress::Gzip'    => '2.074',
14000             'IO::Compress::Gzip::Constants'=> '2.074',
14001             'IO::Compress::RawDeflate'=> '2.074',
14002             'IO::Compress::Zip'     => '2.074',
14003             'IO::Compress::Zip::Constants'=> '2.074',
14004             'IO::Compress::Zlib::Constants'=> '2.074',
14005             'IO::Compress::Zlib::Extra'=> '2.074',
14006             'IO::Uncompress::Adapter::Bunzip2'=> '2.074',
14007             'IO::Uncompress::Adapter::Identity'=> '2.074',
14008             'IO::Uncompress::Adapter::Inflate'=> '2.074',
14009             'IO::Uncompress::AnyInflate'=> '2.074',
14010             'IO::Uncompress::AnyUncompress'=> '2.074',
14011             'IO::Uncompress::Base'  => '2.074',
14012             'IO::Uncompress::Bunzip2'=> '2.074',
14013             'IO::Uncompress::Gunzip'=> '2.074',
14014             'IO::Uncompress::Inflate'=> '2.074',
14015             'IO::Uncompress::RawInflate'=> '2.074',
14016             'IO::Uncompress::Unzip' => '2.074',
14017             'Module::CoreList'      => '5.20170320',
14018             'Module::CoreList::TieHashDelta'=> '5.20170230',
14019             'Module::CoreList::Utils'=> '5.20170320',
14020             'Pod::Perldoc'          => '3.28',
14021             'Pod::Perldoc::BaseTo'  => '3.28',
14022             'Pod::Perldoc::GetOptsOO'=> '3.28',
14023             'Pod::Perldoc::ToANSI'  => '3.28',
14024             'Pod::Perldoc::ToChecker'=> '3.28',
14025             'Pod::Perldoc::ToMan'   => '3.28',
14026             'Pod::Perldoc::ToNroff' => '3.28',
14027             'Pod::Perldoc::ToPod'   => '3.28',
14028             'Pod::Perldoc::ToRtf'   => '3.28',
14029             'Pod::Perldoc::ToTerm'  => '3.28',
14030             'Pod::Perldoc::ToText'  => '3.28',
14031             'Pod::Perldoc::ToTk'    => '3.28',
14032             'Pod::Perldoc::ToXml'   => '3.28',
14033             'TAP::Base'             => '3.38',
14034             'TAP::Formatter::Base'  => '3.38',
14035             'TAP::Formatter::Color' => '3.38',
14036             'TAP::Formatter::Console'=> '3.38',
14037             'TAP::Formatter::Console::ParallelSession'=> '3.38',
14038             'TAP::Formatter::Console::Session'=> '3.38',
14039             'TAP::Formatter::File'  => '3.38',
14040             'TAP::Formatter::File::Session'=> '3.38',
14041             'TAP::Formatter::Session'=> '3.38',
14042             'TAP::Harness'          => '3.38',
14043             'TAP::Harness::Env'     => '3.38',
14044             'TAP::Object'           => '3.38',
14045             'TAP::Parser'           => '3.38',
14046             'TAP::Parser::Aggregator'=> '3.38',
14047             'TAP::Parser::Grammar'  => '3.38',
14048             'TAP::Parser::Iterator' => '3.38',
14049             'TAP::Parser::Iterator::Array'=> '3.38',
14050             'TAP::Parser::Iterator::Process'=> '3.38',
14051             'TAP::Parser::Iterator::Stream'=> '3.38',
14052             'TAP::Parser::IteratorFactory'=> '3.38',
14053             'TAP::Parser::Multiplexer'=> '3.38',
14054             'TAP::Parser::Result'   => '3.38',
14055             'TAP::Parser::Result::Bailout'=> '3.38',
14056             'TAP::Parser::Result::Comment'=> '3.38',
14057             'TAP::Parser::Result::Plan'=> '3.38',
14058             'TAP::Parser::Result::Pragma'=> '3.38',
14059             'TAP::Parser::Result::Test'=> '3.38',
14060             'TAP::Parser::Result::Unknown'=> '3.38',
14061             'TAP::Parser::Result::Version'=> '3.38',
14062             'TAP::Parser::Result::YAML'=> '3.38',
14063             'TAP::Parser::ResultFactory'=> '3.38',
14064             'TAP::Parser::Scheduler'=> '3.38',
14065             'TAP::Parser::Scheduler::Job'=> '3.38',
14066             'TAP::Parser::Scheduler::Spinner'=> '3.38',
14067             'TAP::Parser::Source'   => '3.38',
14068             'TAP::Parser::SourceHandler'=> '3.38',
14069             'TAP::Parser::SourceHandler::Executable'=> '3.38',
14070             'TAP::Parser::SourceHandler::File'=> '3.38',
14071             'TAP::Parser::SourceHandler::Handle'=> '3.38',
14072             'TAP::Parser::SourceHandler::Perl'=> '3.38',
14073             'TAP::Parser::SourceHandler::RawTAP'=> '3.38',
14074             'TAP::Parser::YAMLish::Reader'=> '3.38',
14075             'TAP::Parser::YAMLish::Writer'=> '3.38',
14076             'Test::Harness'         => '3.38',
14077             'VMS::Stdio'            => '2.41',
14078             'threads'               => '2.15',
14079             'threads::shared'       => '1.55',
14080         },
14081         removed => {
14082         }
14083     },
14084     5.025012 => {
14085         delta_from => 5.025011,
14086         changed => {
14087             'B::Op_private'         => '5.025012',
14088             'CPAN'                  => '2.18',
14089             'CPAN::Bundle'          => '5.5003',
14090             'CPAN::Distribution'    => '2.18',
14091             'Config'                => '5.025012',
14092             'DynaLoader'            => '1.42',
14093             'Module::CoreList'      => '5.20170420',
14094             'Module::CoreList::TieHashDelta'=> '5.20170420',
14095             'Module::CoreList::Utils'=> '5.20170420',
14096             'Safe'                  => '2.40',
14097             'XSLoader'              => '0.27',
14098             'base'                  => '2.25',
14099             'threads::shared'       => '1.56',
14100         },
14101         removed => {
14102         }
14103     },
14104     5.026000 => {
14105         delta_from => 5.025012,
14106         changed => {
14107             'B::Op_private'         => '5.026000',
14108             'Config'                => '5.026',
14109             'Module::CoreList'      => '5.20170530',
14110             'Module::CoreList::TieHashDelta'=> '5.20170530',
14111             'Module::CoreList::Utils'=> '5.20170530',
14112         },
14113         removed => {
14114         }
14115     },
14116     5.027000 => {
14117         delta_from => 5.026000,
14118         changed => {
14119             'Attribute::Handlers'   => '1.00',
14120             'B::Concise'            => '1.000',
14121             'B::Deparse'            => '1.41',
14122             'B::Op_private'         => '5.027000',
14123             'Config'                => '5.027',
14124             'Module::CoreList'      => '5.20170531',
14125             'Module::CoreList::TieHashDelta'=> '5.20170531',
14126             'Module::CoreList::Utils'=> '5.20170531',
14127             'O'                     => '1.02',
14128             'attributes'            => '0.3',
14129             'feature'               => '1.48',
14130         },
14131         removed => {
14132         }
14133     },
14134     5.027001 => {
14135         delta_from => 5.027,
14136         changed => {
14137             'App::Prove'            => '3.39',
14138             'App::Prove::State'     => '3.39',
14139             'App::Prove::State::Result'=> '3.39',
14140             'App::Prove::State::Result::Test'=> '3.39',
14141             'Archive::Tar'          => '2.26',
14142             'Archive::Tar::Constant'=> '2.26',
14143             'Archive::Tar::File'    => '2.26',
14144             'B::Op_private'         => '5.027001',
14145             'B::Terse'              => '1.08',
14146             'Config'                => '5.027001',
14147             'Devel::PPPort'         => '3.36',
14148             'DirHandle'             => '1.05',
14149             'ExtUtils::Command'     => '7.30',
14150             'ExtUtils::Command::MM' => '7.30',
14151             'ExtUtils::Install'     => '2.14',
14152             'ExtUtils::Installed'   => '2.14',
14153             'ExtUtils::Liblist'     => '7.30',
14154             'ExtUtils::Liblist::Kid'=> '7.30',
14155             'ExtUtils::MM'          => '7.30',
14156             'ExtUtils::MM_AIX'      => '7.30',
14157             'ExtUtils::MM_Any'      => '7.30',
14158             'ExtUtils::MM_BeOS'     => '7.30',
14159             'ExtUtils::MM_Cygwin'   => '7.30',
14160             'ExtUtils::MM_DOS'      => '7.30',
14161             'ExtUtils::MM_Darwin'   => '7.30',
14162             'ExtUtils::MM_MacOS'    => '7.30',
14163             'ExtUtils::MM_NW5'      => '7.30',
14164             'ExtUtils::MM_OS2'      => '7.30',
14165             'ExtUtils::MM_QNX'      => '7.30',
14166             'ExtUtils::MM_UWIN'     => '7.30',
14167             'ExtUtils::MM_Unix'     => '7.30',
14168             'ExtUtils::MM_VMS'      => '7.30',
14169             'ExtUtils::MM_VOS'      => '7.30',
14170             'ExtUtils::MM_Win32'    => '7.30',
14171             'ExtUtils::MM_Win95'    => '7.30',
14172             'ExtUtils::MY'          => '7.30',
14173             'ExtUtils::MakeMaker'   => '7.30',
14174             'ExtUtils::MakeMaker::Config'=> '7.30',
14175             'ExtUtils::MakeMaker::Locale'=> '7.30',
14176             'ExtUtils::MakeMaker::version'=> '7.30',
14177             'ExtUtils::MakeMaker::version::regex'=> '7.30',
14178             'ExtUtils::Mkbootstrap' => '7.30',
14179             'ExtUtils::Mksymlists'  => '7.30',
14180             'ExtUtils::Packlist'    => '2.14',
14181             'ExtUtils::testlib'     => '7.30',
14182             'File::Path'            => '2.14',
14183             'Filter::Util::Call'    => '1.57',
14184             'GDBM_File'             => '1.16',
14185             'Getopt::Long'          => '2.5',
14186             'IO::Socket::IP'        => '0.39',
14187             'IPC::Cmd'              => '0.98',
14188             'JSON::PP'              => '2.94',
14189             'JSON::PP::Boolean'     => '2.94',
14190             'Locale::Codes'         => '3.52',
14191             'Locale::Codes::Constants'=> '3.52',
14192             'Locale::Codes::Country'=> '3.52',
14193             'Locale::Codes::Country_Codes'=> '3.52',
14194             'Locale::Codes::Country_Retired'=> '3.52',
14195             'Locale::Codes::Currency'=> '3.52',
14196             'Locale::Codes::Currency_Codes'=> '3.52',
14197             'Locale::Codes::Currency_Retired'=> '3.52',
14198             'Locale::Codes::LangExt'=> '3.52',
14199             'Locale::Codes::LangExt_Codes'=> '3.52',
14200             'Locale::Codes::LangExt_Retired'=> '3.52',
14201             'Locale::Codes::LangFam'=> '3.52',
14202             'Locale::Codes::LangFam_Codes'=> '3.52',
14203             'Locale::Codes::LangFam_Retired'=> '3.52',
14204             'Locale::Codes::LangVar'=> '3.52',
14205             'Locale::Codes::LangVar_Codes'=> '3.52',
14206             'Locale::Codes::LangVar_Retired'=> '3.52',
14207             'Locale::Codes::Language'=> '3.52',
14208             'Locale::Codes::Language_Codes'=> '3.52',
14209             'Locale::Codes::Language_Retired'=> '3.52',
14210             'Locale::Codes::Script' => '3.52',
14211             'Locale::Codes::Script_Codes'=> '3.52',
14212             'Locale::Codes::Script_Retired'=> '3.52',
14213             'Locale::Country'       => '3.52',
14214             'Locale::Currency'      => '3.52',
14215             'Locale::Language'      => '3.52',
14216             'Locale::Script'        => '3.52',
14217             'Module::CoreList'      => '5.20170621',
14218             'Module::CoreList::TieHashDelta'=> '5.20170621',
14219             'Module::CoreList::Utils'=> '5.20170621',
14220             'PerlIO::scalar'        => '0.27',
14221             'PerlIO::via'           => '0.17',
14222             'Storable'              => '2.63',
14223             'TAP::Base'             => '3.39',
14224             'TAP::Formatter::Base'  => '3.39',
14225             'TAP::Formatter::Color' => '3.39',
14226             'TAP::Formatter::Console'=> '3.39',
14227             'TAP::Formatter::Console::ParallelSession'=> '3.39',
14228             'TAP::Formatter::Console::Session'=> '3.39',
14229             'TAP::Formatter::File'  => '3.39',
14230             'TAP::Formatter::File::Session'=> '3.39',
14231             'TAP::Formatter::Session'=> '3.39',
14232             'TAP::Harness'          => '3.39',
14233             'TAP::Harness::Env'     => '3.39',
14234             'TAP::Object'           => '3.39',
14235             'TAP::Parser'           => '3.39',
14236             'TAP::Parser::Aggregator'=> '3.39',
14237             'TAP::Parser::Grammar'  => '3.39',
14238             'TAP::Parser::Iterator' => '3.39',
14239             'TAP::Parser::Iterator::Array'=> '3.39',
14240             'TAP::Parser::Iterator::Process'=> '3.39',
14241             'TAP::Parser::Iterator::Stream'=> '3.39',
14242             'TAP::Parser::IteratorFactory'=> '3.39',
14243             'TAP::Parser::Multiplexer'=> '3.39',
14244             'TAP::Parser::Result'   => '3.39',
14245             'TAP::Parser::Result::Bailout'=> '3.39',
14246             'TAP::Parser::Result::Comment'=> '3.39',
14247             'TAP::Parser::Result::Plan'=> '3.39',
14248             'TAP::Parser::Result::Pragma'=> '3.39',
14249             'TAP::Parser::Result::Test'=> '3.39',
14250             'TAP::Parser::Result::Unknown'=> '3.39',
14251             'TAP::Parser::Result::Version'=> '3.39',
14252             'TAP::Parser::Result::YAML'=> '3.39',
14253             'TAP::Parser::ResultFactory'=> '3.39',
14254             'TAP::Parser::Scheduler'=> '3.39',
14255             'TAP::Parser::Scheduler::Job'=> '3.39',
14256             'TAP::Parser::Scheduler::Spinner'=> '3.39',
14257             'TAP::Parser::Source'   => '3.39',
14258             'TAP::Parser::SourceHandler'=> '3.39',
14259             'TAP::Parser::SourceHandler::Executable'=> '3.39',
14260             'TAP::Parser::SourceHandler::File'=> '3.39',
14261             'TAP::Parser::SourceHandler::Handle'=> '3.39',
14262             'TAP::Parser::SourceHandler::Perl'=> '3.39',
14263             'TAP::Parser::SourceHandler::RawTAP'=> '3.39',
14264             'TAP::Parser::YAMLish::Reader'=> '3.39',
14265             'TAP::Parser::YAMLish::Writer'=> '3.39',
14266             'Test::Harness'         => '3.39',
14267             'XS::APItest'           => '0.89',
14268             '_charnames'            => '1.45',
14269             'charnames'             => '1.45',
14270             'if'                    => '0.0607',
14271             'mro'                   => '1.21',
14272             'threads'               => '2.16',
14273             'threads::shared'       => '1.57',
14274             'version'               => '0.9918',
14275             'version::regex'        => '0.9918',
14276         },
14277         removed => {
14278         }
14279     },
14280     5.022004 => {
14281         delta_from => 5.022003,
14282         changed => {
14283             'B::Op_private'         => '5.022004',
14284             'Config'                => '5.022004',
14285             'Module::CoreList'      => '5.20170715_22',
14286             'Module::CoreList::TieHashDelta'=> '5.20170715_22',
14287             'Module::CoreList::Utils'=> '5.20170715_22',
14288             'base'                  => '2.22_01',
14289         },
14290         removed => {
14291         }
14292     },
14293     5.024002 => {
14294         delta_from => 5.024001,
14295         changed => {
14296             'B::Op_private'         => '5.024002',
14297             'Config'                => '5.024002',
14298             'Module::CoreList'      => '5.20170715_24',
14299             'Module::CoreList::TieHashDelta'=> '5.20170715_24',
14300             'Module::CoreList::Utils'=> '5.20170715_24',
14301             'base'                  => '2.23_01',
14302         },
14303         removed => {
14304         }
14305     },
14306     5.027002 => {
14307         delta_from => 5.027001,
14308         changed => {
14309             'B::Op_private'         => '5.027002',
14310             'Carp'                  => '1.43',
14311             'Carp::Heavy'           => '1.43',
14312             'Config'                => '5.027002',
14313             'Cwd'                   => '3.68',
14314             'Encode'                => '2.92',
14315             'Encode::Alias'         => '2.23',
14316             'Encode::CN::HZ'        => '2.09',
14317             'Encode::Encoding'      => '2.08',
14318             'Encode::GSM0338'       => '2.07',
14319             'Encode::Guess'         => '2.07',
14320             'Encode::JP::JIS7'      => '2.07',
14321             'Encode::KR::2022_KR'   => '2.04',
14322             'Encode::MIME::Header'  => '2.27',
14323             'Encode::MIME::Header::ISO_2022_JP'=> '1.09',
14324             'Encode::Unicode'       => '2.16',
14325             'Encode::Unicode::UTF7' => '2.10',
14326             'ExtUtils::CBuilder'    => '0.280228',
14327             'ExtUtils::CBuilder::Base'=> '0.280228',
14328             'ExtUtils::CBuilder::Platform::Unix'=> '0.280228',
14329             'ExtUtils::CBuilder::Platform::VMS'=> '0.280228',
14330             'ExtUtils::CBuilder::Platform::Windows'=> '0.280228',
14331             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280228',
14332             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280228',
14333             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280228',
14334             'ExtUtils::CBuilder::Platform::aix'=> '0.280228',
14335             'ExtUtils::CBuilder::Platform::android'=> '0.280228',
14336             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280228',
14337             'ExtUtils::CBuilder::Platform::darwin'=> '0.280228',
14338             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280228',
14339             'ExtUtils::CBuilder::Platform::os2'=> '0.280228',
14340             'File::Glob'            => '1.29',
14341             'File::Spec'            => '3.68',
14342             'File::Spec::AmigaOS'   => '3.68',
14343             'File::Spec::Cygwin'    => '3.68',
14344             'File::Spec::Epoc'      => '3.68',
14345             'File::Spec::Functions' => '3.68',
14346             'File::Spec::Mac'       => '3.68',
14347             'File::Spec::OS2'       => '3.68',
14348             'File::Spec::Unix'      => '3.68',
14349             'File::Spec::VMS'       => '3.68',
14350             'File::Spec::Win32'     => '3.68',
14351             'List::Util'            => '1.48',
14352             'List::Util::XS'        => '1.48',
14353             'Math::BigRat'          => '0.2613',
14354             'Module::CoreList'      => '5.20170720',
14355             'Module::CoreList::TieHashDelta'=> '5.20170720',
14356             'Module::CoreList::Utils'=> '5.20170720',
14357             'Opcode'                => '1.40',
14358             'POSIX'                 => '1.77',
14359             'PerlIO::scalar'        => '0.29',
14360             'Scalar::Util'          => '1.48',
14361             'Sub::Util'             => '1.48',
14362             'Time::HiRes'           => '1.9743',
14363             'Time::Piece'           => '1.3201',
14364             'Time::Seconds'         => '1.3201',
14365             'Unicode'               => '10.0.0',
14366             'XS::APItest'           => '0.90',
14367             'arybase'               => '0.13',
14368             'encoding'              => '2.20',
14369             'feature'               => '1.49',
14370             're'                    => '0.35',
14371         },
14372         removed => {
14373         }
14374     },
14375     5.027003 => {
14376         delta_from => 5.027002,
14377         changed => {
14378             'B'                     => '1.69',
14379             'B::Concise'            => '1.001',
14380             'B::Debug'              => '1.25',
14381             'B::Deparse'            => '1.42',
14382             'B::Op_private'         => '5.027003',
14383             'Config'                => '5.027003',
14384             'Data::Dumper'          => '2.167_02',
14385             'Devel::Peek'           => '1.27',
14386             'ExtUtils::Constant'    => '0.24',
14387             'ExtUtils::Constant::Base'=> '0.06',
14388             'ExtUtils::Constant::ProxySubs'=> '0.09',
14389             'ExtUtils::Constant::Utils'=> '0.04',
14390             'ExtUtils::ParseXS'     => '3.35',
14391             'ExtUtils::ParseXS::Constants'=> '3.35',
14392             'ExtUtils::ParseXS::CountLines'=> '3.35',
14393             'ExtUtils::ParseXS::Eval'=> '3.35',
14394             'ExtUtils::ParseXS::Utilities'=> '3.35',
14395             'ExtUtils::Typemaps'    => '3.35',
14396             'ExtUtils::Typemaps::Cmd'=> '3.35',
14397             'ExtUtils::Typemaps::InputMap'=> '3.35',
14398             'ExtUtils::Typemaps::OutputMap'=> '3.35',
14399             'ExtUtils::Typemaps::Type'=> '3.35',
14400             'Filter::Simple'        => '0.94',
14401             'Module::CoreList'      => '5.20170821',
14402             'Module::CoreList::TieHashDelta'=> '5.20170821',
14403             'Module::CoreList::Utils'=> '5.20170821',
14404             'SelfLoader'            => '1.24',
14405             'Storable'              => '2.64',
14406             'XS::APItest'           => '0.91',
14407             'base'                  => '2.26',
14408             'threads'               => '2.17',
14409             'utf8'                  => '1.20',
14410         },
14411         removed => {
14412         }
14413     },
14414     5.027004 => {
14415         delta_from => 5.027003,
14416         changed => {
14417             'B::Op_private'         => '5.027004',
14418             'Config'                => '5.027004',
14419             'File::Glob'            => '1.30',
14420             'I18N::Langinfo'        => '0.14',
14421             'Module::CoreList'      => '5.20170920',
14422             'Module::CoreList::TieHashDelta'=> '5.20170920',
14423             'Module::CoreList::Utils'=> '5.20170920',
14424             'Term::ReadLine'        => '1.17',
14425             'VMS::Stdio'            => '2.42',
14426             'XS::APItest'           => '0.92',
14427             'attributes'            => '0.31',
14428             'sort'                  => '2.03',
14429             'threads'               => '2.18',
14430         },
14431         removed => {
14432         }
14433     },
14434     5.024003 => {
14435         delta_from => 5.024002,
14436         changed => {
14437             'B::Op_private'         => '5.024003',
14438             'Config'                => '5.024003',
14439             'Module::CoreList'      => '5.20170922_24',
14440             'Module::CoreList::TieHashDelta'=> '5.20170922_24',
14441             'Module::CoreList::Utils'=> '5.20170922_24',
14442             'POSIX'                 => '1.65_01',
14443             'Time::HiRes'           => '1.9741',
14444         },
14445         removed => {
14446         }
14447     },
14448     5.026001 => {
14449         delta_from => 5.026000,
14450         changed => {
14451             'B::Op_private'         => '5.026001',
14452             'Config'                => '5.026001',
14453             'Module::CoreList'      => '5.20170922_26',
14454             'Module::CoreList::TieHashDelta'=> '5.20170922_26',
14455             'Module::CoreList::Utils'=> '5.20170922_26',
14456             '_charnames'            => '1.45',
14457             'base'                  => '2.26',
14458             'charnames'             => '1.45',
14459         },
14460         removed => {
14461         }
14462     },
14463     5.027005 => {
14464         delta_from => 5.027004,
14465         changed => {
14466             'B'                     => '1.70',
14467             'B::Concise'            => '1.002',
14468             'B::Deparse'            => '1.43',
14469             'B::Op_private'         => '5.027005',
14470             'B::Xref'               => '1.07',
14471             'Config'                => '5.027005',
14472             'Config::Perl::V'       => '0.29',
14473             'Digest::SHA'           => '5.98',
14474             'Encode'                => '2.93',
14475             'Encode::CN::HZ'        => '2.10',
14476             'Encode::JP::JIS7'      => '2.08',
14477             'Encode::MIME::Header'  => '2.28',
14478             'Encode::MIME::Name'    => '1.03',
14479             'File::Fetch'           => '0.54',
14480             'File::Path'            => '2.15',
14481             'List::Util'            => '1.49',
14482             'List::Util::XS'        => '1.49',
14483             'Locale::Codes'         => '3.54',
14484             'Locale::Codes::Constants'=> '3.54',
14485             'Locale::Codes::Country'=> '3.54',
14486             'Locale::Codes::Country_Codes'=> '3.54',
14487             'Locale::Codes::Country_Retired'=> '3.54',
14488             'Locale::Codes::Currency'=> '3.54',
14489             'Locale::Codes::Currency_Codes'=> '3.54',
14490             'Locale::Codes::Currency_Retired'=> '3.54',
14491             'Locale::Codes::LangExt'=> '3.54',
14492             'Locale::Codes::LangExt_Codes'=> '3.54',
14493             'Locale::Codes::LangExt_Retired'=> '3.54',
14494             'Locale::Codes::LangFam'=> '3.54',
14495             'Locale::Codes::LangFam_Codes'=> '3.54',
14496             'Locale::Codes::LangFam_Retired'=> '3.54',
14497             'Locale::Codes::LangVar'=> '3.54',
14498             'Locale::Codes::LangVar_Codes'=> '3.54',
14499             'Locale::Codes::LangVar_Retired'=> '3.54',
14500             'Locale::Codes::Language'=> '3.54',
14501             'Locale::Codes::Language_Codes'=> '3.54',
14502             'Locale::Codes::Language_Retired'=> '3.54',
14503             'Locale::Codes::Script' => '3.54',
14504             'Locale::Codes::Script_Codes'=> '3.54',
14505             'Locale::Codes::Script_Retired'=> '3.54',
14506             'Locale::Country'       => '3.54',
14507             'Locale::Currency'      => '3.54',
14508             'Locale::Language'      => '3.54',
14509             'Locale::Script'        => '3.54',
14510             'Math::BigFloat'        => '1.999811',
14511             'Math::BigInt'          => '1.999811',
14512             'Math::BigInt::Calc'    => '1.999811',
14513             'Math::BigInt::CalcEmu' => '1.999811',
14514             'Math::BigInt::FastCalc'=> '0.5006',
14515             'Math::BigInt::Lib'     => '1.999811',
14516             'Module::CoreList'      => '5.20171020',
14517             'Module::CoreList::TieHashDelta'=> '5.20171020',
14518             'Module::CoreList::Utils'=> '5.20171020',
14519             'NEXT'                  => '0.67_01',
14520             'POSIX'                 => '1.78',
14521             'Pod::Perldoc'          => '3.2801',
14522             'Scalar::Util'          => '1.49',
14523             'Sub::Util'             => '1.49',
14524             'Sys::Hostname'         => '1.21',
14525             'Test2'                 => '1.302103',
14526             'Test2::API'            => '1.302103',
14527             'Test2::API::Breakage'  => '1.302103',
14528             'Test2::API::Context'   => '1.302103',
14529             'Test2::API::Instance'  => '1.302103',
14530             'Test2::API::Stack'     => '1.302103',
14531             'Test2::Event'          => '1.302103',
14532             'Test2::Event::Bail'    => '1.302103',
14533             'Test2::Event::Diag'    => '1.302103',
14534             'Test2::Event::Encoding'=> '1.302103',
14535             'Test2::Event::Exception'=> '1.302103',
14536             'Test2::Event::Fail'    => '1.302103',
14537             'Test2::Event::Generic' => '1.302103',
14538             'Test2::Event::Note'    => '1.302103',
14539             'Test2::Event::Ok'      => '1.302103',
14540             'Test2::Event::Pass'    => '1.302103',
14541             'Test2::Event::Plan'    => '1.302103',
14542             'Test2::Event::Skip'    => '1.302103',
14543             'Test2::Event::Subtest' => '1.302103',
14544             'Test2::Event::TAP::Version'=> '1.302103',
14545             'Test2::Event::Waiting' => '1.302103',
14546             'Test2::EventFacet'     => '1.302103',
14547             'Test2::EventFacet::About'=> '1.302103',
14548             'Test2::EventFacet::Amnesty'=> '1.302103',
14549             'Test2::EventFacet::Assert'=> '1.302103',
14550             'Test2::EventFacet::Control'=> '1.302103',
14551             'Test2::EventFacet::Error'=> '1.302103',
14552             'Test2::EventFacet::Info'=> '1.302103',
14553             'Test2::EventFacet::Meta'=> '1.302103',
14554             'Test2::EventFacet::Parent'=> '1.302103',
14555             'Test2::EventFacet::Plan'=> '1.302103',
14556             'Test2::EventFacet::Trace'=> '1.302103',
14557             'Test2::Formatter'      => '1.302103',
14558             'Test2::Formatter::TAP' => '1.302103',
14559             'Test2::Hub'            => '1.302103',
14560             'Test2::Hub::Interceptor'=> '1.302103',
14561             'Test2::Hub::Interceptor::Terminator'=> '1.302103',
14562             'Test2::Hub::Subtest'   => '1.302103',
14563             'Test2::IPC'            => '1.302103',
14564             'Test2::IPC::Driver'    => '1.302103',
14565             'Test2::IPC::Driver::Files'=> '1.302103',
14566             'Test2::Tools::Tiny'    => '1.302103',
14567             'Test2::Util'           => '1.302103',
14568             'Test2::Util::ExternalMeta'=> '1.302103',
14569             'Test2::Util::Facets2Legacy'=> '1.302103',
14570             'Test2::Util::HashBase' => '0.005',
14571             'Test2::Util::Trace'    => '1.302103',
14572             'Test::Builder'         => '1.302103',
14573             'Test::Builder::Formatter'=> '1.302103',
14574             'Test::Builder::IO::Scalar'=> '2.114',
14575             'Test::Builder::Module' => '1.302103',
14576             'Test::Builder::Tester' => '1.302103',
14577             'Test::Builder::Tester::Color'=> '1.302103',
14578             'Test::Builder::TodoDiag'=> '1.302103',
14579             'Test::More'            => '1.302103',
14580             'Test::Simple'          => '1.302103',
14581             'Test::Tester'          => '1.302103',
14582             'Test::Tester::Capture' => '1.302103',
14583             'Test::Tester::CaptureRunner'=> '1.302103',
14584             'Test::Tester::Delegate'=> '1.302103',
14585             'Test::use::ok'         => '1.302103',
14586             'Time::HiRes'           => '1.9746',
14587             'Time::Piece'           => '1.3202',
14588             'Time::Seconds'         => '1.3202',
14589             'arybase'               => '0.14',
14590             'encoding'              => '2.21',
14591             'ok'                    => '1.302103',
14592         },
14593         removed => {
14594             'Test2::Event::Info'    => 1,
14595         }
14596     },
14597     5.027006 => {
14598         delta_from => 5.027005,
14599         changed => {
14600             'B::Op_private'         => '5.027006',
14601             'Config'                => '5.027006',
14602             'Module::CoreList'      => '5.20171120',
14603             'Module::CoreList::TieHashDelta'=> '5.20171120',
14604             'Module::CoreList::Utils'=> '5.20171120',
14605         },
14606         removed => {
14607         }
14608     },
14609 );
14610
14611 sub is_core
14612 {
14613     shift if defined $_[1] and $_[1] =~ /^\w/ and _looks_like_invocant $_[0];
14614     my $module = shift;
14615     my $module_version = @_ > 0 ? shift : undef;
14616     my $perl_version   = @_ > 0 ? shift : $];
14617
14618     my $first_release = first_release($module);
14619
14620     return 0 if !defined($first_release) || $first_release > $perl_version;
14621
14622     my $final_release = removed_from($module);
14623
14624     return 0 if defined($final_release) && $perl_version >= $final_release;
14625
14626     # If a minimum version of the module was specified:
14627     # Step through all perl releases ($prn)
14628     # so we can find what version of the module
14629     # was included in the specified version of perl.
14630     # On the way if we pass the required module version, we can
14631     # short-circuit and return true
14632     if (defined($module_version)) {
14633         # The Perl releases aren't a linear sequence, but a tree. We need to build the path
14634         # of releases from 5 to the specified release, and follow the module's version(s)
14635         # along that path.
14636         my @releases = ($perl_version);
14637         my $rel = $perl_version;
14638         while (defined($rel)) {
14639             # XXX: This line is a sign of failure. -- rjbs, 2015-04-15
14640             my $this_delta = $delta{$rel} || $delta{ sprintf '%0.6f', $rel };
14641             $rel = $this_delta->{delta_from};
14642             unshift(@releases, $rel) if defined($rel);
14643         }
14644         RELEASE:
14645         foreach my $prn (@releases) {
14646             next RELEASE if $prn < $first_release;
14647             last RELEASE if $prn > $perl_version;
14648             next unless defined(my $next_module_version
14649                                    = $delta{$prn}->{changed}->{$module});
14650             return 1 if version->parse($next_module_version) >= version->parse($module_version);
14651         }
14652         return 0;
14653     }
14654
14655     return 1 if !defined($final_release);
14656
14657     return $perl_version <= $final_release;
14658 }
14659
14660 %version = _undelta(\%delta);
14661
14662 %deprecated = (
14663     5.011    => {
14664         changed => { map { $_ => 1 } qw/
14665             Class::ISA
14666             Pod::Plainer
14667             Shell
14668             Switch
14669         /},
14670     },
14671     5.011001 => { delta_from => 5.011 },
14672     5.011002 => { delta_from => 5.011001 },
14673     5.011003 => { delta_from => 5.011002 },
14674     5.011004 => { delta_from => 5.011003 },
14675     5.011005 => { delta_from => 5.011004 },
14676
14677     5.012    => { delta_from => 5.011005 },
14678     5.012001 => { delta_from => 5.012 },
14679     5.012002 => { delta_from => 5.012001 },
14680     5.012003 => { delta_from => 5.012002 },
14681     5.012004 => { delta_from => 5.012003 },
14682     5.012005 => { delta_from => 5.012004 },
14683
14684     5.013    => { delta_from => 5.012005 },
14685     5.013001 => {
14686         delta_from => 5.013,
14687         removed => { map { $_ => 1 } qw/
14688             Class::ISA
14689             Pod::Plainer
14690             Switch
14691         /},
14692     },
14693     5.013002 => { delta_from => 5.013001 },
14694     5.013003 => { delta_from => 5.013002 },
14695     5.013004 => { delta_from => 5.013003 },
14696     5.013005 => { delta_from => 5.013004 },
14697     5.013006 => { delta_from => 5.013005 },
14698     5.013007 => { delta_from => 5.013006 },
14699     5.013008 => { delta_from => 5.013007 },
14700     5.013009 => { delta_from => 5.013008 },
14701     5.01301  => { delta_from => 5.013009 },
14702     5.013011 => { delta_from => 5.01301  },
14703
14704     5.014    => { delta_from => 5.013011 },
14705     5.014001 => { delta_from => 5.014    },
14706     5.014002 => { delta_from => 5.014001 },
14707     5.014003 => { delta_from => 5.014002 },
14708     5.014004 => { delta_from => 5.014003 },
14709
14710     5.015    => {
14711         delta_from => 5.014004,
14712         removed => { Shell => 1 },
14713     },
14714     5.015001 => { delta_from => 5.015    },
14715     5.015002 => { delta_from => 5.015001 },
14716     5.015003 => { delta_from => 5.015002 },
14717     5.015004 => { delta_from => 5.015003 },
14718     5.015005 => { delta_from => 5.015004 },
14719     5.015006 => { delta_from => 5.015005 },
14720     5.015007 => { delta_from => 5.015006 },
14721     5.015008 => { delta_from => 5.015007 },
14722     5.015009 => { delta_from => 5.015008 },
14723
14724     5.016    => { delta_from => 5.015009 },
14725     5.016001 => { delta_from => 5.016    },
14726     5.016002 => { delta_from => 5.016001 },
14727     5.016003 => { delta_from => 5.016002 },
14728
14729     5.017    => { delta_from => 5.016003 },
14730     5.017001 => { delta_from => 5.017    },
14731     5.017002 => { delta_from => 5.017001 },
14732     5.017003 => { delta_from => 5.017002 },
14733     5.017004 => { delta_from => 5.017003 },
14734     5.017005 => { delta_from => 5.017004 },
14735     5.017006 => { delta_from => 5.017005 },
14736     5.017007 => { delta_from => 5.017006 },
14737     5.017008 => {
14738         delta_from => 5.017007,
14739         changed => { 'Pod::LaTeX' => 1 },
14740     },
14741     5.017009 => {
14742         delta_from => 5.017008,
14743         changed => { map { $_ => 1 } qw/
14744             Archive::Extract
14745             B::Lint
14746             B::Lint::Debug
14747             CPANPLUS
14748             CPANPLUS::Backend
14749             CPANPLUS::Backend::RV
14750             CPANPLUS::Config
14751             CPANPLUS::Config::HomeEnv
14752             CPANPLUS::Configure
14753             CPANPLUS::Configure::Setup
14754             CPANPLUS::Dist
14755             CPANPLUS::Dist::Autobundle
14756             CPANPLUS::Dist::Base
14757             CPANPLUS::Dist::Build
14758             CPANPLUS::Dist::Build::Constants
14759             CPANPLUS::Dist::MM
14760             CPANPLUS::Dist::Sample
14761             CPANPLUS::Error
14762             CPANPLUS::Internals
14763             CPANPLUS::Internals::Constants
14764             CPANPLUS::Internals::Constants::Report
14765             CPANPLUS::Internals::Extract
14766             CPANPLUS::Internals::Fetch
14767             CPANPLUS::Internals::Report
14768             CPANPLUS::Internals::Search
14769             CPANPLUS::Internals::Source
14770             CPANPLUS::Internals::Source::Memory
14771             CPANPLUS::Internals::Source::SQLite
14772             CPANPLUS::Internals::Source::SQLite::Tie
14773             CPANPLUS::Internals::Utils
14774             CPANPLUS::Internals::Utils::Autoflush
14775             CPANPLUS::Module
14776             CPANPLUS::Module::Author
14777             CPANPLUS::Module::Author::Fake
14778             CPANPLUS::Module::Checksums
14779             CPANPLUS::Module::Fake
14780             CPANPLUS::Module::Signature
14781             CPANPLUS::Selfupdate
14782             CPANPLUS::Shell
14783             CPANPLUS::Shell::Classic
14784             CPANPLUS::Shell::Default
14785             CPANPLUS::Shell::Default::Plugins::CustomSource
14786             CPANPLUS::Shell::Default::Plugins::Remote
14787             CPANPLUS::Shell::Default::Plugins::Source
14788             Devel::InnerPackage
14789             File::CheckTree
14790             Log::Message
14791             Log::Message::Config
14792             Log::Message::Handlers
14793             Log::Message::Item
14794             Log::Message::Simple
14795             Module::Pluggable
14796             Module::Pluggable::Object
14797             Object::Accessor
14798             Term::UI
14799             Term::UI::History
14800             Text::Soundex
14801         /},
14802     },
14803     5.01701  => { delta_from => 5.017009 },
14804     5.017011 => { delta_from => 5.01701  },
14805
14806     5.018    => { delta_from => 5.017011 },
14807     5.018001 => {
14808         delta_from => 5.018,
14809         changed => {
14810         },
14811         removed => {
14812         }
14813     },
14814     5.018002 => {
14815         delta_from => 5.018001,
14816         changed => {
14817         },
14818         removed => {
14819         }
14820     },
14821     5.018003 => {
14822         delta_from => 5.018,
14823         changed => {
14824         },
14825         removed => {
14826         }
14827     },
14828     5.018004 => {
14829         delta_from => 5.018,
14830         changed => {
14831         },
14832         removed => {
14833         }
14834     },
14835
14836     5.019    => {
14837         delta_from => 5.018,
14838         changed => { 'Module::Build' => 1 },
14839         removed => { map { $_ => 1 } qw/
14840             Archive::Extract
14841             B::Lint
14842             B::Lint::Debug
14843             CPANPLUS
14844             CPANPLUS::Backend
14845             CPANPLUS::Backend::RV
14846             CPANPLUS::Config
14847             CPANPLUS::Config::HomeEnv
14848             CPANPLUS::Configure
14849             CPANPLUS::Configure::Setup
14850             CPANPLUS::Dist
14851             CPANPLUS::Dist::Autobundle
14852             CPANPLUS::Dist::Base
14853             CPANPLUS::Dist::Build
14854             CPANPLUS::Dist::Build::Constants
14855             CPANPLUS::Dist::MM
14856             CPANPLUS::Dist::Sample
14857             CPANPLUS::Error
14858             CPANPLUS::Internals
14859             CPANPLUS::Internals::Constants
14860             CPANPLUS::Internals::Constants::Report
14861             CPANPLUS::Internals::Extract
14862             CPANPLUS::Internals::Fetch
14863             CPANPLUS::Internals::Report
14864             CPANPLUS::Internals::Search
14865             CPANPLUS::Internals::Source
14866             CPANPLUS::Internals::Source::Memory
14867             CPANPLUS::Internals::Source::SQLite
14868             CPANPLUS::Internals::Source::SQLite::Tie
14869             CPANPLUS::Internals::Utils
14870             CPANPLUS::Internals::Utils::Autoflush
14871             CPANPLUS::Module
14872             CPANPLUS::Module::Author
14873             CPANPLUS::Module::Author::Fake
14874             CPANPLUS::Module::Checksums
14875             CPANPLUS::Module::Fake
14876             CPANPLUS::Module::Signature
14877             CPANPLUS::Selfupdate
14878             CPANPLUS::Shell
14879             CPANPLUS::Shell::Classic
14880             CPANPLUS::Shell::Default
14881             CPANPLUS::Shell::Default::Plugins::CustomSource
14882             CPANPLUS::Shell::Default::Plugins::Remote
14883             CPANPLUS::Shell::Default::Plugins::Source
14884             Devel::InnerPackage
14885             File::CheckTree
14886             Log::Message
14887             Log::Message::Config
14888             Log::Message::Handlers
14889             Log::Message::Item
14890             Log::Message::Simple
14891             Module::Pluggable
14892             Module::Pluggable::Object
14893             Object::Accessor
14894             Pod::LaTeX
14895             Term::UI
14896             Term::UI::History
14897             Text::Soundex
14898         /}
14899     },
14900     5.019001 => {
14901         delta_from => 5.019,
14902         changed => {
14903         },
14904         removed => {
14905         }
14906     },
14907     5.019002 => {
14908         delta_from => 5.019001,
14909         changed => {
14910         },
14911         removed => {
14912         }
14913     },
14914     5.019003 => {
14915         delta_from => 5.019002,
14916         changed => {
14917         },
14918         removed => {
14919         }
14920     },
14921     5.019004 => {
14922         delta_from => 5.019003,
14923         changed => {
14924             'Module::Build::Base'   => '1',
14925             'Module::Build::Compat' => '1',
14926             'Module::Build::Config' => '1',
14927             'Module::Build::ConfigData'=> '1',
14928             'Module::Build::Cookbook'=> '1',
14929             'Module::Build::Dumper' => '1',
14930             'Module::Build::ModuleInfo'=> '1',
14931             'Module::Build::Notes'  => '1',
14932             'Module::Build::PPMMaker'=> '1',
14933             'Module::Build::Platform::Default'=> '1',
14934             'Module::Build::Platform::MacOS'=> '1',
14935             'Module::Build::Platform::Unix'=> '1',
14936             'Module::Build::Platform::VMS'=> '1',
14937             'Module::Build::Platform::VOS'=> '1',
14938             'Module::Build::Platform::Windows'=> '1',
14939             'Module::Build::Platform::aix'=> '1',
14940             'Module::Build::Platform::cygwin'=> '1',
14941             'Module::Build::Platform::darwin'=> '1',
14942             'Module::Build::Platform::os2'=> '1',
14943             'Module::Build::PodParser'=> '1',
14944             'Module::Build::Version'=> '1',
14945             'Module::Build::YAML'   => '1',
14946             'inc::latest'           => '1',
14947         },
14948         removed => {
14949         }
14950     },
14951     5.019005 => {
14952         delta_from => 5.019004,
14953         changed => {
14954         },
14955         removed => {
14956         }
14957     },
14958     5.019006 => {
14959         delta_from => 5.019005,
14960         changed => {
14961             'Package::Constants'    => '1',
14962         },
14963         removed => {
14964         }
14965     },
14966     5.019007 => {
14967         delta_from => 5.019006,
14968         changed => {
14969             'CGI'                   => '1',
14970             'CGI::Apache'           => '1',
14971             'CGI::Carp'             => '1',
14972             'CGI::Cookie'           => '1',
14973             'CGI::Fast'             => '1',
14974             'CGI::Pretty'           => '1',
14975             'CGI::Push'             => '1',
14976             'CGI::Switch'           => '1',
14977             'CGI::Util'             => '1',
14978         },
14979         removed => {
14980         }
14981     },
14982     5.019008 => {
14983         delta_from => 5.019007,
14984         changed => {
14985         },
14986         removed => {
14987         }
14988     },
14989     5.019009 => {
14990         delta_from => 5.019008,
14991         changed => {
14992         },
14993         removed => {
14994         }
14995     },
14996     5.01901 => {
14997         delta_from => 5.019009,
14998         changed => {
14999         },
15000         removed => {
15001         }
15002     },
15003     5.019011 => {
15004         delta_from => 5.019010,
15005         changed => {
15006         },
15007         removed => {
15008         }
15009     },
15010     5.020000 => {
15011         delta_from => 5.019011,
15012         changed => {
15013         },
15014         removed => {
15015         }
15016     },
15017     5.021000 => {
15018         delta_from => 5.020000,
15019         changed => {
15020         },
15021         removed => {
15022             'CGI'                   => 1,
15023             'CGI::Apache'           => 1,
15024             'CGI::Carp'             => 1,
15025             'CGI::Cookie'           => 1,
15026             'CGI::Fast'             => 1,
15027             'CGI::Pretty'           => 1,
15028             'CGI::Push'             => 1,
15029             'CGI::Switch'           => 1,
15030             'CGI::Util'             => 1,
15031             'Module::Build'         => 1,
15032             'Module::Build::Base'   => 1,
15033             'Module::Build::Compat' => 1,
15034             'Module::Build::Config' => 1,
15035             'Module::Build::ConfigData'=> 1,
15036             'Module::Build::Cookbook'=> 1,
15037             'Module::Build::Dumper' => 1,
15038             'Module::Build::ModuleInfo'=> 1,
15039             'Module::Build::Notes'  => 1,
15040             'Module::Build::PPMMaker'=> 1,
15041             'Module::Build::Platform::Default'=> 1,
15042             'Module::Build::Platform::MacOS'=> 1,
15043             'Module::Build::Platform::Unix'=> 1,
15044             'Module::Build::Platform::VMS'=> 1,
15045             'Module::Build::Platform::VOS'=> 1,
15046             'Module::Build::Platform::Windows'=> 1,
15047             'Module::Build::Platform::aix'=> 1,
15048             'Module::Build::Platform::cygwin'=> 1,
15049             'Module::Build::Platform::darwin'=> 1,
15050             'Module::Build::Platform::os2'=> 1,
15051             'Module::Build::PodParser'=> 1,
15052             'Module::Build::Version'=> 1,
15053             'Module::Build::YAML'   => 1,
15054             'Package::Constants'    => 1,
15055             'inc::latest'           => 1,
15056         }
15057     },
15058     5.021001 => {
15059         delta_from => 5.021000,
15060         changed => {
15061         },
15062         removed => {
15063         }
15064     },
15065     5.021002 => {
15066         delta_from => 5.021001,
15067         changed => {
15068         },
15069         removed => {
15070         }
15071     },
15072     5.021003 => {
15073         delta_from => 5.021002,
15074         changed => {
15075         },
15076         removed => {
15077         }
15078     },
15079     5.020001 => {
15080         delta_from => 5.020000,
15081         changed => {
15082         },
15083         removed => {
15084         }
15085     },
15086     5.021004 => {
15087         delta_from => 5.021003,
15088         changed => {
15089         },
15090         removed => {
15091         }
15092     },
15093     5.021005 => {
15094         delta_from => 5.021004,
15095         changed => {
15096         },
15097         removed => {
15098         }
15099     },
15100     5.021006 => {
15101         delta_from => 5.021005,
15102         changed => {
15103         },
15104         removed => {
15105         }
15106     },
15107     5.021007 => {
15108         delta_from => 5.021006,
15109         changed => {
15110         },
15111         removed => {
15112         }
15113     },
15114     5.021008 => {
15115         delta_from => 5.021007,
15116         changed => {
15117         },
15118         removed => {
15119         }
15120     },
15121     5.020002 => {
15122         delta_from => 5.020001,
15123         changed => {
15124         },
15125         removed => {
15126         }
15127     },
15128     5.021009 => {
15129         delta_from => 5.021008,
15130         changed => {
15131         },
15132         removed => {
15133         }
15134     },
15135     5.021010 => {
15136         delta_from => 5.021009,
15137         changed => {
15138         },
15139         removed => {
15140         }
15141     },
15142     5.021011 => {
15143         delta_from => 5.02101,
15144         changed => {
15145         },
15146         removed => {
15147         }
15148     },
15149     5.022000 => {
15150         delta_from => 5.021011,
15151         changed => {
15152         },
15153         removed => {
15154         }
15155     },
15156     5.023000 => {
15157         delta_from => 5.022000,
15158         changed => {
15159         },
15160         removed => {
15161         }
15162     },
15163     5.023001 => {
15164         delta_from => 5.023000,
15165         changed => {
15166         },
15167         removed => {
15168         }
15169     },
15170     5.023002 => {
15171         delta_from => 5.023001,
15172         changed => {
15173         },
15174         removed => {
15175         }
15176     },
15177     5.020003 => {
15178         delta_from => 5.020002,
15179         changed => {
15180         },
15181         removed => {
15182         }
15183     },
15184     5.023003 => {
15185         delta_from => 5.023002,
15186         changed => {
15187         },
15188         removed => {
15189         }
15190     },
15191     5.023004 => {
15192         delta_from => 5.023003,
15193         changed => {
15194         },
15195         removed => {
15196         }
15197     },
15198     5.023005 => {
15199         delta_from => 5.023004,
15200         changed => {
15201         },
15202         removed => {
15203         }
15204     },
15205     5.022001 => {
15206         delta_from => 5.022,
15207         changed => {
15208         },
15209         removed => {
15210         }
15211     },
15212     5.023006 => {
15213         delta_from => 5.023005,
15214         changed => {
15215         },
15216         removed => {
15217         }
15218     },
15219     5.023007 => {
15220         delta_from => 5.023006,
15221         changed => {
15222         },
15223         removed => {
15224         }
15225     },
15226     5.023008 => {
15227         delta_from => 5.023007,
15228         changed => {
15229         },
15230         removed => {
15231         }
15232     },
15233     5.023009 => {
15234         delta_from => 5.023008,
15235         changed => {
15236         },
15237         removed => {
15238         }
15239     },
15240     5.022002 => {
15241         delta_from => 5.022001,
15242         changed => {
15243         },
15244         removed => {
15245         }
15246     },
15247     5.024000 => {
15248         delta_from => 5.023009,
15249         changed => {
15250         },
15251         removed => {
15252         }
15253     },
15254     5.025000 => {
15255         delta_from => 5.024,
15256         changed => {
15257         },
15258         removed => {
15259         }
15260     },
15261     5.025001 => {
15262         delta_from => 5.025,
15263         changed => {
15264         },
15265         removed => {
15266         }
15267     },
15268     5.025002 => {
15269         delta_from => 5.025001,
15270         changed => {
15271         },
15272         removed => {
15273         }
15274     },
15275     5.025003 => {
15276         delta_from => 5.025002,
15277         changed => {
15278         },
15279         removed => {
15280         }
15281     },
15282     5.025004 => {
15283         delta_from => 5.025003,
15284         changed => {
15285         },
15286         removed => {
15287         }
15288     },
15289     5.025005 => {
15290         delta_from => 5.025004,
15291         changed => {
15292         },
15293         removed => {
15294         }
15295     },
15296     5.025006 => {
15297         delta_from => 5.025005,
15298         changed => {
15299         },
15300         removed => {
15301         }
15302     },
15303     5.025007 => {
15304         delta_from => 5.025006,
15305         changed => {
15306         },
15307         removed => {
15308         }
15309     },
15310     5.025008 => {
15311         delta_from => 5.025007,
15312         changed => {
15313         },
15314         removed => {
15315         }
15316     },
15317     5.022003 => {
15318         delta_from => 5.022002,
15319         changed => {
15320         },
15321         removed => {
15322         }
15323     },
15324     5.024001 => {
15325         delta_from => 5.024000,
15326         changed => {
15327         },
15328         removed => {
15329         }
15330     },
15331     5.025009 => {
15332         delta_from => 5.025008,
15333         changed => {
15334         },
15335         removed => {
15336         }
15337     },
15338     5.025010 => {
15339         delta_from => 5.025009,
15340         changed => {
15341         },
15342         removed => {
15343         }
15344     },
15345     5.025011 => {
15346         delta_from => 5.025010,
15347         changed => {
15348         },
15349         removed => {
15350         }
15351     },
15352     5.025012 => {
15353         delta_from => 5.025011,
15354         changed => {
15355         },
15356         removed => {
15357         }
15358     },
15359     5.026000 => {
15360         delta_from => 5.025012,
15361         changed => {
15362         },
15363         removed => {
15364         }
15365     },
15366     5.027000 => {
15367         delta_from => 5.026,
15368         changed => {
15369         },
15370         removed => {
15371         }
15372     },
15373     5.027001 => {
15374         delta_from => 5.027,
15375         changed => {
15376         },
15377         removed => {
15378         }
15379     },
15380     5.022004 => {
15381         delta_from => 5.022003,
15382         changed => {
15383         },
15384         removed => {
15385         }
15386     },
15387     5.024002 => {
15388         delta_from => 5.024001,
15389         changed => {
15390         },
15391         removed => {
15392         }
15393     },
15394     5.027002 => {
15395         delta_from => 5.027001,
15396         changed => {
15397         },
15398         removed => {
15399         }
15400     },
15401     5.027003 => {
15402         delta_from => 5.027002,
15403         changed => {
15404             'B::Debug'              => '1',
15405         },
15406         removed => {
15407         }
15408     },
15409     5.027004 => {
15410         delta_from => 5.027003,
15411         changed => {
15412         },
15413         removed => {
15414         }
15415     },
15416     5.024003 => {
15417         delta_from => 5.024002,
15418         changed => {
15419         },
15420         removed => {
15421         }
15422     },
15423     5.026001 => {
15424         delta_from => 5.026000,
15425         changed => {
15426         },
15427         removed => {
15428         }
15429     },
15430     5.027005 => {
15431         delta_from => 5.027004,
15432         changed => {
15433         },
15434         removed => {
15435         }
15436     },
15437     5.027006 => {
15438         delta_from => 5.027005,
15439         changed => {
15440         },
15441         removed => {
15442         }
15443     },
15444 );
15445
15446 %deprecated = _undelta(\%deprecated);
15447
15448 %upstream = (
15449     'App::Cpan'             => 'cpan',
15450     'App::Prove'            => 'cpan',
15451     'App::Prove::State'     => 'cpan',
15452     'App::Prove::State::Result'=> 'cpan',
15453     'App::Prove::State::Result::Test'=> 'cpan',
15454     'Archive::Tar'          => 'cpan',
15455     'Archive::Tar::Constant'=> 'cpan',
15456     'Archive::Tar::File'    => 'cpan',
15457     'AutoLoader'            => 'cpan',
15458     'AutoSplit'             => 'cpan',
15459     'B::Debug'              => 'cpan',
15460     'CPAN'                  => 'cpan',
15461     'CPAN::Author'          => 'cpan',
15462     'CPAN::Bundle'          => 'cpan',
15463     'CPAN::CacheMgr'        => 'cpan',
15464     'CPAN::Complete'        => 'cpan',
15465     'CPAN::Debug'           => 'cpan',
15466     'CPAN::DeferredCode'    => 'cpan',
15467     'CPAN::Distribution'    => 'cpan',
15468     'CPAN::Distroprefs'     => 'cpan',
15469     'CPAN::Distrostatus'    => 'cpan',
15470     'CPAN::Exception::RecursiveDependency'=> 'cpan',
15471     'CPAN::Exception::blocked_urllist'=> 'cpan',
15472     'CPAN::Exception::yaml_not_installed'=> 'cpan',
15473     'CPAN::Exception::yaml_process_error'=> 'cpan',
15474     'CPAN::FTP'             => 'cpan',
15475     'CPAN::FTP::netrc'      => 'cpan',
15476     'CPAN::FirstTime'       => 'cpan',
15477     'CPAN::HTTP::Client'    => 'cpan',
15478     'CPAN::HTTP::Credentials'=> 'cpan',
15479     'CPAN::HandleConfig'    => 'cpan',
15480     'CPAN::Index'           => 'cpan',
15481     'CPAN::InfoObj'         => 'cpan',
15482     'CPAN::Kwalify'         => 'cpan',
15483     'CPAN::LWP::UserAgent'  => 'cpan',
15484     'CPAN::Meta'            => 'cpan',
15485     'CPAN::Meta::Converter' => 'cpan',
15486     'CPAN::Meta::Feature'   => 'cpan',
15487     'CPAN::Meta::History'   => 'cpan',
15488     'CPAN::Meta::Merge'     => 'cpan',
15489     'CPAN::Meta::Prereqs'   => 'cpan',
15490     'CPAN::Meta::Requirements'=> 'cpan',
15491     'CPAN::Meta::Spec'      => 'cpan',
15492     'CPAN::Meta::Validator' => 'cpan',
15493     'CPAN::Meta::YAML'      => 'cpan',
15494     'CPAN::Mirrors'         => 'cpan',
15495     'CPAN::Module'          => 'cpan',
15496     'CPAN::Nox'             => 'cpan',
15497     'CPAN::Plugin'          => 'cpan',
15498     'CPAN::Plugin::Specfile'=> 'cpan',
15499     'CPAN::Prompt'          => 'cpan',
15500     'CPAN::Queue'           => 'cpan',
15501     'CPAN::Shell'           => 'cpan',
15502     'CPAN::Tarzip'          => 'cpan',
15503     'CPAN::URL'             => 'cpan',
15504     'CPAN::Version'         => 'cpan',
15505     'Compress::Raw::Bzip2'  => 'cpan',
15506     'Compress::Raw::Zlib'   => 'cpan',
15507     'Compress::Zlib'        => 'cpan',
15508     'Config::Perl::V'       => 'cpan',
15509     'DB_File'               => 'cpan',
15510     'Devel::PPPort'         => 'cpan',
15511     'Digest'                => 'cpan',
15512     'Digest::MD5'           => 'cpan',
15513     'Digest::SHA'           => 'cpan',
15514     'Digest::base'          => 'cpan',
15515     'Digest::file'          => 'cpan',
15516     'Encode'                => 'cpan',
15517     'Encode::Alias'         => 'cpan',
15518     'Encode::Byte'          => 'cpan',
15519     'Encode::CJKConstants'  => 'cpan',
15520     'Encode::CN'            => 'cpan',
15521     'Encode::CN::HZ'        => 'cpan',
15522     'Encode::Config'        => 'cpan',
15523     'Encode::EBCDIC'        => 'cpan',
15524     'Encode::Encoder'       => 'cpan',
15525     'Encode::Encoding'      => 'cpan',
15526     'Encode::GSM0338'       => 'cpan',
15527     'Encode::Guess'         => 'cpan',
15528     'Encode::JP'            => 'cpan',
15529     'Encode::JP::H2Z'       => 'cpan',
15530     'Encode::JP::JIS7'      => 'cpan',
15531     'Encode::KR'            => 'cpan',
15532     'Encode::KR::2022_KR'   => 'cpan',
15533     'Encode::MIME::Header'  => 'cpan',
15534     'Encode::MIME::Header::ISO_2022_JP'=> 'cpan',
15535     'Encode::MIME::Name'    => 'cpan',
15536     'Encode::Symbol'        => 'cpan',
15537     'Encode::TW'            => 'cpan',
15538     'Encode::Unicode'       => 'cpan',
15539     'Encode::Unicode::UTF7' => 'cpan',
15540     'ExtUtils::Command'     => 'cpan',
15541     'ExtUtils::Command::MM' => 'cpan',
15542     'ExtUtils::Constant'    => 'cpan',
15543     'ExtUtils::Constant::Base'=> 'cpan',
15544     'ExtUtils::Constant::ProxySubs'=> 'cpan',
15545     'ExtUtils::Constant::Utils'=> 'cpan',
15546     'ExtUtils::Constant::XS'=> 'cpan',
15547     'ExtUtils::Install'     => 'cpan',
15548     'ExtUtils::Installed'   => 'cpan',
15549     'ExtUtils::Liblist'     => 'cpan',
15550     'ExtUtils::Liblist::Kid'=> 'cpan',
15551     'ExtUtils::MM'          => 'cpan',
15552     'ExtUtils::MM_AIX'      => 'cpan',
15553     'ExtUtils::MM_Any'      => 'cpan',
15554     'ExtUtils::MM_BeOS'     => 'cpan',
15555     'ExtUtils::MM_Cygwin'   => 'cpan',
15556     'ExtUtils::MM_DOS'      => 'cpan',
15557     'ExtUtils::MM_Darwin'   => 'cpan',
15558     'ExtUtils::MM_MacOS'    => 'cpan',
15559     'ExtUtils::MM_NW5'      => 'cpan',
15560     'ExtUtils::MM_OS2'      => 'cpan',
15561     'ExtUtils::MM_QNX'      => 'cpan',
15562     'ExtUtils::MM_UWIN'     => 'cpan',
15563     'ExtUtils::MM_Unix'     => 'cpan',
15564     'ExtUtils::MM_VMS'      => 'cpan',
15565     'ExtUtils::MM_VOS'      => 'cpan',
15566     'ExtUtils::MM_Win32'    => 'cpan',
15567     'ExtUtils::MM_Win95'    => 'cpan',
15568     'ExtUtils::MY'          => 'cpan',
15569     'ExtUtils::MakeMaker'   => 'cpan',
15570     'ExtUtils::MakeMaker::Config'=> 'cpan',
15571     'ExtUtils::MakeMaker::Locale'=> 'cpan',
15572     'ExtUtils::MakeMaker::version'=> 'cpan',
15573     'ExtUtils::MakeMaker::version::regex'=> 'cpan',
15574     'ExtUtils::Manifest'    => 'cpan',
15575     'ExtUtils::Mkbootstrap' => 'cpan',
15576     'ExtUtils::Mksymlists'  => 'cpan',
15577     'ExtUtils::Packlist'    => 'cpan',
15578     'ExtUtils::testlib'     => 'cpan',
15579     'Fatal'                 => 'cpan',
15580     'File::Fetch'           => 'cpan',
15581     'File::GlobMapper'      => 'cpan',
15582     'File::Path'            => 'cpan',
15583     'File::Temp'            => 'cpan',
15584     'Filter::Util::Call'    => 'cpan',
15585     'Getopt::Long'          => 'cpan',
15586     'HTTP::Tiny'            => 'cpan',
15587     'IO::Compress::Adapter::Bzip2'=> 'cpan',
15588     'IO::Compress::Adapter::Deflate'=> 'cpan',
15589     'IO::Compress::Adapter::Identity'=> 'cpan',
15590     'IO::Compress::Base'    => 'cpan',
15591     'IO::Compress::Base::Common'=> 'cpan',
15592     'IO::Compress::Bzip2'   => 'cpan',
15593     'IO::Compress::Deflate' => 'cpan',
15594     'IO::Compress::Gzip'    => 'cpan',
15595     'IO::Compress::Gzip::Constants'=> 'cpan',
15596     'IO::Compress::RawDeflate'=> 'cpan',
15597     'IO::Compress::Zip'     => 'cpan',
15598     'IO::Compress::Zip::Constants'=> 'cpan',
15599     'IO::Compress::Zlib::Constants'=> 'cpan',
15600     'IO::Compress::Zlib::Extra'=> 'cpan',
15601     'IO::Socket::IP'        => 'cpan',
15602     'IO::Uncompress::Adapter::Bunzip2'=> 'cpan',
15603     'IO::Uncompress::Adapter::Identity'=> 'cpan',
15604     'IO::Uncompress::Adapter::Inflate'=> 'cpan',
15605     'IO::Uncompress::AnyInflate'=> 'cpan',
15606     'IO::Uncompress::AnyUncompress'=> 'cpan',
15607     'IO::Uncompress::Base'  => 'cpan',
15608     'IO::Uncompress::Bunzip2'=> 'cpan',
15609     'IO::Uncompress::Gunzip'=> 'cpan',
15610     'IO::Uncompress::Inflate'=> 'cpan',
15611     'IO::Uncompress::RawInflate'=> 'cpan',
15612     'IO::Uncompress::Unzip' => 'cpan',
15613     'IO::Zlib'              => 'cpan',
15614     'IPC::Cmd'              => 'cpan',
15615     'IPC::Msg'              => 'cpan',
15616     'IPC::Semaphore'        => 'cpan',
15617     'IPC::SharedMem'        => 'cpan',
15618     'IPC::SysV'             => 'cpan',
15619     'JSON::PP'              => 'cpan',
15620     'JSON::PP::Boolean'     => 'cpan',
15621     'List::Util'            => 'cpan',
15622     'List::Util::XS'        => 'cpan',
15623     'Locale::Codes'         => 'cpan',
15624     'Locale::Codes::Constants'=> 'cpan',
15625     'Locale::Codes::Country'=> 'cpan',
15626     'Locale::Codes::Country_Codes'=> 'cpan',
15627     'Locale::Codes::Country_Retired'=> 'cpan',
15628     'Locale::Codes::Currency'=> 'cpan',
15629     'Locale::Codes::Currency_Codes'=> 'cpan',
15630     'Locale::Codes::Currency_Retired'=> 'cpan',
15631     'Locale::Codes::LangExt'=> 'cpan',
15632     'Locale::Codes::LangExt_Codes'=> 'cpan',
15633     'Locale::Codes::LangExt_Retired'=> 'cpan',
15634     'Locale::Codes::LangFam'=> 'cpan',
15635     'Locale::Codes::LangFam_Codes'=> 'cpan',
15636     'Locale::Codes::LangFam_Retired'=> 'cpan',
15637     'Locale::Codes::LangVar'=> 'cpan',
15638     'Locale::Codes::LangVar_Codes'=> 'cpan',
15639     'Locale::Codes::LangVar_Retired'=> 'cpan',
15640     'Locale::Codes::Language'=> 'cpan',
15641     'Locale::Codes::Language_Codes'=> 'cpan',
15642     'Locale::Codes::Language_Retired'=> 'cpan',
15643     'Locale::Codes::Script' => 'cpan',
15644     'Locale::Codes::Script_Codes'=> 'cpan',
15645     'Locale::Codes::Script_Retired'=> 'cpan',
15646     'Locale::Country'       => 'cpan',
15647     'Locale::Currency'      => 'cpan',
15648     'Locale::Language'      => 'cpan',
15649     'Locale::Maketext::Simple'=> 'cpan',
15650     'Locale::Script'        => 'cpan',
15651     'MIME::Base64'          => 'cpan',
15652     'MIME::QuotedPrint'     => 'cpan',
15653     'Math::BigFloat'        => 'cpan',
15654     'Math::BigFloat::Trace' => 'cpan',
15655     'Math::BigInt'          => 'cpan',
15656     'Math::BigInt::Calc'    => 'cpan',
15657     'Math::BigInt::CalcEmu' => 'cpan',
15658     'Math::BigInt::FastCalc'=> 'cpan',
15659     'Math::BigInt::Lib'     => 'cpan',
15660     'Math::BigInt::Trace'   => 'cpan',
15661     'Math::BigRat'          => 'cpan',
15662     'Math::Complex'         => 'cpan',
15663     'Math::Trig'            => 'cpan',
15664     'Memoize'               => 'cpan',
15665     'Memoize::AnyDBM_File'  => 'cpan',
15666     'Memoize::Expire'       => 'cpan',
15667     'Memoize::ExpireFile'   => 'cpan',
15668     'Memoize::ExpireTest'   => 'cpan',
15669     'Memoize::NDBM_File'    => 'cpan',
15670     'Memoize::SDBM_File'    => 'cpan',
15671     'Memoize::Storable'     => 'cpan',
15672     'Module::Load'          => 'cpan',
15673     'Module::Load::Conditional'=> 'cpan',
15674     'Module::Loaded'        => 'cpan',
15675     'Module::Metadata'      => 'cpan',
15676     'NEXT'                  => 'cpan',
15677     'Net::Cmd'              => 'cpan',
15678     'Net::Config'           => 'cpan',
15679     'Net::Domain'           => 'cpan',
15680     'Net::FTP'              => 'cpan',
15681     'Net::FTP::A'           => 'cpan',
15682     'Net::FTP::E'           => 'cpan',
15683     'Net::FTP::I'           => 'cpan',
15684     'Net::FTP::L'           => 'cpan',
15685     'Net::FTP::dataconn'    => 'cpan',
15686     'Net::NNTP'             => 'cpan',
15687     'Net::Netrc'            => 'cpan',
15688     'Net::POP3'             => 'cpan',
15689     'Net::SMTP'             => 'cpan',
15690     'Net::Time'             => 'cpan',
15691     'Params::Check'         => 'cpan',
15692     'Parse::CPAN::Meta'     => 'cpan',
15693     'Perl::OSType'          => 'cpan',
15694     'PerlIO::via::QuotedPrint'=> 'cpan',
15695     'Pod::Checker'          => 'cpan',
15696     'Pod::Escapes'          => 'cpan',
15697     'Pod::Find'             => 'cpan',
15698     'Pod::InputObjects'     => 'cpan',
15699     'Pod::Man'              => 'cpan',
15700     'Pod::ParseLink'        => 'cpan',
15701     'Pod::ParseUtils'       => 'cpan',
15702     'Pod::Parser'           => 'cpan',
15703     'Pod::Perldoc'          => 'cpan',
15704     'Pod::Perldoc::BaseTo'  => 'cpan',
15705     'Pod::Perldoc::GetOptsOO'=> 'cpan',
15706     'Pod::Perldoc::ToANSI'  => 'cpan',
15707     'Pod::Perldoc::ToChecker'=> 'cpan',
15708     'Pod::Perldoc::ToMan'   => 'cpan',
15709     'Pod::Perldoc::ToNroff' => 'cpan',
15710     'Pod::Perldoc::ToPod'   => 'cpan',
15711     'Pod::Perldoc::ToRtf'   => 'cpan',
15712     'Pod::Perldoc::ToTerm'  => 'cpan',
15713     'Pod::Perldoc::ToText'  => 'cpan',
15714     'Pod::Perldoc::ToTk'    => 'cpan',
15715     'Pod::Perldoc::ToXml'   => 'cpan',
15716     'Pod::PlainText'        => 'cpan',
15717     'Pod::Select'           => 'cpan',
15718     'Pod::Simple'           => 'cpan',
15719     'Pod::Simple::BlackBox' => 'cpan',
15720     'Pod::Simple::Checker'  => 'cpan',
15721     'Pod::Simple::Debug'    => 'cpan',
15722     'Pod::Simple::DumpAsText'=> 'cpan',
15723     'Pod::Simple::DumpAsXML'=> 'cpan',
15724     'Pod::Simple::HTML'     => 'cpan',
15725     'Pod::Simple::HTMLBatch'=> 'cpan',
15726     'Pod::Simple::HTMLLegacy'=> 'cpan',
15727     'Pod::Simple::LinkSection'=> 'cpan',
15728     'Pod::Simple::Methody'  => 'cpan',
15729     'Pod::Simple::Progress' => 'cpan',
15730     'Pod::Simple::PullParser'=> 'cpan',
15731     'Pod::Simple::PullParserEndToken'=> 'cpan',
15732     'Pod::Simple::PullParserStartToken'=> 'cpan',
15733     'Pod::Simple::PullParserTextToken'=> 'cpan',
15734     'Pod::Simple::PullParserToken'=> 'cpan',
15735     'Pod::Simple::RTF'      => 'cpan',
15736     'Pod::Simple::Search'   => 'cpan',
15737     'Pod::Simple::SimpleTree'=> 'cpan',
15738     'Pod::Simple::Text'     => 'cpan',
15739     'Pod::Simple::TextContent'=> 'cpan',
15740     'Pod::Simple::TiedOutFH'=> 'cpan',
15741     'Pod::Simple::Transcode'=> 'cpan',
15742     'Pod::Simple::TranscodeDumb'=> 'cpan',
15743     'Pod::Simple::TranscodeSmart'=> 'cpan',
15744     'Pod::Simple::XHTML'    => 'cpan',
15745     'Pod::Simple::XMLOutStream'=> 'cpan',
15746     'Pod::Text'             => 'cpan',
15747     'Pod::Text::Color'      => 'cpan',
15748     'Pod::Text::Overstrike' => 'cpan',
15749     'Pod::Text::Termcap'    => 'cpan',
15750     'Pod::Usage'            => 'cpan',
15751     'Scalar::Util'          => 'cpan',
15752     'Socket'                => 'cpan',
15753     'Sub::Util'             => 'cpan',
15754     'Sys::Syslog'           => 'cpan',
15755     'Sys::Syslog::Win32'    => 'cpan',
15756     'TAP::Base'             => 'cpan',
15757     'TAP::Formatter::Base'  => 'cpan',
15758     'TAP::Formatter::Color' => 'cpan',
15759     'TAP::Formatter::Console'=> 'cpan',
15760     'TAP::Formatter::Console::ParallelSession'=> 'cpan',
15761     'TAP::Formatter::Console::Session'=> 'cpan',
15762     'TAP::Formatter::File'  => 'cpan',
15763     'TAP::Formatter::File::Session'=> 'cpan',
15764     'TAP::Formatter::Session'=> 'cpan',
15765     'TAP::Harness'          => 'cpan',
15766     'TAP::Harness::Env'     => 'cpan',
15767     'TAP::Object'           => 'cpan',
15768     'TAP::Parser'           => 'cpan',
15769     'TAP::Parser::Aggregator'=> 'cpan',
15770     'TAP::Parser::Grammar'  => 'cpan',
15771     'TAP::Parser::Iterator' => 'cpan',
15772     'TAP::Parser::Iterator::Array'=> 'cpan',
15773     'TAP::Parser::Iterator::Process'=> 'cpan',
15774     'TAP::Parser::Iterator::Stream'=> 'cpan',
15775     'TAP::Parser::IteratorFactory'=> 'cpan',
15776     'TAP::Parser::Multiplexer'=> 'cpan',
15777     'TAP::Parser::Result'   => 'cpan',
15778     'TAP::Parser::Result::Bailout'=> 'cpan',
15779     'TAP::Parser::Result::Comment'=> 'cpan',
15780     'TAP::Parser::Result::Plan'=> 'cpan',
15781     'TAP::Parser::Result::Pragma'=> 'cpan',
15782     'TAP::Parser::Result::Test'=> 'cpan',
15783     'TAP::Parser::Result::Unknown'=> 'cpan',
15784     'TAP::Parser::Result::Version'=> 'cpan',
15785     'TAP::Parser::Result::YAML'=> 'cpan',
15786     'TAP::Parser::ResultFactory'=> 'cpan',
15787     'TAP::Parser::Scheduler'=> 'cpan',
15788     'TAP::Parser::Scheduler::Job'=> 'cpan',
15789     'TAP::Parser::Scheduler::Spinner'=> 'cpan',
15790     'TAP::Parser::Source'   => 'cpan',
15791     'TAP::Parser::SourceHandler'=> 'cpan',
15792     'TAP::Parser::SourceHandler::Executable'=> 'cpan',
15793     'TAP::Parser::SourceHandler::File'=> 'cpan',
15794     'TAP::Parser::SourceHandler::Handle'=> 'cpan',
15795     'TAP::Parser::SourceHandler::Perl'=> 'cpan',
15796     'TAP::Parser::SourceHandler::RawTAP'=> 'cpan',
15797     'TAP::Parser::YAMLish::Reader'=> 'cpan',
15798     'TAP::Parser::YAMLish::Writer'=> 'cpan',
15799     'Term::ANSIColor'       => 'cpan',
15800     'Term::Cap'             => 'cpan',
15801     'Test2'                 => 'cpan',
15802     'Test2::API'            => 'cpan',
15803     'Test2::API::Breakage'  => 'cpan',
15804     'Test2::API::Context'   => 'cpan',
15805     'Test2::API::Instance'  => 'cpan',
15806     'Test2::API::Stack'     => 'cpan',
15807     'Test2::Event'          => 'cpan',
15808     'Test2::Event::Bail'    => 'cpan',
15809     'Test2::Event::Diag'    => 'cpan',
15810     'Test2::Event::Encoding'=> 'cpan',
15811     'Test2::Event::Exception'=> 'cpan',
15812     'Test2::Event::Fail'    => 'cpan',
15813     'Test2::Event::Generic' => 'cpan',
15814     'Test2::Event::Note'    => 'cpan',
15815     'Test2::Event::Ok'      => 'cpan',
15816     'Test2::Event::Pass'    => 'cpan',
15817     'Test2::Event::Plan'    => 'cpan',
15818     'Test2::Event::Skip'    => 'cpan',
15819     'Test2::Event::Subtest' => 'cpan',
15820     'Test2::Event::TAP::Version'=> 'cpan',
15821     'Test2::Event::Waiting' => 'cpan',
15822     'Test2::EventFacet'     => 'cpan',
15823     'Test2::EventFacet::About'=> 'cpan',
15824     'Test2::EventFacet::Amnesty'=> 'cpan',
15825     'Test2::EventFacet::Assert'=> 'cpan',
15826     'Test2::EventFacet::Control'=> 'cpan',
15827     'Test2::EventFacet::Error'=> 'cpan',
15828     'Test2::EventFacet::Info'=> 'cpan',
15829     'Test2::EventFacet::Meta'=> 'cpan',
15830     'Test2::EventFacet::Parent'=> 'cpan',
15831     'Test2::EventFacet::Plan'=> 'cpan',
15832     'Test2::EventFacet::Trace'=> 'cpan',
15833     'Test2::Formatter'      => 'cpan',
15834     'Test2::Formatter::TAP' => 'cpan',
15835     'Test2::Hub'            => 'cpan',
15836     'Test2::Hub::Interceptor'=> 'cpan',
15837     'Test2::Hub::Interceptor::Terminator'=> 'cpan',
15838     'Test2::Hub::Subtest'   => 'cpan',
15839     'Test2::IPC'            => 'cpan',
15840     'Test2::IPC::Driver'    => 'cpan',
15841     'Test2::IPC::Driver::Files'=> 'cpan',
15842     'Test2::Tools::Tiny'    => 'cpan',
15843     'Test2::Util'           => 'cpan',
15844     'Test2::Util::ExternalMeta'=> 'cpan',
15845     'Test2::Util::Facets2Legacy'=> 'cpan',
15846     'Test2::Util::HashBase' => 'cpan',
15847     'Test2::Util::Trace'    => 'cpan',
15848     'Test::Builder'         => 'cpan',
15849     'Test::Builder::Formatter'=> 'cpan',
15850     'Test::Builder::IO::Scalar'=> 'cpan',
15851     'Test::Builder::Module' => 'cpan',
15852     'Test::Builder::Tester' => 'cpan',
15853     'Test::Builder::Tester::Color'=> 'cpan',
15854     'Test::Builder::TodoDiag'=> 'cpan',
15855     'Test::Harness'         => 'cpan',
15856     'Test::More'            => 'cpan',
15857     'Test::Simple'          => 'cpan',
15858     'Test::Tester'          => 'cpan',
15859     'Test::Tester::Capture' => 'cpan',
15860     'Test::Tester::CaptureRunner'=> 'cpan',
15861     'Test::Tester::Delegate'=> 'cpan',
15862     'Test::use::ok'         => 'cpan',
15863     'Text::Balanced'        => 'cpan',
15864     'Text::ParseWords'      => 'cpan',
15865     'Text::Tabs'            => 'cpan',
15866     'Text::Wrap'            => 'cpan',
15867     'Tie::RefHash'          => 'cpan',
15868     'Time::Local'           => 'cpan',
15869     'Time::Piece'           => 'cpan',
15870     'Time::Seconds'         => 'cpan',
15871     'Unicode::Collate'      => 'cpan',
15872     'Unicode::Collate::CJK::Big5'=> 'cpan',
15873     'Unicode::Collate::CJK::GB2312'=> 'cpan',
15874     'Unicode::Collate::CJK::JISX0208'=> 'cpan',
15875     'Unicode::Collate::CJK::Korean'=> 'cpan',
15876     'Unicode::Collate::CJK::Pinyin'=> 'cpan',
15877     'Unicode::Collate::CJK::Stroke'=> 'cpan',
15878     'Unicode::Collate::CJK::Zhuyin'=> 'cpan',
15879     'Unicode::Collate::Locale'=> 'cpan',
15880     'Win32'                 => 'cpan',
15881     'Win32API::File'        => 'cpan',
15882     'Win32API::File::inc::ExtUtils::Myconst2perl'=> 'cpan',
15883     'autodie'               => 'cpan',
15884     'autodie::Scope::Guard' => 'cpan',
15885     'autodie::Scope::GuardStack'=> 'cpan',
15886     'autodie::Util'         => 'cpan',
15887     'autodie::exception'    => 'cpan',
15888     'autodie::exception::system'=> 'cpan',
15889     'autodie::hints'        => 'cpan',
15890     'autodie::skip'         => 'cpan',
15891     'bigint'                => 'cpan',
15892     'bignum'                => 'cpan',
15893     'bigrat'                => 'cpan',
15894     'encoding'              => 'cpan',
15895     'experimental'          => 'cpan',
15896     'ok'                    => 'cpan',
15897     'parent'                => 'cpan',
15898     'perlfaq'               => 'cpan',
15899     'version'               => 'cpan',
15900     'version::regex'        => 'cpan',
15901 );
15902
15903 %bug_tracker = (
15904     'App::Cpan'             => undef,
15905     'App::Prove'            => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
15906     'App::Prove::State'     => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
15907     'App::Prove::State::Result'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
15908     'App::Prove::State::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
15909     'Archive::Tar'          => undef,
15910     'Archive::Tar::Constant'=> undef,
15911     'Archive::Tar::File'    => undef,
15912     'B::Debug'              => undef,
15913     'CPAN'                  => undef,
15914     'CPAN::Author'          => undef,
15915     'CPAN::Bundle'          => undef,
15916     'CPAN::CacheMgr'        => undef,
15917     'CPAN::Complete'        => undef,
15918     'CPAN::Debug'           => undef,
15919     'CPAN::DeferredCode'    => undef,
15920     'CPAN::Distribution'    => undef,
15921     'CPAN::Distroprefs'     => undef,
15922     'CPAN::Distrostatus'    => undef,
15923     'CPAN::Exception::RecursiveDependency'=> undef,
15924     'CPAN::Exception::blocked_urllist'=> undef,
15925     'CPAN::Exception::yaml_not_installed'=> undef,
15926     'CPAN::Exception::yaml_process_error'=> undef,
15927     'CPAN::FTP'             => undef,
15928     'CPAN::FTP::netrc'      => undef,
15929     'CPAN::FirstTime'       => undef,
15930     'CPAN::HTTP::Client'    => undef,
15931     'CPAN::HTTP::Credentials'=> undef,
15932     'CPAN::HandleConfig'    => undef,
15933     'CPAN::Index'           => undef,
15934     'CPAN::InfoObj'         => undef,
15935     'CPAN::Kwalify'         => undef,
15936     'CPAN::LWP::UserAgent'  => undef,
15937     'CPAN::Meta'            => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
15938     'CPAN::Meta::Converter' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
15939     'CPAN::Meta::Feature'   => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
15940     'CPAN::Meta::History'   => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
15941     'CPAN::Meta::Merge'     => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
15942     'CPAN::Meta::Prereqs'   => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
15943     'CPAN::Meta::Requirements'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
15944     'CPAN::Meta::Spec'      => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
15945     'CPAN::Meta::Validator' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
15946     'CPAN::Meta::YAML'      => 'https://github.com/Perl-Toolchain-Gang/YAML-Tiny/issues',
15947     'CPAN::Mirrors'         => undef,
15948     'CPAN::Module'          => undef,
15949     'CPAN::Nox'             => undef,
15950     'CPAN::Plugin'          => undef,
15951     'CPAN::Plugin::Specfile'=> undef,
15952     'CPAN::Prompt'          => undef,
15953     'CPAN::Queue'           => undef,
15954     'CPAN::Shell'           => undef,
15955     'CPAN::Tarzip'          => undef,
15956     'CPAN::URL'             => undef,
15957     'CPAN::Version'         => undef,
15958     'Compress::Raw::Bzip2'  => undef,
15959     'Compress::Raw::Zlib'   => undef,
15960     'Compress::Zlib'        => undef,
15961     'Config::Perl::V'       => undef,
15962     'DB_File'               => undef,
15963     'Devel::PPPort'         => 'https://github.com/mhx/Devel-PPPort/issues/',
15964     'Digest'                => undef,
15965     'Digest::MD5'           => undef,
15966     'Digest::SHA'           => undef,
15967     'Digest::base'          => undef,
15968     'Digest::file'          => undef,
15969     'Encode'                => undef,
15970     'Encode::Alias'         => undef,
15971     'Encode::Byte'          => undef,
15972     'Encode::CJKConstants'  => undef,
15973     'Encode::CN'            => undef,
15974     'Encode::CN::HZ'        => undef,
15975     'Encode::Config'        => undef,
15976     'Encode::EBCDIC'        => undef,
15977     'Encode::Encoder'       => undef,
15978     'Encode::Encoding'      => undef,
15979     'Encode::GSM0338'       => undef,
15980     'Encode::Guess'         => undef,
15981     'Encode::JP'            => undef,
15982     'Encode::JP::H2Z'       => undef,
15983     'Encode::JP::JIS7'      => undef,
15984     'Encode::KR'            => undef,
15985     'Encode::KR::2022_KR'   => undef,
15986     'Encode::MIME::Header'  => undef,
15987     'Encode::MIME::Header::ISO_2022_JP'=> undef,
15988     'Encode::MIME::Name'    => undef,
15989     'Encode::Symbol'        => undef,
15990     'Encode::TW'            => undef,
15991     'Encode::Unicode'       => undef,
15992     'Encode::Unicode::UTF7' => undef,
15993     'ExtUtils::Command'     => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
15994     'ExtUtils::Command::MM' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
15995     'ExtUtils::Constant'    => undef,
15996     'ExtUtils::Constant::Base'=> undef,
15997     'ExtUtils::Constant::ProxySubs'=> undef,
15998     'ExtUtils::Constant::Utils'=> undef,
15999     'ExtUtils::Constant::XS'=> undef,
16000     'ExtUtils::Install'     => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
16001     'ExtUtils::Installed'   => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
16002     'ExtUtils::Liblist'     => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16003     'ExtUtils::Liblist::Kid'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16004     'ExtUtils::MM'          => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16005     'ExtUtils::MM_AIX'      => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16006     'ExtUtils::MM_Any'      => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16007     'ExtUtils::MM_BeOS'     => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16008     'ExtUtils::MM_Cygwin'   => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16009     'ExtUtils::MM_DOS'      => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16010     'ExtUtils::MM_Darwin'   => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16011     'ExtUtils::MM_MacOS'    => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16012     'ExtUtils::MM_NW5'      => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16013     'ExtUtils::MM_OS2'      => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16014     'ExtUtils::MM_QNX'      => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16015     'ExtUtils::MM_UWIN'     => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16016     'ExtUtils::MM_Unix'     => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16017     'ExtUtils::MM_VMS'      => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16018     'ExtUtils::MM_VOS'      => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16019     'ExtUtils::MM_Win32'    => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16020     'ExtUtils::MM_Win95'    => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16021     'ExtUtils::MY'          => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16022     'ExtUtils::MakeMaker'   => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16023     'ExtUtils::MakeMaker::Config'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16024     'ExtUtils::MakeMaker::Locale'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16025     'ExtUtils::MakeMaker::version'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16026     'ExtUtils::MakeMaker::version::regex'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16027     'ExtUtils::Manifest'    => 'http://github.com/Perl-Toolchain-Gang/ExtUtils-Manifest/issues',
16028     'ExtUtils::Mkbootstrap' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16029     'ExtUtils::Mksymlists'  => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16030     'ExtUtils::Packlist'    => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
16031     'ExtUtils::testlib'     => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16032     'Fatal'                 => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
16033     'File::Fetch'           => undef,
16034     'File::GlobMapper'      => undef,
16035     'File::Path'            => undef,
16036     'File::Temp'            => 'http://rt.cpan.org/Public/Dist/Display.html?Name=File-Temp',
16037     'Filter::Util::Call'    => undef,
16038     'Getopt::Long'          => undef,
16039     'HTTP::Tiny'            => 'https://github.com/chansen/p5-http-tiny/issues',
16040     'IO::Compress::Adapter::Bzip2'=> undef,
16041     'IO::Compress::Adapter::Deflate'=> undef,
16042     'IO::Compress::Adapter::Identity'=> undef,
16043     'IO::Compress::Base'    => undef,
16044     'IO::Compress::Base::Common'=> undef,
16045     'IO::Compress::Bzip2'   => undef,
16046     'IO::Compress::Deflate' => undef,
16047     'IO::Compress::Gzip'    => undef,
16048     'IO::Compress::Gzip::Constants'=> undef,
16049     'IO::Compress::RawDeflate'=> undef,
16050     'IO::Compress::Zip'     => undef,
16051     'IO::Compress::Zip::Constants'=> undef,
16052     'IO::Compress::Zlib::Constants'=> undef,
16053     'IO::Compress::Zlib::Extra'=> undef,
16054     'IO::Socket::IP'        => undef,
16055     'IO::Uncompress::Adapter::Bunzip2'=> undef,
16056     'IO::Uncompress::Adapter::Identity'=> undef,
16057     'IO::Uncompress::Adapter::Inflate'=> undef,
16058     'IO::Uncompress::AnyInflate'=> undef,
16059     'IO::Uncompress::AnyUncompress'=> undef,
16060     'IO::Uncompress::Base'  => undef,
16061     'IO::Uncompress::Bunzip2'=> undef,
16062     'IO::Uncompress::Gunzip'=> undef,
16063     'IO::Uncompress::Inflate'=> undef,
16064     'IO::Uncompress::RawInflate'=> undef,
16065     'IO::Uncompress::Unzip' => undef,
16066     'IO::Zlib'              => undef,
16067     'IPC::Cmd'              => undef,
16068     'IPC::Msg'              => undef,
16069     'IPC::Semaphore'        => undef,
16070     'IPC::SharedMem'        => undef,
16071     'IPC::SysV'             => undef,
16072     'JSON::PP'              => undef,
16073     'JSON::PP::Boolean'     => undef,
16074     'List::Util'            => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
16075     'List::Util::XS'        => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
16076     'Locale::Codes'         => undef,
16077     'Locale::Codes::Constants'=> undef,
16078     'Locale::Codes::Country'=> undef,
16079     'Locale::Codes::Country_Codes'=> undef,
16080     'Locale::Codes::Country_Retired'=> undef,
16081     'Locale::Codes::Currency'=> undef,
16082     'Locale::Codes::Currency_Codes'=> undef,
16083     'Locale::Codes::Currency_Retired'=> undef,
16084     'Locale::Codes::LangExt'=> undef,
16085     'Locale::Codes::LangExt_Codes'=> undef,
16086     'Locale::Codes::LangExt_Retired'=> undef,
16087     'Locale::Codes::LangFam'=> undef,
16088     'Locale::Codes::LangFam_Codes'=> undef,
16089     'Locale::Codes::LangFam_Retired'=> undef,
16090     'Locale::Codes::LangVar'=> undef,
16091     'Locale::Codes::LangVar_Codes'=> undef,
16092     'Locale::Codes::LangVar_Retired'=> undef,
16093     'Locale::Codes::Language'=> undef,
16094     'Locale::Codes::Language_Codes'=> undef,
16095     'Locale::Codes::Language_Retired'=> undef,
16096     'Locale::Codes::Script' => undef,
16097     'Locale::Codes::Script_Codes'=> undef,
16098     'Locale::Codes::Script_Retired'=> undef,
16099     'Locale::Country'       => undef,
16100     'Locale::Currency'      => undef,
16101     'Locale::Language'      => undef,
16102     'Locale::Maketext::Simple'=> undef,
16103     'Locale::Script'        => undef,
16104     'MIME::Base64'          => undef,
16105     'MIME::QuotedPrint'     => undef,
16106     'Math::BigFloat'        => undef,
16107     'Math::BigFloat::Trace' => undef,
16108     'Math::BigInt'          => undef,
16109     'Math::BigInt::Calc'    => undef,
16110     'Math::BigInt::CalcEmu' => undef,
16111     'Math::BigInt::FastCalc'=> undef,
16112     'Math::BigInt::Lib'     => undef,
16113     'Math::BigInt::Trace'   => undef,
16114     'Math::BigRat'          => undef,
16115     'Math::Complex'         => undef,
16116     'Math::Trig'            => undef,
16117     'Memoize'               => undef,
16118     'Memoize::AnyDBM_File'  => undef,
16119     'Memoize::Expire'       => undef,
16120     'Memoize::ExpireFile'   => undef,
16121     'Memoize::ExpireTest'   => undef,
16122     'Memoize::NDBM_File'    => undef,
16123     'Memoize::SDBM_File'    => undef,
16124     'Memoize::Storable'     => undef,
16125     'Module::Load'          => undef,
16126     'Module::Load::Conditional'=> undef,
16127     'Module::Loaded'        => undef,
16128     'Module::Metadata'      => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata',
16129     'NEXT'                  => undef,
16130     'Net::Cmd'              => undef,
16131     'Net::Config'           => undef,
16132     'Net::Domain'           => undef,
16133     'Net::FTP'              => undef,
16134     'Net::FTP::A'           => undef,
16135     'Net::FTP::E'           => undef,
16136     'Net::FTP::I'           => undef,
16137     'Net::FTP::L'           => undef,
16138     'Net::FTP::dataconn'    => undef,
16139     'Net::NNTP'             => undef,
16140     'Net::Netrc'            => undef,
16141     'Net::POP3'             => undef,
16142     'Net::SMTP'             => undef,
16143     'Net::Time'             => undef,
16144     'Params::Check'         => undef,
16145     'Parse::CPAN::Meta'     => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
16146     'Perl::OSType'          => 'https://github.com/Perl-Toolchain-Gang/Perl-OSType/issues',
16147     'PerlIO::via::QuotedPrint'=> undef,
16148     'Pod::Checker'          => undef,
16149     'Pod::Escapes'          => undef,
16150     'Pod::Find'             => undef,
16151     'Pod::InputObjects'     => undef,
16152     'Pod::Man'              => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
16153     'Pod::ParseLink'        => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
16154     'Pod::ParseUtils'       => undef,
16155     'Pod::Parser'           => undef,
16156     'Pod::Perldoc'          => undef,
16157     'Pod::Perldoc::BaseTo'  => undef,
16158     'Pod::Perldoc::GetOptsOO'=> undef,
16159     'Pod::Perldoc::ToANSI'  => undef,
16160     'Pod::Perldoc::ToChecker'=> undef,
16161     'Pod::Perldoc::ToMan'   => undef,
16162     'Pod::Perldoc::ToNroff' => undef,
16163     'Pod::Perldoc::ToPod'   => undef,
16164     'Pod::Perldoc::ToRtf'   => undef,
16165     'Pod::Perldoc::ToTerm'  => undef,
16166     'Pod::Perldoc::ToText'  => undef,
16167     'Pod::Perldoc::ToTk'    => undef,
16168     'Pod::Perldoc::ToXml'   => undef,
16169     'Pod::PlainText'        => undef,
16170     'Pod::Select'           => undef,
16171     'Pod::Simple'           => 'https://github.com/perl-pod/pod-simple/issues',
16172     'Pod::Simple::BlackBox' => 'https://github.com/perl-pod/pod-simple/issues',
16173     'Pod::Simple::Checker'  => 'https://github.com/perl-pod/pod-simple/issues',
16174     'Pod::Simple::Debug'    => 'https://github.com/perl-pod/pod-simple/issues',
16175     'Pod::Simple::DumpAsText'=> 'https://github.com/perl-pod/pod-simple/issues',
16176     'Pod::Simple::DumpAsXML'=> 'https://github.com/perl-pod/pod-simple/issues',
16177     'Pod::Simple::HTML'     => 'https://github.com/perl-pod/pod-simple/issues',
16178     'Pod::Simple::HTMLBatch'=> 'https://github.com/perl-pod/pod-simple/issues',
16179     'Pod::Simple::HTMLLegacy'=> 'https://github.com/perl-pod/pod-simple/issues',
16180     'Pod::Simple::LinkSection'=> 'https://github.com/perl-pod/pod-simple/issues',
16181     'Pod::Simple::Methody'  => 'https://github.com/perl-pod/pod-simple/issues',
16182     'Pod::Simple::Progress' => 'https://github.com/perl-pod/pod-simple/issues',
16183     'Pod::Simple::PullParser'=> 'https://github.com/perl-pod/pod-simple/issues',
16184     'Pod::Simple::PullParserEndToken'=> 'https://github.com/perl-pod/pod-simple/issues',
16185     'Pod::Simple::PullParserStartToken'=> 'https://github.com/perl-pod/pod-simple/issues',
16186     'Pod::Simple::PullParserTextToken'=> 'https://github.com/perl-pod/pod-simple/issues',
16187     'Pod::Simple::PullParserToken'=> 'https://github.com/perl-pod/pod-simple/issues',
16188     'Pod::Simple::RTF'      => 'https://github.com/perl-pod/pod-simple/issues',
16189     'Pod::Simple::Search'   => 'https://github.com/perl-pod/pod-simple/issues',
16190     'Pod::Simple::SimpleTree'=> 'https://github.com/perl-pod/pod-simple/issues',
16191     'Pod::Simple::Text'     => 'https://github.com/perl-pod/pod-simple/issues',
16192     'Pod::Simple::TextContent'=> 'https://github.com/perl-pod/pod-simple/issues',
16193     'Pod::Simple::TiedOutFH'=> 'https://github.com/perl-pod/pod-simple/issues',
16194     'Pod::Simple::Transcode'=> 'https://github.com/perl-pod/pod-simple/issues',
16195     'Pod::Simple::TranscodeDumb'=> 'https://github.com/perl-pod/pod-simple/issues',
16196     'Pod::Simple::TranscodeSmart'=> 'https://github.com/perl-pod/pod-simple/issues',
16197     'Pod::Simple::XHTML'    => 'https://github.com/perl-pod/pod-simple/issues',
16198     'Pod::Simple::XMLOutStream'=> 'https://github.com/perl-pod/pod-simple/issues',
16199     'Pod::Text'             => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
16200     'Pod::Text::Color'      => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
16201     'Pod::Text::Overstrike' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
16202     'Pod::Text::Termcap'    => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
16203     'Pod::Usage'            => undef,
16204     'Scalar::Util'          => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
16205     'Socket'                => undef,
16206     'Sub::Util'             => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
16207     'Sys::Syslog'           => undef,
16208     'Sys::Syslog::Win32'    => undef,
16209     'TAP::Base'             => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16210     'TAP::Formatter::Base'  => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16211     'TAP::Formatter::Color' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16212     'TAP::Formatter::Console'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16213     'TAP::Formatter::Console::ParallelSession'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16214     'TAP::Formatter::Console::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16215     'TAP::Formatter::File'  => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16216     'TAP::Formatter::File::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16217     'TAP::Formatter::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16218     'TAP::Harness'          => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16219     'TAP::Harness::Env'     => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16220     'TAP::Object'           => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16221     'TAP::Parser'           => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16222     'TAP::Parser::Aggregator'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16223     'TAP::Parser::Grammar'  => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16224     'TAP::Parser::Iterator' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16225     'TAP::Parser::Iterator::Array'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16226     'TAP::Parser::Iterator::Process'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16227     'TAP::Parser::Iterator::Stream'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16228     'TAP::Parser::IteratorFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16229     'TAP::Parser::Multiplexer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16230     'TAP::Parser::Result'   => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16231     'TAP::Parser::Result::Bailout'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16232     'TAP::Parser::Result::Comment'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16233     'TAP::Parser::Result::Plan'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16234     'TAP::Parser::Result::Pragma'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16235     'TAP::Parser::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16236     'TAP::Parser::Result::Unknown'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16237     'TAP::Parser::Result::Version'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16238     'TAP::Parser::Result::YAML'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16239     'TAP::Parser::ResultFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16240     'TAP::Parser::Scheduler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16241     'TAP::Parser::Scheduler::Job'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16242     'TAP::Parser::Scheduler::Spinner'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16243     'TAP::Parser::Source'   => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16244     'TAP::Parser::SourceHandler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16245     'TAP::Parser::SourceHandler::Executable'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16246     'TAP::Parser::SourceHandler::File'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16247     'TAP::Parser::SourceHandler::Handle'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16248     'TAP::Parser::SourceHandler::Perl'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16249     'TAP::Parser::SourceHandler::RawTAP'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16250     'TAP::Parser::YAMLish::Reader'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16251     'TAP::Parser::YAMLish::Writer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16252     'Term::ANSIColor'       => 'https://rt.cpan.org/Dist/Display.html?Name=Term-ANSIColor',
16253     'Term::Cap'             => undef,
16254     'Test2'                 => 'http://github.com/Test-More/test-more/issues',
16255     'Test2::API'            => 'http://github.com/Test-More/test-more/issues',
16256     'Test2::API::Breakage'  => 'http://github.com/Test-More/test-more/issues',
16257     'Test2::API::Context'   => 'http://github.com/Test-More/test-more/issues',
16258     'Test2::API::Instance'  => 'http://github.com/Test-More/test-more/issues',
16259     'Test2::API::Stack'     => 'http://github.com/Test-More/test-more/issues',
16260     'Test2::Event'          => 'http://github.com/Test-More/test-more/issues',
16261     'Test2::Event::Bail'    => 'http://github.com/Test-More/test-more/issues',
16262     'Test2::Event::Diag'    => 'http://github.com/Test-More/test-more/issues',
16263     'Test2::Event::Encoding'=> 'http://github.com/Test-More/test-more/issues',
16264     'Test2::Event::Exception'=> 'http://github.com/Test-More/test-more/issues',
16265     'Test2::Event::Fail'    => 'http://github.com/Test-More/test-more/issues',
16266     'Test2::Event::Generic' => 'http://github.com/Test-More/test-more/issues',
16267     'Test2::Event::Note'    => 'http://github.com/Test-More/test-more/issues',
16268     'Test2::Event::Ok'      => 'http://github.com/Test-More/test-more/issues',
16269     'Test2::Event::Pass'    => 'http://github.com/Test-More/test-more/issues',
16270     'Test2::Event::Plan'    => 'http://github.com/Test-More/test-more/issues',
16271     'Test2::Event::Skip'    => 'http://github.com/Test-More/test-more/issues',
16272     'Test2::Event::Subtest' => 'http://github.com/Test-More/test-more/issues',
16273     'Test2::Event::TAP::Version'=> 'http://github.com/Test-More/test-more/issues',
16274     'Test2::Event::Waiting' => 'http://github.com/Test-More/test-more/issues',
16275     'Test2::EventFacet'     => 'http://github.com/Test-More/test-more/issues',
16276     'Test2::EventFacet::About'=> 'http://github.com/Test-More/test-more/issues',
16277     'Test2::EventFacet::Amnesty'=> 'http://github.com/Test-More/test-more/issues',
16278     'Test2::EventFacet::Assert'=> 'http://github.com/Test-More/test-more/issues',
16279     'Test2::EventFacet::Control'=> 'http://github.com/Test-More/test-more/issues',
16280     'Test2::EventFacet::Error'=> 'http://github.com/Test-More/test-more/issues',
16281     'Test2::EventFacet::Info'=> 'http://github.com/Test-More/test-more/issues',
16282     'Test2::EventFacet::Meta'=> 'http://github.com/Test-More/test-more/issues',
16283     'Test2::EventFacet::Parent'=> 'http://github.com/Test-More/test-more/issues',
16284     'Test2::EventFacet::Plan'=> 'http://github.com/Test-More/test-more/issues',
16285     'Test2::EventFacet::Trace'=> 'http://github.com/Test-More/test-more/issues',
16286     'Test2::Formatter'      => 'http://github.com/Test-More/test-more/issues',
16287     'Test2::Formatter::TAP' => 'http://github.com/Test-More/test-more/issues',
16288     'Test2::Hub'            => 'http://github.com/Test-More/test-more/issues',
16289     'Test2::Hub::Interceptor'=> 'http://github.com/Test-More/test-more/issues',
16290     'Test2::Hub::Interceptor::Terminator'=> 'http://github.com/Test-More/test-more/issues',
16291     'Test2::Hub::Subtest'   => 'http://github.com/Test-More/test-more/issues',
16292     'Test2::IPC'            => 'http://github.com/Test-More/test-more/issues',
16293     'Test2::IPC::Driver'    => 'http://github.com/Test-More/test-more/issues',
16294     'Test2::IPC::Driver::Files'=> 'http://github.com/Test-More/test-more/issues',
16295     'Test2::Tools::Tiny'    => 'http://github.com/Test-More/test-more/issues',
16296     'Test2::Util'           => 'http://github.com/Test-More/test-more/issues',
16297     'Test2::Util::ExternalMeta'=> 'http://github.com/Test-More/test-more/issues',
16298     'Test2::Util::Facets2Legacy'=> 'http://github.com/Test-More/test-more/issues',
16299     'Test2::Util::HashBase' => 'http://github.com/Test-More/test-more/issues',
16300     'Test2::Util::Trace'    => 'http://github.com/Test-More/test-more/issues',
16301     'Test::Builder'         => 'http://github.com/Test-More/test-more/issues',
16302     'Test::Builder::Formatter'=> 'http://github.com/Test-More/test-more/issues',
16303     'Test::Builder::IO::Scalar'=> 'http://github.com/Test-More/test-more/issues',
16304     'Test::Builder::Module' => 'http://github.com/Test-More/test-more/issues',
16305     'Test::Builder::Tester' => 'http://github.com/Test-More/test-more/issues',
16306     'Test::Builder::Tester::Color'=> 'http://github.com/Test-More/test-more/issues',
16307     'Test::Builder::TodoDiag'=> 'http://github.com/Test-More/test-more/issues',
16308     'Test::Harness'         => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16309     'Test::More'            => 'http://github.com/Test-More/test-more/issues',
16310     'Test::Simple'          => 'http://github.com/Test-More/test-more/issues',
16311     'Test::Tester'          => 'http://github.com/Test-More/test-more/issues',
16312     'Test::Tester::Capture' => 'http://github.com/Test-More/test-more/issues',
16313     'Test::Tester::CaptureRunner'=> 'http://github.com/Test-More/test-more/issues',
16314     'Test::Tester::Delegate'=> 'http://github.com/Test-More/test-more/issues',
16315     'Test::use::ok'         => 'http://github.com/Test-More/test-more/issues',
16316     'Text::Balanced'        => undef,
16317     'Text::ParseWords'      => undef,
16318     'Text::Tabs'            => undef,
16319     'Text::Wrap'            => undef,
16320     'Tie::RefHash'          => undef,
16321     'Time::Local'           => 'https://github.com/houseabsolute/Time-Local/issues',
16322     'Time::Piece'           => undef,
16323     'Time::Seconds'         => undef,
16324     'Unicode::Collate'      => undef,
16325     'Unicode::Collate::CJK::Big5'=> undef,
16326     'Unicode::Collate::CJK::GB2312'=> undef,
16327     'Unicode::Collate::CJK::JISX0208'=> undef,
16328     'Unicode::Collate::CJK::Korean'=> undef,
16329     'Unicode::Collate::CJK::Pinyin'=> undef,
16330     'Unicode::Collate::CJK::Stroke'=> undef,
16331     'Unicode::Collate::CJK::Zhuyin'=> undef,
16332     'Unicode::Collate::Locale'=> undef,
16333     'Win32'                 => undef,
16334     'Win32API::File'        => undef,
16335     'Win32API::File::inc::ExtUtils::Myconst2perl'=> undef,
16336     'autodie'               => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
16337     'autodie::Scope::Guard' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
16338     'autodie::Scope::GuardStack'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
16339     'autodie::Util'         => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
16340     'autodie::exception'    => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
16341     'autodie::exception::system'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
16342     'autodie::hints'        => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
16343     'autodie::skip'         => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
16344     'bigint'                => undef,
16345     'bignum'                => undef,
16346     'bigrat'                => undef,
16347     'encoding'              => undef,
16348     'experimental'          => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental',
16349     'ok'                    => 'http://github.com/Test-More/test-more/issues',
16350     'parent'                => undef,
16351     'perlfaq'               => 'https://github.com/perl-doc-cats/perlfaq/issues',
16352     'version'               => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
16353     'version::regex'        => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
16354 );
16355
16356 # Create aliases with trailing zeros for $] use
16357
16358 $released{'5.000'} = $released{5};
16359 $version{'5.000'} = $version{5};
16360
16361 _create_aliases(\%delta);
16362 _create_aliases(\%released);
16363 _create_aliases(\%version);
16364 _create_aliases(\%deprecated);
16365
16366 sub _create_aliases {
16367     my ($hash) = @_;
16368
16369     for my $version (keys %$hash) {
16370         next unless $version >= 5.006;
16371
16372         my $padded = sprintf "%0.6f", $version;
16373
16374         # If the version in string form isn't the same as the numeric version,
16375         # alias it.
16376         if ($padded ne $version && $version == $padded) {
16377             $hash->{$padded} = $hash->{$version};
16378         }
16379     }
16380 }
16381
16382 1;
16383 __END__