use
vars
qw/$VERSION %released %version %families %upstream
%bug_tracker %deprecated/
;
$VERSION
=
'2.85'
;
my
$dumpinc
= 0;
sub
import
{
my
$self
=
shift
;
my
$what
=
shift
||
''
;
if
(
$what
eq
'dumpinc'
) {
$dumpinc
= 1;
}
}
END {
print
"---INC---\n"
,
join
"\n"
=>
keys
%INC
if
$dumpinc
;
}
sub
first_release_raw {
my
$module
=
shift
;
$module
=
shift
if
eval
{
$module
->isa(__PACKAGE__) }
and
scalar
@_
and
$_
[0] =~ m
my
$version
=
shift
;
my
@perls
=
$version
?
grep
{
exists
$version
{
$_
}{
$module
} &&
$version
{
$_
}{
$module
} ge
$version
}
keys
%version
:
grep
{
exists
$version
{
$_
}{
$module
} }
keys
%version
;
return
@perls
;
}
sub
first_release_by_date {
my
@perls
=
&first_release_raw
;
return
unless
@perls
;
return
(
sort
{
$released
{
$a
} cmp
$released
{
$b
} }
@perls
)[0];
}
sub
first_release {
my
@perls
=
&first_release_raw
;
return
unless
@perls
;
return
(
sort
{
$a
cmp
$b
}
@perls
)[0];
}
sub
find_modules {
my
$regex
=
shift
;
$regex
=
shift
if
eval
{
$regex
->isa(__PACKAGE__) };
my
@perls
=
@_
;
@perls
=
keys
%version
unless
@perls
;
my
%mods
;
foreach
(
@perls
) {
while
(
my
(
$k
,
$v
) =
each
%{
$version
{
$_
}}) {
$mods
{
$k
}++
if
$k
=~
$regex
;
}
}
return
sort
keys
%mods
}
sub
find_version {
my
$v
=
shift
;
$v
=
shift
if
eval
{
$v
->isa(__PACKAGE__) };
return
$version
{
$v
}
if
defined
$version
{
$v
};
return
undef
;
}
sub
is_deprecated {
my
$module
=
shift
;
$module
=
shift
if
eval
{
$module
->isa(__PACKAGE__) }
and
scalar
@_
and
$_
[0] =~ m
my
$perl_version
=
shift
;
$perl_version
||= $];
return
unless
$module
&&
exists
$deprecated
{
$perl_version
}{
$module
};
return
$deprecated
{
$perl_version
}{
$module
};
}
sub
deprecated_in {
my
$module
=
shift
;
$module
=
shift
if
eval
{
$module
->isa(__PACKAGE__) }
and
scalar
@_
and
$_
[0] =~ m
return
unless
$module
;
my
@perls
=
grep
{
exists
$deprecated
{
$_
}{
$module
} }
keys
%deprecated
;
return
unless
@perls
;
return
List::Util::minstr(
@perls
);
}
sub
removed_from {
my
@perls
=
&removed_raw
;
return
shift
@perls
;
}
sub
removed_from_by_date {
my
@perls
=
sort
{
$released
{
$a
} cmp
$released
{
$b
} }
&removed_raw
;
return
shift
@perls
;
}
sub
removed_raw {
my
$mod
=
shift
;
$mod
=
shift
if
eval
{
$mod
->isa(__PACKAGE__) }
and
scalar
@_
and
$_
[0] =~ m
return
unless
my
@perls
=
sort
{
$a
cmp
$b
} first_release_raw(
$mod
);
my
$last
=
pop
@perls
;
my
@removed
=
grep
{
$_
>
$last
}
sort
{
$a
cmp
$b
}
keys
%version
;
return
@removed
;
}
sub
changes_between {
my
(
$left_ver
,
$right_ver
) =
@_
;
my
$left
=
$version
{
$left_ver
};
my
$right
=
$version
{
$right_ver
};
my
%uniq
= (
%$left
,
%$right
);
my
%changes
;
for
my
$lib
(
keys
%uniq
) {
my
$lhs
=
exists
$left
->{
$lib
}
? (
defined
$left
->{
$lib
} ?
$left
->{
$lib
} :
'(undef)'
)
:
'(absent)'
;
my
$rhs
=
exists
$right
->{
$lib
}
? (
defined
$right
->{
$lib
} ?
$right
->{
$lib
} :
'(undef)'
)
:
'(absent)'
;
next
if
$lhs
eq
$rhs
;
my
$change
= {
(
exists
$left
->{
$lib
} ? (
left
=>
$left
->{
$lib
}) : ()),
(
exists
$right
->{
$lib
} ? (
right
=>
$right
->{
$lib
}) : ()),
};
$changes
{
$lib
} =
$change
;
}
return
%changes
;
}
%released
= (
5.
000
=>
'1994-10-17'
,
5.
001
=>
'1995-03-14'
,
5.
002
=>
'1996-02-29'
,
5.
00307
=>
'1996-10-10'
,
5.
004
=>
'1997-05-15'
,
5.
005
=>
'1998-07-22'
,
5.
00503
=>
'1999-03-28'
,
5.
00405
=>
'1999-04-29'
,
5.
006
=>
'2000-03-22'
,
5.
006001
=>
'2001-04-08'
,
5.
007003
=>
'2002-03-05'
,
5.
008
=>
'2002-07-19'
,
5.
008001
=>
'2003-09-25'
,
5.
009
=>
'2003-10-27'
,
5.
008002
=>
'2003-11-05'
,
5.
006002
=>
'2003-11-15'
,
5.
008003
=>
'2004-01-14'
,
5.
00504
=>
'2004-02-23'
,
5.
009001
=>
'2004-03-16'
,
5.
008004
=>
'2004-04-21'
,
5.
008005
=>
'2004-07-19'
,
5.
008006
=>
'2004-11-27'
,
5.
009002
=>
'2005-04-01'
,
5.
008007
=>
'2005-05-30'
,
5.
009003
=>
'2006-01-28'
,
5.
008008
=>
'2006-01-31'
,
5.
009004
=>
'2006-08-15'
,
5.
009005
=>
'2007-07-07'
,
5.
010000
=>
'2007-12-18'
,
5.
008009
=>
'2008-12-14'
,
5.
010001
=>
'2009-08-22'
,
5.
011000
=>
'2009-10-02'
,
5.
011001
=>
'2009-10-20'
,
5.
011002
=>
'2009-11-20'
,
5.
011003
=>
'2009-12-20'
,
5.
011004
=>
'2010-01-20'
,
5.
011005
=>
'2010-02-20'
,
5.
012000
=>
'2010-04-12'
,
5.
013000
=>
'2010-04-20'
,
5.
012001
=>
'2010-05-16'
,
5.
013001
=>
'2010-05-20'
,
5.
013002
=>
'2010-06-22'
,
5.
013003
=>
'2010-07-20'
,
5.
013004
=>
'2010-08-20'
,
5.
012002
=>
'2010-09-06'
,
5.
013005
=>
'2010-09-19'
,
5.
013006
=>
'2010-10-20'
,
5.
013007
=>
'2010-11-20'
,
5.
013008
=>
'2010-12-20'
,
5.
012003
=>
'2011-01-21'
,
5.
013009
=>
'2011-01-20'
,
5.
013010
=>
'2011-02-20'
,
5.
013011
=>
'2011-03-20'
,
5.
014000
=>
'2011-05-14'
,
5.
012004
=>
'2011-06-20'
,
5.
012005
=>
'2012-11-10'
,
5.
014001
=>
'2011-06-16'
,
5.
015000
=>
'2011-06-20'
,
5.
015001
=>
'2011-07-20'
,
5.
015002
=>
'2011-08-20'
,
5.
014002
=>
'2011-09-26'
,
5.
015003
=>
'2011-09-20'
,
5.
015004
=>
'2011-10-20'
,
5.
015005
=>
'2011-11-20'
,
5.
015006
=>
'2011-12-20'
,
5.
015007
=>
'2012-01-20'
,
5.
015008
=>
'2012-02-20'
,
5.
015009
=>
'2012-03-20'
,
5.
016000
=>
'2012-05-20'
,
5.
016001
=>
'2012-08-08'
,
5.
016002
=>
'2012-11-01'
,
5.
017000
=>
'2012-05-26'
,
5.
017001
=>
'2012-06-20'
,
5.
017002
=>
'2012-07-20'
,
5.
017003
=>
'2012-08-20'
,
5.
017004
=>
'2012-09-20'
,
5.
014003
=>
'2012-10-12'
,
5.
017005
=>
'2012-10-20'
,
5.
017006
=>
'2012-11-20'
,
5.
017007
=>
'2012-12-18'
,
5.
017008
=>
'2013-01-20'
,
5.
017009
=>
'2013-02-20'
,
5.
014004
=>
'2013-03-10'
,
5.
016003
=>
'2013-03-11'
,
5.
017010
=>
'2013-03-21'
,
);
for
my
$version
(
sort
{
$a
<=>
$b
}
keys
%released
) {
my
$family
=
int
(
$version
* 1000) / 1000;
push
@{
$families
{
$family
}} ,
$version
;
}
my
%delta
= (
5
=> {
changed
=> {
'AnyDBM_File'
=>
undef
,
'AutoLoader'
=>
undef
,
'AutoSplit'
=>
undef
,
'Benchmark'
=>
undef
,
'Carp'
=>
undef
,
'Cwd'
=>
undef
,
'DB_File'
=>
undef
,
'DynaLoader'
=>
undef
,
'English'
=>
undef
,
'Env'
=>
undef
,
'Exporter'
=>
undef
,
'ExtUtils::MakeMaker'
=>
undef
,
'Fcntl'
=>
undef
,
'File::Basename'
=>
undef
,
'File::CheckTree'
=>
undef
,
'File::Find'
=>
undef
,
'FileHandle'
=>
undef
,
'GDBM_File'
=>
undef
,
'Getopt::Long'
=>
undef
,
'Getopt::Std'
=>
undef
,
'I18N::Collate'
=>
undef
,
'IPC::Open2'
=>
undef
,
'IPC::Open3'
=>
undef
,
'Math::BigFloat'
=>
undef
,
'Math::BigInt'
=>
undef
,
'Math::Complex'
=>
undef
,
'NDBM_File'
=>
undef
,
'Net::Ping'
=>
undef
,
'ODBM_File'
=>
undef
,
'POSIX'
=>
undef
,
'SDBM_File'
=>
undef
,
'Search::Dict'
=>
undef
,
'Shell'
=>
undef
,
'Socket'
=>
undef
,
'Sys::Hostname'
=>
undef
,
'Sys::Syslog'
=>
undef
,
'Term::Cap'
=>
undef
,
'Term::Complete'
=>
undef
,
'Test::Harness'
=>
undef
,
'Text::Abbrev'
=>
undef
,
'Text::ParseWords'
=>
undef
,
'Text::Soundex'
=>
undef
,
'Text::Tabs'
=>
undef
,
'TieHash'
=>
undef
,
'Time::Local'
=>
undef
,
'integer'
=>
undef
,
'less'
=>
undef
,
'sigtrap'
=>
undef
,
'strict'
=>
undef
,
'subs'
=>
undef
,
},
removed
=> {
}
},
5.
001
=> {
delta_from
=> 5,
changed
=> {
'ExtUtils::Liblist'
=>
undef
,
'ExtUtils::Manifest'
=>
undef
,
'ExtUtils::Mkbootstrap'
=>
undef
,
'File::Path'
=>
undef
,
'SubstrHash'
=>
undef
,
'lib'
=>
undef
,
},
removed
=> {
}
},
5.
002
=> {
delta_from
=> 5.001,
changed
=> {
'DB_File'
=>
'1.01'
,
'Devel::SelfStubber'
=>
'1.01'
,
'DirHandle'
=>
undef
,
'DynaLoader'
=>
'1.00'
,
'ExtUtils::Install'
=>
undef
,
'ExtUtils::MM_OS2'
=>
undef
,
'ExtUtils::MM_Unix'
=>
undef
,
'ExtUtils::MM_VMS'
=>
undef
,
'ExtUtils::MakeMaker'
=>
'5.21'
,
'ExtUtils::Manifest'
=>
'1.22'
,
'ExtUtils::Mksymlists'
=>
'1.00'
,
'Fcntl'
=>
'1.00'
,
'File::Copy'
=>
'1.5'
,
'File::Path'
=>
'1.01'
,
'FileCache'
=>
undef
,
'FileHandle'
=>
'1.00'
,
'GDBM_File'
=>
'1.00'
,
'Getopt::Long'
=>
'2.01'
,
'NDBM_File'
=>
'1.00'
,
'Net::Ping'
=>
'1'
,
'ODBM_File'
=>
'1.00'
,
'POSIX'
=>
'1.00'
,
'Pod::Functions'
=>
undef
,
'Pod::Text'
=>
undef
,
'SDBM_File'
=>
'1.00'
,
'Safe'
=>
'1.00'
,
'SelectSaver'
=>
undef
,
'SelfLoader'
=>
'1.06'
,
'Socket'
=>
'1.5'
,
'Symbol'
=>
undef
,
'Term::ReadLine'
=>
undef
,
'Test::Harness'
=>
'1.07'
,
'Text::Wrap'
=>
undef
,
'Tie::Hash'
=>
undef
,
'Tie::Scalar'
=>
undef
,
'Tie::SubstrHash'
=>
undef
,
'diagnostics'
=>
undef
,
'overload'
=>
undef
,
'vars'
=>
undef
,
},
removed
=> {
'SubstrHash'
=> 1,
'TieHash'
=> 1,
}
},
5.
00307
=> {
delta_from
=> 5.002,
changed
=> {
'Config'
=>
undef
,
'DB_File'
=>
'1.03'
,
'ExtUtils::Embed'
=>
'1.18'
,
'ExtUtils::Install'
=>
'1.15 '
,
'ExtUtils::Liblist'
=>
'1.20 '
,
'ExtUtils::MM_Unix'
=>
'1.107 '
,
'ExtUtils::MakeMaker'
=>
'5.38'
,
'ExtUtils::Manifest'
=>
'1.27'
,
'ExtUtils::Mkbootstrap'
=>
'1.13 '
,
'ExtUtils::Mksymlists'
=>
'1.12 '
,
'ExtUtils::testlib'
=>
'1.11 '
,
'Fatal'
=>
undef
,
'File::Basename'
=>
'2.4'
,
'FindBin'
=>
'1.04'
,
'Getopt::Long'
=>
'2.04'
,
'IO'
=>
undef
,
'IO::File'
=>
'1.05'
,
'IO::Handle'
=>
'1.12'
,
'IO::Pipe'
=>
'1.07'
,
'IO::Seekable'
=>
'1.05'
,
'IO::Select'
=>
'1.09'
,
'IO::Socket'
=>
'1.13'
,
'Net::Ping'
=>
'1.01'
,
'OS2::ExtAttr'
=>
'0.01'
,
'OS2::PrfDB'
=>
'0.02'
,
'OS2::Process'
=>
undef
,
'OS2::REXX'
=>
undef
,
'Opcode'
=>
'1.01'
,
'Safe'
=>
'2.06'
,
'Test::Harness'
=>
'1.13'
,
'Text::Tabs'
=>
'96.051501'
,
'Text::Wrap'
=>
'96.041801'
,
'UNIVERSAL'
=>
undef
,
'VMS::Filespec'
=>
undef
,
'VMS::Stdio'
=>
'2.0'
,
'ops'
=>
undef
,
'sigtrap'
=>
'1.01'
,
},
removed
=> {
}
},
5.
004
=> {
delta_from
=> 5.00307,
changed
=> {
'Bundle::CPAN'
=>
'0.02'
,
'CGI'
=>
'2.36'
,
'CGI::Apache'
=>
'1.01'
,
'CGI::Carp'
=>
'1.06'
,
'CGI::Fast'
=>
'1.00a'
,
'CGI::Push'
=>
'1.00'
,
'CGI::Switch'
=>
'0.05'
,
'CPAN'
=>
'1.2401'
,
'CPAN::FirstTime'
=>
'1.18 '
,
'CPAN::Nox'
=>
undef
,
'Class::Struct'
=>
undef
,
'Cwd'
=>
'2.00'
,
'DB_File'
=>
'1.14'
,
'DynaLoader'
=>
'1.02'
,
'ExtUtils::Command'
=>
'1.00'
,
'ExtUtils::Embed'
=>
'1.2501'
,
'ExtUtils::Install'
=>
'1.16 '
,
'ExtUtils::Liblist'
=>
'1.2201 '
,
'ExtUtils::MM_Unix'
=>
'1.114 '
,
'ExtUtils::MM_Win32'
=>
undef
,
'ExtUtils::MakeMaker'
=>
'5.4002'
,
'ExtUtils::Manifest'
=>
'1.33 '
,
'ExtUtils::Mksymlists'
=>
'1.13 '
,
'ExtUtils::XSSymSet'
=>
'1.0'
,
'Fcntl'
=>
'1.03'
,
'File::Basename'
=>
'2.5'
,
'File::Compare'
=>
'1.1001'
,
'File::Copy'
=>
'2.02'
,
'File::Path'
=>
'1.04'
,
'File::stat'
=>
undef
,
'FileHandle'
=>
'2.00'
,
'Getopt::Long'
=>
'2.10'
,
'IO::File'
=>
'1.0602'
,
'IO::Handle'
=>
'1.1504'
,
'IO::Pipe'
=>
'1.0901'
,
'IO::Seekable'
=>
'1.06'
,
'IO::Select'
=>
'1.10'
,
'IO::Socket'
=>
'1.1602'
,
'IPC::Open2'
=>
'1.01'
,
'IPC::Open3'
=>
'1.0101'
,
'Math::Complex'
=>
'1.01'
,
'Math::Trig'
=>
'1'
,
'Net::Ping'
=>
'2.02'
,
'Net::hostent'
=>
undef
,
'Net::netent'
=>
undef
,
'Net::protoent'
=>
undef
,
'Net::servent'
=>
undef
,
'Opcode'
=>
'1.04'
,
'POSIX'
=>
'1.02'
,
'Pod::Html'
=>
undef
,
'Pod::Text'
=>
'1.0203'
,
'SelfLoader'
=>
'1.07'
,
'Socket'
=>
'1.6'
,
'Symbol'
=>
'1.02'
,
'Test::Harness'
=>
'1.1502'
,
'Text::Tabs'
=>
'96.121201'
,
'Text::Wrap'
=>
'97.011701'
,
'Tie::RefHash'
=>
undef
,
'Time::gmtime'
=>
'1.01'
,
'Time::localtime'
=>
'1.01'
,
'Time::tm'
=>
undef
,
'User::grent'
=>
undef
,
'User::pwent'
=>
undef
,
'VMS::DCLsym'
=>
'1.01'
,
'VMS::Stdio'
=>
'2.02'
,
'autouse'
=>
'1.01'
,
'blib'
=>
undef
,
'constant'
=>
'1.00'
,
'locale'
=>
undef
,
'sigtrap'
=>
'1.02'
,
'vmsish'
=>
undef
,
},
removed
=> {
'Fatal'
=> 1,
}
},
5.
00405
=> {
delta_from
=> 5.004,
changed
=> {
'AutoLoader'
=>
'5.56'
,
'AutoSplit'
=>
'1.0303'
,
'Bundle::CPAN'
=>
'0.03'
,
'CGI'
=>
'2.42'
,
'CGI::Apache'
=>
'1.1'
,
'CGI::Carp'
=>
'1.10'
,
'CGI::Cookie'
=>
'1.06'
,
'CGI::Push'
=>
'1.01'
,
'CGI::Switch'
=>
'0.06'
,
'CPAN'
=>
'1.40'
,
'CPAN::FirstTime'
=>
'1.30 '
,
'Cwd'
=>
'2.01'
,
'DB_File'
=>
'1.15'
,
'DynaLoader'
=>
'1.03'
,
'ExtUtils::Command'
=>
'1.01'
,
'ExtUtils::Embed'
=>
'1.2505'
,
'ExtUtils::Install'
=>
'1.28 '
,
'ExtUtils::Liblist'
=>
'1.25 '
,
'ExtUtils::MM_Unix'
=>
'1.118 '
,
'ExtUtils::MakeMaker'
=>
'5.42'
,
'ExtUtils::Mkbootstrap'
=>
'1.14 '
,
'ExtUtils::Mksymlists'
=>
'1.16 '
,
'File::Basename'
=>
'2.6'
,
'File::DosGlob'
=>
undef
,
'File::Path'
=>
'1.0402'
,
'File::Spec'
=>
'0.6'
,
'File::Spec::Mac'
=>
'1.0'
,
'File::Spec::OS2'
=>
undef
,
'File::Spec::Unix'
=>
undef
,
'File::Spec::VMS'
=>
undef
,
'File::Spec::Win32'
=>
undef
,
'FindBin'
=>
'1.41'
,
'Getopt::Long'
=>
'2.19'
,
'IO::File'
=>
'1.06021'
,
'IO::Socket'
=>
'1.1603'
,
'IPC::Open3'
=>
'1.0103'
,
'Math::Complex'
=>
'1.25'
,
'NDBM_File'
=>
'1.01'
,
'Pod::Html'
=>
'1.0101'
,
'Pod::Text'
=>
'1.0204'
,
'SelfLoader'
=>
'1.08'
,
'Socket'
=>
'1.7'
,
'Test'
=>
'1.04'
,
'Test::Harness'
=>
'1.1602'
,
'Text::ParseWords'
=>
'3.1001'
,
'Text::Wrap'
=>
'98.112902'
,
'Tie::Handle'
=>
undef
,
'attrs'
=>
'0.1'
,
'base'
=>
undef
,
'blib'
=>
'1.00'
,
're'
=>
undef
,
'strict'
=>
'1.01'
,
},
removed
=> {
}
},
5.
005
=> {
delta_from
=> 5.00405,
changed
=> {
'AutoLoader'
=>
undef
,
'AutoSplit'
=>
'1.0302'
,
'B'
=>
undef
,
'B::Asmdata'
=>
undef
,
'B::Assembler'
=>
undef
,
'B::Bblock'
=>
undef
,
'B::Bytecode'
=>
undef
,
'B::C'
=>
undef
,
'B::CC'
=>
undef
,
'B::Debug'
=>
undef
,
'B::Deparse'
=>
'0.56'
,
'B::Disassembler'
=>
undef
,
'B::Lint'
=>
undef
,
'B::Showlex'
=>
undef
,
'B::Stackobj'
=>
undef
,
'B::Terse'
=>
undef
,
'B::Xref'
=>
undef
,
'CGI::Carp'
=>
'1.101'
,
'CPAN'
=>
'1.3901'
,
'CPAN::FirstTime'
=>
'1.29 '
,
'DB_File'
=>
'1.60'
,
'Data::Dumper'
=>
'2.09'
,
'Errno'
=>
'1.09'
,
'ExtUtils::Installed'
=>
'0.02'
,
'ExtUtils::MM_Unix'
=>
'1.12601 '
,
'ExtUtils::MakeMaker'
=>
'5.4301'
,
'ExtUtils::Mkbootstrap'
=>
'1.13 '
,
'ExtUtils::Mksymlists'
=>
'1.17 '
,
'ExtUtils::Packlist'
=>
'0.03'
,
'Fatal'
=>
'1.02'
,
'File::Path'
=>
'1.0401'
,
'Getopt::Long'
=>
'2.17'
,
'IO::Handle'
=>
'1.1505'
,
'IPC::Msg'
=>
'1.00'
,
'IPC::Open3'
=>
'1.0102'
,
'IPC::Semaphore'
=>
'1.00'
,
'IPC::SysV'
=>
'1.03'
,
'O'
=>
undef
,
'OS2::Process'
=>
'0.2'
,
'Pod::Html'
=>
'1.01'
,
'Pod::Text'
=>
'1.0203'
,
'Text::ParseWords'
=>
'3.1'
,
'Text::Wrap'
=>
'97.02'
,
'Thread'
=>
'1.0'
,
'Thread::Queue'
=>
undef
,
'Thread::Semaphore'
=>
undef
,
'Thread::Signal'
=>
undef
,
'Thread::Specific'
=>
undef
,
'Tie::Array'
=>
'1.00'
,
'VMS::Stdio'
=>
'2.1'
,
'attrs'
=>
'1.0'
,
'fields'
=>
'0.02'
,
're'
=>
'0.02'
,
},
removed
=> {
'Bundle::CPAN'
=> 1,
}
},
5.
00503
=> {
delta_from
=> 5.005,
changed
=> {
'AutoSplit'
=>
'1.0303'
,
'CGI'
=>
'2.46'
,
'CGI::Carp'
=>
'1.13'
,
'CGI::Fast'
=>
'1.01'
,
'CPAN'
=>
'1.48'
,
'CPAN::FirstTime'
=>
'1.36'
,
'CPAN::Nox'
=>
'1.00'
,
'DB_File'
=>
'1.65'
,
'Data::Dumper'
=>
'2.101'
,
'Dumpvalue'
=>
undef
,
'Errno'
=>
'1.111'
,
'ExtUtils::Install'
=>
'1.28'
,
'ExtUtils::Liblist'
=>
'1.25'
,
'ExtUtils::MM_Unix'
=>
'1.12602'
,
'ExtUtils::MakeMaker'
=>
'5.4302'
,
'ExtUtils::Manifest'
=>
'1.33'
,
'ExtUtils::Mkbootstrap'
=>
'1.14'
,
'ExtUtils::Mksymlists'
=>
'1.17'
,
'ExtUtils::testlib'
=>
'1.11'
,
'FindBin'
=>
'1.42'
,
'Getopt::Long'
=>
'2.19'
,
'Getopt::Std'
=>
'1.01'
,
'IO::Pipe'
=>
'1.0902'
,
'IPC::Open3'
=>
'1.0103'
,
'Math::Complex'
=>
'1.26'
,
'Test'
=>
'1.122'
,
'Text::Wrap'
=>
'98.112902'
,
},
removed
=> {
}
},
5.
00504
=> {
delta_from
=> 5.00503,
changed
=> {
'CPAN::FirstTime'
=>
'1.36 '
,
'DB_File'
=>
'1.807'
,
'ExtUtils::Install'
=>
'1.28 '
,
'ExtUtils::Liblist'
=>
'1.25 '
,
'ExtUtils::MM_Unix'
=>
'1.12602 '
,
'ExtUtils::Manifest'
=>
'1.33 '
,
'ExtUtils::Miniperl'
=>
undef
,
'ExtUtils::Mkbootstrap'
=>
'1.14 '
,
'ExtUtils::Mksymlists'
=>
'1.17 '
,
'ExtUtils::testlib'
=>
'1.11 '
,
'File::Compare'
=>
'1.1002'
,
'File::Spec'
=>
'0.8'
,
'File::Spec::Functions'
=>
undef
,
'File::Spec::Mac'
=>
undef
,
'Getopt::Long'
=>
'2.20'
,
'Pod::Html'
=>
'1.02'
,
},
removed
=> {
}
},
5.
006
=> {
delta_from
=> 5.00504,
changed
=> {
'AutoLoader'
=>
'5.57'
,
'AutoSplit'
=>
'1.0305'
,
'B::Deparse'
=>
'0.59'
,
'B::Stash'
=>
undef
,
'Benchmark'
=>
'1'
,
'ByteLoader'
=>
'0.03'
,
'CGI'
=>
'2.56'
,
'CGI::Apache'
=>
undef
,
'CGI::Carp'
=>
'1.14'
,
'CGI::Cookie'
=>
'1.12'
,
'CGI::Fast'
=>
'1.02'
,
'CGI::Pretty'
=>
'1.03'
,
'CGI::Switch'
=>
undef
,
'CPAN'
=>
'1.52'
,
'CPAN::FirstTime'
=>
'1.38 '
,
'Carp::Heavy'
=>
undef
,
'Class::Struct'
=>
'0.58'
,
'Cwd'
=>
'2.02'
,
'DB'
=>
'1.0'
,
'DB_File'
=>
'1.72'
,
'Devel::DProf'
=>
'20000000.00_00'
,
'Devel::Peek'
=>
'1.00_01'
,
'DynaLoader'
=>
'1.04'
,
'Exporter'
=>
'5.562'
,
'Exporter::Heavy'
=>
undef
,
'ExtUtils::MM_Cygwin'
=>
undef
,
'ExtUtils::MM_Unix'
=>
'1.12603 '
,
'ExtUtils::MakeMaker'
=>
'5.45'
,
'File::Copy'
=>
'2.03'
,
'File::Glob'
=>
'0.991'
,
'File::Path'
=>
'1.0403'
,
'GDBM_File'
=>
'1.03'
,
'Getopt::Long'
=>
'2.23'
,
'Getopt::Std'
=>
'1.02'
,
'IO'
=>
'1.20'
,
'IO::Dir'
=>
'1.03'
,
'IO::File'
=>
'1.08'
,
'IO::Handle'
=>
'1.21'
,
'IO::Pipe'
=>
'1.121'
,
'IO::Poll'
=>
'0.01'
,
'IO::Seekable'
=>
'1.08'
,
'IO::Select'
=>
'1.14'
,
'IO::Socket'
=>
'1.26'
,
'IO::Socket::INET'
=>
'1.25'
,
'IO::Socket::UNIX'
=>
'1.20'
,
'JNI'
=>
'0.01'
,
'JPL::AutoLoader'
=>
undef
,
'JPL::Class'
=>
undef
,
'JPL::Compile'
=>
undef
,
'NDBM_File'
=>
'1.03'
,
'ODBM_File'
=>
'1.02'
,
'OS2::DLL'
=>
undef
,
'POSIX'
=>
'1.03'
,
'Pod::Checker'
=>
'1.098'
,
'Pod::Find'
=>
'0.12'
,
'Pod::Html'
=>
'1.03'
,
'Pod::InputObjects'
=>
'1.12'
,
'Pod::Man'
=>
'1.02'
,
'Pod::ParseUtils'
=>
'0.2'
,
'Pod::Parser'
=>
'1.12'
,
'Pod::Plainer'
=>
'0.01'
,
'Pod::Select'
=>
'1.12'
,
'Pod::Text'
=>
'2.03'
,
'Pod::Text::Color'
=>
'0.05'
,
'Pod::Text::Termcap'
=>
'0.04'
,
'Pod::Usage'
=>
'1.12'
,
'SDBM_File'
=>
'1.02'
,
'SelfLoader'
=>
'1.0901'
,
'Shell'
=>
'0.2'
,
'Socket'
=>
'1.72'
,
'Sys::Hostname'
=>
'1.1'
,
'Sys::Syslog'
=>
'0.01'
,
'Term::ANSIColor'
=>
'1.01'
,
'Test'
=>
'1.13'
,
'Test::Harness'
=>
'1.1604'
,
'Text::ParseWords'
=>
'3.2'
,
'Text::Soundex'
=>
'1.0'
,
'Text::Tabs'
=>
'98.112801'
,
'Tie::Array'
=>
'1.01'
,
'Tie::Handle'
=>
'1.0'
,
'VMS::Stdio'
=>
'2.2'
,
'XSLoader'
=>
'0.01'
,
'attributes'
=>
'0.03'
,
'autouse'
=>
'1.02'
,
'base'
=>
'1.01'
,
'bytes'
=>
undef
,
'charnames'
=>
undef
,
'constant'
=>
'1.02'
,
'diagnostics'
=>
'1.0'
,
'fields'
=>
'1.01'
,
'filetest'
=>
undef
,
'lib'
=>
'0.5564'
,
'open'
=>
undef
,
'utf8'
=>
undef
,
'warnings'
=>
undef
,
'warnings::register'
=>
undef
,
},
removed
=> {
}
},
5.
006001
=> {
delta_from
=> 5.006,
changed
=> {
'AutoLoader'
=>
'5.58'
,
'B::Assembler'
=>
'0.02'
,
'B::Concise'
=>
'0.51'
,
'B::Deparse'
=>
'0.6'
,
'ByteLoader'
=>
'0.04'
,
'CGI'
=>
'2.752'
,
'CGI::Carp'
=>
'1.20'
,
'CGI::Cookie'
=>
'1.18'
,
'CGI::Pretty'
=>
'1.05'
,
'CGI::Push'
=>
'1.04'
,
'CGI::Util'
=>
'1.1'
,
'CPAN'
=>
'1.59_54'
,
'CPAN::FirstTime'
=>
'1.53'
,
'Class::Struct'
=>
'0.59'
,
'Cwd'
=>
'2.04'
,
'DB_File'
=>
'1.75'
,
'Data::Dumper'
=>
'2.102'
,
'ExtUtils::Install'
=>
'1.28'
,
'ExtUtils::Liblist'
=>
'1.26'
,
'ExtUtils::MM_Unix'
=>
'1.12603'
,
'ExtUtils::Manifest'
=>
'1.33'
,
'ExtUtils::Mkbootstrap'
=>
'1.14'
,
'ExtUtils::Mksymlists'
=>
'1.17'
,
'ExtUtils::testlib'
=>
'1.11'
,
'File::Path'
=>
'1.0404'
,
'File::Spec'
=>
'0.82'
,
'File::Spec::Epoc'
=>
undef
,
'File::Spec::Functions'
=>
'1.1'
,
'File::Spec::Mac'
=>
'1.2'
,
'File::Spec::OS2'
=>
'1.1'
,
'File::Spec::Unix'
=>
'1.2'
,
'File::Spec::VMS'
=>
'1.1'
,
'File::Spec::Win32'
=>
'1.2'
,
'File::Temp'
=>
'0.12'
,
'GDBM_File'
=>
'1.05'
,
'Getopt::Long'
=>
'2.25'
,
'IO::Poll'
=>
'0.05'
,
'JNI'
=>
'0.1'
,
'Math::BigFloat'
=>
'0.02'
,
'Math::BigInt'
=>
'0.01'
,
'Math::Complex'
=>
'1.31'
,
'NDBM_File'
=>
'1.04'
,
'ODBM_File'
=>
'1.03'
,
'OS2::REXX'
=>
'1.00'
,
'Pod::Checker'
=>
'1.2'
,
'Pod::Find'
=>
'0.21'
,
'Pod::InputObjects'
=>
'1.13'
,
'Pod::LaTeX'
=>
'0.53'
,
'Pod::Man'
=>
'1.15'
,
'Pod::ParseUtils'
=>
'0.22'
,
'Pod::Parser'
=>
'1.13'
,
'Pod::Select'
=>
'1.13'
,
'Pod::Text'
=>
'2.08'
,
'Pod::Text::Color'
=>
'0.06'
,
'Pod::Text::Overstrike'
=>
'1.01'
,
'Pod::Text::Termcap'
=>
'1'
,
'Pod::Usage'
=>
'1.14'
,
'SDBM_File'
=>
'1.03'
,
'SelfLoader'
=>
'1.0902'
,
'Shell'
=>
'0.3'
,
'Term::ANSIColor'
=>
'1.03'
,
'Test'
=>
'1.15'
,
'Text::Wrap'
=>
'2001.0131'
,
'Tie::Handle'
=>
'4.0'
,
'Tie::RefHash'
=>
'1.3'
,
},
removed
=> {
}
},
5.
006002
=> {
delta_from
=> 5.006001,
changed
=> {
'CPAN::FirstTime'
=>
'1.53 '
,
'DB_File'
=>
'1.806'
,
'Data::Dumper'
=>
'2.121'
,
'ExtUtils::Command'
=>
'1.05'
,
'ExtUtils::Command::MM'
=>
'0.03'
,
'ExtUtils::Install'
=>
'1.32'
,
'ExtUtils::Installed'
=>
'0.08'
,
'ExtUtils::Liblist'
=>
'1.01'
,
'ExtUtils::Liblist::Kid'
=>
'1.3'
,
'ExtUtils::MM'
=>
'0.04'
,
'ExtUtils::MM_Any'
=>
'0.07'
,
'ExtUtils::MM_BeOS'
=>
'1.04'
,
'ExtUtils::MM_Cygwin'
=>
'1.06'
,
'ExtUtils::MM_DOS'
=>
'0.02'
,
'ExtUtils::MM_MacOS'
=>
'1.07'
,
'ExtUtils::MM_NW5'
=>
'2.06'
,
'ExtUtils::MM_OS2'
=>
'1.04'
,
'ExtUtils::MM_UWIN'
=>
'0.02'
,
'ExtUtils::MM_Unix'
=>
'1.42'
,
'ExtUtils::MM_VMS'
=>
'5.70'
,
'ExtUtils::MM_Win32'
=>
'1.09'
,
'ExtUtils::MM_Win95'
=>
'0.03'
,
'ExtUtils::MY'
=>
'0.01'
,
'ExtUtils::MakeMaker'
=>
'6.17'
,
'ExtUtils::MakeMaker::bytes'
=>
'0.01'
,
'ExtUtils::MakeMaker::vmsish'
=>
'0.01'
,
'ExtUtils::Manifest'
=>
'1.42'
,
'ExtUtils::Mkbootstrap'
=>
'1.15'
,
'ExtUtils::Mksymlists'
=>
'1.19'
,
'ExtUtils::Packlist'
=>
'0.04'
,
'ExtUtils::testlib'
=>
'1.15'
,
'File::Spec'
=>
'0.86'
,
'File::Spec::Cygwin'
=>
'1.1'
,
'File::Spec::Epoc'
=>
'1.1'
,
'File::Spec::Functions'
=>
'1.3'
,
'File::Spec::Mac'
=>
'1.4'
,
'File::Spec::OS2'
=>
'1.2'
,
'File::Spec::Unix'
=>
'1.5'
,
'File::Spec::VMS'
=>
'1.4'
,
'File::Spec::Win32'
=>
'1.4'
,
'File::Temp'
=>
'0.14'
,
'Safe'
=>
'2.10'
,
'Test'
=>
'1.24'
,
'Test::Builder'
=>
'0.17'
,
'Test::Harness'
=>
'2.30'
,
'Test::Harness::Assert'
=>
'0.01'
,
'Test::Harness::Iterator'
=>
'0.01'
,
'Test::Harness::Straps'
=>
'0.15'
,
'Test::More'
=>
'0.47'
,
'Test::Simple'
=>
'0.47'
,
'Unicode'
=>
'3.0.1'
,
'if'
=>
'0.03'
,
'ops'
=>
'1.00'
,
},
removed
=> {
}
},
5.
007003
=> {
delta_from
=> 5.006001,
changed
=> {
'AnyDBM_File'
=>
'1.00'
,
'Attribute::Handlers'
=>
'0.76'
,
'AutoLoader'
=>
'5.59'
,
'AutoSplit'
=>
'1.0307'
,
'B'
=>
'1.00'
,
'B::Asmdata'
=>
'1.00'
,
'B::Assembler'
=>
'0.04'
,
'B::Bblock'
=>
'1.00'
,
'B::Bytecode'
=>
'1.00'
,
'B::C'
=>
'1.01'
,
'B::CC'
=>
'1.00'
,
'B::Concise'
=>
'0.52'
,
'B::Debug'
=>
'1.00'
,
'B::Deparse'
=>
'0.63'
,
'B::Disassembler'
=>
'1.01'
,
'B::Lint'
=>
'1.00'
,
'B::Showlex'
=>
'1.00'
,
'B::Stackobj'
=>
'1.00'
,
'B::Stash'
=>
'1.00'
,
'B::Terse'
=>
'1.00'
,
'B::Xref'
=>
'1.00'
,
'Benchmark'
=>
'1.04'
,
'CGI'
=>
'2.80'
,
'CGI::Apache'
=>
'1.00'
,
'CGI::Carp'
=>
'1.22'
,
'CGI::Cookie'
=>
'1.20'
,
'CGI::Fast'
=>
'1.04'
,
'CGI::Pretty'
=>
'1.05_00'
,
'CGI::Switch'
=>
'1.00'
,
'CGI::Util'
=>
'1.3'
,
'CPAN'
=>
'1.59_56'
,
'CPAN::FirstTime'
=>
'1.54 '
,
'CPAN::Nox'
=>
'1.00_01'
,
'Carp'
=>
'1.01'
,
'Carp::Heavy'
=>
'1.01'
,
'Class::ISA'
=>
'0.32'
,
'Class::Struct'
=>
'0.61'
,
'Cwd'
=>
'2.06'
,
'DB_File'
=>
'1.804'
,
'Data::Dumper'
=>
'2.12'
,
'Devel::DProf'
=>
'20000000.00_01'
,
'Devel::PPPort'
=>
'2.0002'
,
'Devel::Peek'
=>
'1.00_03'
,
'Devel::SelfStubber'
=>
'1.03'
,
'Digest'
=>
'1.00'
,
'Digest::MD5'
=>
'2.16'
,
'DirHandle'
=>
'1.00'
,
'Dumpvalue'
=>
'1.10'
,
'Encode'
=>
'0.40'
,
'Encode::CN'
=>
'0.02'
,
'Encode::CN::HZ'
=>
undef
,
'Encode::Encoding'
=>
'0.02'
,
'Encode::Internal'
=>
'0.30'
,
'Encode::JP'
=>
'0.02'
,
'Encode::JP::Constants'
=>
'1.02'
,
'Encode::JP::H2Z'
=>
'0.77'
,
'Encode::JP::ISO_2022_JP'
=>
undef
,
'Encode::JP::JIS'
=>
undef
,
'Encode::JP::Tr'
=>
'0.77'
,
'Encode::KR'
=>
'0.02'
,
'Encode::TW'
=>
'0.02'
,
'Encode::Tcl'
=>
'1.01'
,
'Encode::Tcl::Escape'
=>
'1.01'
,
'Encode::Tcl::Extended'
=>
'1.01'
,
'Encode::Tcl::HanZi'
=>
'1.01'
,
'Encode::Tcl::Table'
=>
'1.01'
,
'Encode::Unicode'
=>
'0.30'
,
'Encode::XS'
=>
'0.40'
,
'Encode::iso10646_1'
=>
'0.30'
,
'Encode::usc2_le'
=>
'0.30'
,
'Encode::utf8'
=>
'0.30'
,
'English'
=>
'1.00'
,
'Env'
=>
'1.00'
,
'Exporter'
=>
'5.566'
,
'Exporter::Heavy'
=>
'5.562'
,
'ExtUtils::Command'
=>
'1.02'
,
'ExtUtils::Constant'
=>
'0.11'
,
'ExtUtils::Embed'
=>
'1.250601'
,
'ExtUtils::Install'
=>
'1.29'
,
'ExtUtils::Installed'
=>
'0.04'
,
'ExtUtils::Liblist'
=>
'1.2701'
,
'ExtUtils::MM_BeOS'
=>
'1.00'
,
'ExtUtils::MM_Cygwin'
=>
'1.00'
,
'ExtUtils::MM_OS2'
=>
'1.00'
,
'ExtUtils::MM_Unix'
=>
'1.12607'
,
'ExtUtils::MM_VMS'
=>
'5.56'
,
'ExtUtils::MM_Win32'
=>
'1.00_02'
,
'ExtUtils::MakeMaker'
=>
'5.48_03'
,
'ExtUtils::Manifest'
=>
'1.35'
,
'ExtUtils::Mkbootstrap'
=>
'1.1401'
,
'ExtUtils::Mksymlists'
=>
'1.18'
,
'ExtUtils::Packlist'
=>
'0.04'
,
'ExtUtils::testlib'
=>
'1.1201'
,
'Fatal'
=>
'1.03'
,
'Fcntl'
=>
'1.04'
,
'File::Basename'
=>
'2.71'
,
'File::CheckTree'
=>
'4.1'
,
'File::Compare'
=>
'1.1003'
,
'File::Copy'
=>
'2.05'
,
'File::DosGlob'
=>
'1.00'
,
'File::Find'
=>
'1.04'
,
'File::Glob'
=>
'1.01'
,
'File::Path'
=>
'1.05'
,
'File::Spec'
=>
'0.83'
,
'File::Spec::Cygwin'
=>
'1.0'
,
'File::Spec::Epoc'
=>
'1.00'
,
'File::Spec::Functions'
=>
'1.2'
,
'File::Spec::Mac'
=>
'1.3'
,
'File::Spec::Unix'
=>
'1.4'
,
'File::Spec::VMS'
=>
'1.2'
,
'File::Spec::Win32'
=>
'1.3'
,
'File::Temp'
=>
'0.13'
,
'File::stat'
=>
'1.00'
,
'FileCache'
=>
'1.00'
,
'FileHandle'
=>
'2.01'
,
'Filter::Simple'
=>
'0.77'
,
'Filter::Util::Call'
=>
'1.06'
,
'FindBin'
=>
'1.43'
,
'GDBM_File'
=>
'1.06'
,
'Getopt::Long'
=>
'2.28'
,
'Getopt::Std'
=>
'1.03'
,
'I18N::Collate'
=>
'1.00'
,
'I18N::LangTags'
=>
'0.27'
,
'I18N::LangTags::List'
=>
'0.25'
,
'I18N::Langinfo'
=>
'0.01'
,
'IO::Dir'
=>
'1.03_00'
,
'IO::File'
=>
'1.09'
,
'IO::Handle'
=>
'1.21_00'
,
'IO::Pipe'
=>
'1.122'
,
'IO::Poll'
=>
'0.06'
,
'IO::Seekable'
=>
'1.08_00'
,
'IO::Select'
=>
'1.15'
,
'IO::Socket'
=>
'1.27'
,
'IO::Socket::INET'
=>
'1.26'
,
'IO::Socket::UNIX'
=>
'1.20_00'
,
'IPC::Msg'
=>
'1.00_00'
,
'IPC::Open3'
=>
'1.0104'
,
'IPC::Semaphore'
=>
'1.00_00'
,
'IPC::SysV'
=>
'1.03_00'
,
'List::Util'
=>
'1.06_00'
,
'Locale::Constants'
=>
'2.01'
,
'Locale::Country'
=>
'2.01'
,
'Locale::Currency'
=>
'2.01'
,
'Locale::Language'
=>
'2.01'
,
'Locale::Maketext'
=>
'1.03'
,
'Locale::Script'
=>
'2.01'
,
'MIME::Base64'
=>
'2.12'
,
'MIME::QuotedPrint'
=>
'2.03'
,
'Math::BigFloat'
=>
'1.30'
,
'Math::BigInt'
=>
'1.54'
,
'Math::BigInt::Calc'
=>
'0.25'
,
'Math::Complex'
=>
'1.34'
,
'Math::Trig'
=>
'1.01'
,
'Memoize'
=>
'0.66'
,
'Memoize::AnyDBM_File'
=>
'0.65'
,
'Memoize::Expire'
=>
'0.66'
,
'Memoize::ExpireFile'
=>
'0.65'
,
'Memoize::ExpireTest'
=>
'0.65'
,
'Memoize::NDBM_File'
=>
'0.65'
,
'Memoize::SDBM_File'
=>
'0.65'
,
'Memoize::Storable'
=>
'0.65'
,
'NEXT'
=>
'0.50'
,
'Net::Cmd'
=>
'2.21'
,
'Net::Config'
=>
'1.10'
,
'Net::Domain'
=>
'2.17'
,
'Net::FTP'
=>
'2.64'
,
'Net::FTP::A'
=>
'1.15'
,
'Net::FTP::E'
=>
'0.01'
,
'Net::FTP::I'
=>
'1.12'
,
'Net::FTP::L'
=>
'0.01'
,
'Net::FTP::dataconn'
=>
'0.10'
,
'Net::NNTP'
=>
'2.21'
,
'Net::Netrc'
=>
'2.12'
,
'Net::POP3'
=>
'2.23'
,
'Net::Ping'
=>
'2.12'
,
'Net::SMTP'
=>
'2.21'
,
'Net::Time'
=>
'2.09'
,
'Net::hostent'
=>
'1.00'
,
'Net::netent'
=>
'1.00'
,
'Net::protoent'
=>
'1.00'
,
'Net::servent'
=>
'1.00'
,
'O'
=>
'1.00'
,
'OS2::DLL'
=>
'1.00'
,
'OS2::Process'
=>
'1.0'
,
'OS2::REXX'
=>
'1.01'
,
'Opcode'
=>
'1.05'
,
'POSIX'
=>
'1.05'
,
'PerlIO'
=>
'1.00'
,
'PerlIO::Scalar'
=>
'0.01'
,
'PerlIO::Via'
=>
'0.01'
,
'Pod::Checker'
=>
'1.3'
,
'Pod::Find'
=>
'0.22'
,
'Pod::Functions'
=>
'1.01'
,
'Pod::Html'
=>
'1.04'
,
'Pod::LaTeX'
=>
'0.54'
,
'Pod::Man'
=>
'1.32'
,
'Pod::ParseLink'
=>
'1.05'
,
'Pod::Text'
=>
'2.18'
,
'Pod::Text::Color'
=>
'1.03'
,
'Pod::Text::Overstrike'
=>
'1.08'
,
'Pod::Text::Termcap'
=>
'1.09'
,
'Safe'
=>
'2.07'
,
'Scalar::Util'
=>
'1.06_00'
,
'Search::Dict'
=>
'1.02'
,
'SelectSaver'
=>
'1.00'
,
'SelfLoader'
=>
'1.0903'
,
'Shell'
=>
'0.4'
,
'Socket'
=>
'1.75'
,
'Storable'
=>
'1.015'
,
'Switch'
=>
'2.06'
,
'Symbol'
=>
'1.04'
,
'Sys::Syslog'
=>
'0.02'
,
'Term::ANSIColor'
=>
'1.04'
,
'Term::Cap'
=>
'1.07'
,
'Term::Complete'
=>
'1.4'
,
'Term::ReadLine'
=>
'1.00'
,
'Test'
=>
'1.18'
,
'Test::Builder'
=>
'0.11'
,
'Test::Harness'
=>
'2.01'
,
'Test::Harness::Assert'
=>
'0.01'
,
'Test::Harness::Iterator'
=>
'0.01'
,
'Test::Harness::Straps'
=>
'0.08'
,
'Test::More'
=>
'0.41'
,
'Test::Simple'
=>
'0.41'
,
'Text::Abbrev'
=>
'1.00'
,
'Text::Balanced'
=>
'1.89'
,
'Text::ParseWords'
=>
'3.21'
,
'Text::Soundex'
=>
'1.01'
,
'Text::Wrap'
=>
'2001.0929'
,
'Thread'
=>
'2.00'
,
'Thread::Queue'
=>
'1.00'
,
'Thread::Semaphore'
=>
'1.00'
,
'Thread::Signal'
=>
'1.00'
,
'Thread::Specific'
=>
'1.00'
,
'Tie::Array'
=>
'1.02'
,
'Tie::File'
=>
'0.17'
,
'Tie::Handle'
=>
'4.1'
,
'Tie::Hash'
=>
'1.00'
,
'Tie::Memoize'
=>
'1.0'
,
'Tie::RefHash'
=>
'1.3_00'
,
'Tie::Scalar'
=>
'1.00'
,
'Tie::SubstrHash'
=>
'1.00'
,
'Time::HiRes'
=>
'1.20_00'
,
'Time::Local'
=>
'1.04'
,
'Time::gmtime'
=>
'1.02'
,
'Time::localtime'
=>
'1.02'
,
'Time::tm'
=>
'1.00'
,
'UNIVERSAL'
=>
'1.00'
,
'Unicode::Collate'
=>
'0.10'
,
'Unicode::Normalize'
=>
'0.14'
,
'Unicode::UCD'
=>
'0.2'
,
'User::grent'
=>
'1.00'
,
'User::pwent'
=>
'1.00'
,
'VMS::DCLsym'
=>
'1.02'
,
'VMS::Filespec'
=>
'1.1'
,
'VMS::Stdio'
=>
'2.3'
,
'XS::Typemap'
=>
'0.01'
,
'attributes'
=>
'0.04_01'
,
'attrs'
=>
'1.01'
,
'autouse'
=>
'1.03'
,
'base'
=>
'1.02'
,
'blib'
=>
'1.01'
,
'bytes'
=>
'1.00'
,
'charnames'
=>
'1.01'
,
'constant'
=>
'1.04'
,
'diagnostics'
=>
'1.1'
,
'encoding'
=>
'1.00'
,
'fields'
=>
'1.02'
,
'filetest'
=>
'1.00'
,
'if'
=>
'0.01'
,
'integer'
=>
'1.00'
,
'less'
=>
'0.01'
,
'locale'
=>
'1.00'
,
'open'
=>
'1.01'
,
'ops'
=>
'1.00'
,
'overload'
=>
'1.00'
,
're'
=>
'0.03'
,
'sort'
=>
'1.00'
,
'strict'
=>
'1.02'
,
'subs'
=>
'1.00'
,
'threads'
=>
'0.05'
,
'threads::shared'
=>
'0.90'
,
'utf8'
=>
'1.00'
,
'vars'
=>
'1.01'
,
'vmsish'
=>
'1.00'
,
'warnings'
=>
'1.00'
,
'warnings::register'
=>
'1.00'
,
},
removed
=> {
}
},
5.
008
=> {
delta_from
=> 5.007003,
changed
=> {
'Attribute::Handlers'
=>
'0.77'
,
'B'
=>
'1.01'
,
'B::Lint'
=>
'1.01'
,
'B::Xref'
=>
'1.01'
,
'CGI'
=>
'2.81'
,
'CGI::Carp'
=>
'1.23'
,
'CPAN'
=>
'1.61'
,
'CPAN::FirstTime'
=>
'1.56 '
,
'CPAN::Nox'
=>
'1.02'
,
'Digest::MD5'
=>
'2.20'
,
'Dumpvalue'
=>
'1.11'
,
'Encode'
=>
'1.75'
,
'Encode::Alias'
=>
'1.32'
,
'Encode::Byte'
=>
'1.22'
,
'Encode::CJKConstants'
=>
'1.00'
,
'Encode::CN'
=>
'1.24'
,
'Encode::CN::HZ'
=>
'1.04'
,
'Encode::Config'
=>
'1.06'
,
'Encode::EBCDIC'
=>
'1.21'
,
'Encode::Encoder'
=>
'0.05'
,
'Encode::Encoding'
=>
'1.30'
,
'Encode::Guess'
=>
'1.06'
,
'Encode::JP'
=>
'1.25'
,
'Encode::JP::H2Z'
=>
'1.02'
,
'Encode::JP::JIS7'
=>
'1.08'
,
'Encode::KR'
=>
'1.22'
,
'Encode::KR::2022_KR'
=>
'1.05'
,
'Encode::MIME::Header'
=>
'1.05'
,
'Encode::Symbol'
=>
'1.22'
,
'Encode::TW'
=>
'1.26'
,
'Encode::Unicode'
=>
'1.37'
,
'Exporter::Heavy'
=>
'5.566'
,
'ExtUtils::Command'
=>
'1.04'
,
'ExtUtils::Command::MM'
=>
'0.01'
,
'ExtUtils::Constant'
=>
'0.12'
,
'ExtUtils::Installed'
=>
'0.06'
,
'ExtUtils::Liblist'
=>
'1.00'
,
'ExtUtils::Liblist::Kid'
=>
'1.29'
,
'ExtUtils::MM'
=>
'0.04'
,
'ExtUtils::MM_Any'
=>
'0.04'
,
'ExtUtils::MM_BeOS'
=>
'1.03'
,
'ExtUtils::MM_Cygwin'
=>
'1.04'
,
'ExtUtils::MM_DOS'
=>
'0.01'
,
'ExtUtils::MM_MacOS'
=>
'1.03'
,
'ExtUtils::MM_NW5'
=>
'2.05'
,
'ExtUtils::MM_OS2'
=>
'1.03'
,
'ExtUtils::MM_UWIN'
=>
'0.01'
,
'ExtUtils::MM_Unix'
=>
'1.33'
,
'ExtUtils::MM_VMS'
=>
'5.65'
,
'ExtUtils::MM_Win32'
=>
'1.05'
,
'ExtUtils::MM_Win95'
=>
'0.02'
,
'ExtUtils::MY'
=>
'0.01'
,
'ExtUtils::MakeMaker'
=>
'6.03'
,
'ExtUtils::Manifest'
=>
'1.38'
,
'ExtUtils::Mkbootstrap'
=>
'1.15'
,
'ExtUtils::Mksymlists'
=>
'1.19'
,
'ExtUtils::testlib'
=>
'1.15'
,
'File::CheckTree'
=>
'4.2'
,
'FileCache'
=>
'1.021'
,
'Filter::Simple'
=>
'0.78'
,
'Getopt::Long'
=>
'2.32'
,
'Hash::Util'
=>
'0.04'
,
'List::Util'
=>
'1.07_00'
,
'Locale::Country'
=>
'2.04'
,
'Math::BigFloat'
=>
'1.35'
,
'Math::BigFloat::Trace'
=>
'0.01'
,
'Math::BigInt'
=>
'1.60'
,
'Math::BigInt::Calc'
=>
'0.30'
,
'Math::BigInt::Trace'
=>
'0.01'
,
'Math::BigRat'
=>
'0.07'
,
'Memoize'
=>
'1.01'
,
'Memoize::Expire'
=>
'1.00'
,
'Memoize::ExpireFile'
=>
'1.01'
,
'Net::FTP'
=>
'2.65'
,
'Net::FTP::dataconn'
=>
'0.11'
,
'Net::Ping'
=>
'2.19'
,
'Net::SMTP'
=>
'2.24'
,
'PerlIO'
=>
'1.01'
,
'PerlIO::encoding'
=>
'0.06'
,
'PerlIO::scalar'
=>
'0.01'
,
'PerlIO::via'
=>
'0.01'
,
'PerlIO::via::QuotedPrint'
=>
'0.04'
,
'Pod::Man'
=>
'1.33'
,
'Pod::Text'
=>
'2.19'
,
'Scalar::Util'
=>
'1.07_00'
,
'Storable'
=>
'2.04'
,
'Switch'
=>
'2.09'
,
'Sys::Syslog'
=>
'0.03'
,
'Test'
=>
'1.20'
,
'Test::Builder'
=>
'0.15'
,
'Test::Harness'
=>
'2.26'
,
'Test::Harness::Straps'
=>
'0.14'
,
'Test::More'
=>
'0.45'
,
'Test::Simple'
=>
'0.45'
,
'Thread::Queue'
=>
'2.00'
,
'Thread::Semaphore'
=>
'2.00'
,
'Tie::File'
=>
'0.93'
,
'Tie::RefHash'
=>
'1.30'
,
'Unicode'
=>
'3.2.0'
,
'Unicode::Collate'
=>
'0.12'
,
'Unicode::Normalize'
=>
'0.17'
,
'XS::APItest'
=>
'0.01'
,
'attributes'
=>
'0.05'
,
'base'
=>
'1.03'
,
'bigint'
=>
'0.02'
,
'bignum'
=>
'0.11'
,
'bigrat'
=>
'0.04'
,
'blib'
=>
'1.02'
,
'encoding'
=>
'1.35'
,
'sort'
=>
'1.01'
,
'threads'
=>
'0.99'
,
},
removed
=> {
'Encode::Internal'
=> 1,
'Encode::JP::Constants'
=> 1,
'Encode::JP::ISO_2022_JP'
=> 1,
'Encode::JP::JIS'
=> 1,
'Encode::JP::Tr'
=> 1,
'Encode::Tcl'
=> 1,
'Encode::Tcl::Escape'
=> 1,
'Encode::Tcl::Extended'
=> 1,
'Encode::Tcl::HanZi'
=> 1,
'Encode::Tcl::Table'
=> 1,
'Encode::XS'
=> 1,
'Encode::iso10646_1'
=> 1,
'Encode::usc2_le'
=> 1,
'Encode::utf8'
=> 1,
'PerlIO::Scalar'
=> 1,
'PerlIO::Via'
=> 1,
}
},
5.
008001
=> {
delta_from
=> 5.008,
changed
=> {
'Attribute::Handlers'
=>
'0.78'
,
'AutoLoader'
=>
'5.60'
,
'AutoSplit'
=>
'1.04'
,
'B'
=>
'1.02'
,
'B::Asmdata'
=>
'1.01'
,
'B::Assembler'
=>
'0.06'
,
'B::Bblock'
=>
'1.02'
,
'B::Bytecode'
=>
'1.01'
,
'B::C'
=>
'1.02'
,
'B::Concise'
=>
'0.56'
,
'B::Debug'
=>
'1.01'
,
'B::Deparse'
=>
'0.64'
,
'B::Disassembler'
=>
'1.03'
,
'B::Lint'
=>
'1.02'
,
'B::Terse'
=>
'1.02'
,
'Benchmark'
=>
'1.051'
,
'ByteLoader'
=>
'0.05'
,
'CGI'
=>
'3.00'
,
'CGI::Carp'
=>
'1.26'
,
'CGI::Cookie'
=>
'1.24'
,
'CGI::Fast'
=>
'1.041'
,
'CGI::Pretty'
=>
'1.07_00'
,
'CGI::Util'
=>
'1.31'
,
'CPAN'
=>
'1.76_01'
,
'CPAN::FirstTime'
=>
'1.60 '
,
'CPAN::Nox'
=>
'1.03'
,
'Class::Struct'
=>
'0.63'
,
'Cwd'
=>
'2.08'
,
'DB_File'
=>
'1.806'
,
'Data::Dumper'
=>
'2.121'
,
'Devel::DProf'
=>
'20030813.00'
,
'Devel::PPPort'
=>
'2.007'
,
'Devel::Peek'
=>
'1.01'
,
'Digest'
=>
'1.02'
,
'Digest::MD5'
=>
'2.27'
,
'Encode'
=>
'1.9801'
,
'Encode::Alias'
=>
'1.38'
,
'Encode::Byte'
=>
'1.23'
,
'Encode::CJKConstants'
=>
'1.02'
,
'Encode::CN::HZ'
=>
'1.05'
,
'Encode::Config'
=>
'1.07'
,
'Encode::Encoder'
=>
'0.07'
,
'Encode::Encoding'
=>
'1.33'
,
'Encode::Guess'
=>
'1.09'
,
'Encode::JP::JIS7'
=>
'1.12'
,
'Encode::KR'
=>
'1.23'
,
'Encode::KR::2022_KR'
=>
'1.06'
,
'Encode::MIME::Header'
=>
'1.09'
,
'Encode::Unicode'
=>
'1.40'
,
'Encode::Unicode::UTF7'
=>
'0.02'
,
'English'
=>
'1.01'
,
'Errno'
=>
'1.09_00'
,
'Exporter'
=>
'5.567'
,
'Exporter::Heavy'
=>
'5.567'
,
'ExtUtils::Command'
=>
'1.05'
,
'ExtUtils::Command::MM'
=>
'0.03'
,
'ExtUtils::Constant'
=>
'0.14'
,
'ExtUtils::Install'
=>
'1.32'
,
'ExtUtils::Installed'
=>
'0.08'
,
'ExtUtils::Liblist'
=>
'1.01'
,
'ExtUtils::Liblist::Kid'
=>
'1.3'
,
'ExtUtils::MM_Any'
=>
'0.07'
,
'ExtUtils::MM_BeOS'
=>
'1.04'
,
'ExtUtils::MM_Cygwin'
=>
'1.06'
,
'ExtUtils::MM_DOS'
=>
'0.02'
,
'ExtUtils::MM_MacOS'
=>
'1.07'
,
'ExtUtils::MM_NW5'
=>
'2.06'
,
'ExtUtils::MM_OS2'
=>
'1.04'
,
'ExtUtils::MM_UWIN'
=>
'0.02'
,
'ExtUtils::MM_Unix'
=>
'1.42'
,
'ExtUtils::MM_VMS'
=>
'5.70'
,
'ExtUtils::MM_Win32'
=>
'1.09'
,
'ExtUtils::MM_Win95'
=>
'0.03'
,
'ExtUtils::MakeMaker'
=>
'6.17'
,
'ExtUtils::MakeMaker::bytes'
=>
'0.01'
,
'ExtUtils::MakeMaker::vmsish'
=>
'0.01'
,
'ExtUtils::Manifest'
=>
'1.42'
,
'Fcntl'
=>
'1.05'
,
'File::Basename'
=>
'2.72'
,
'File::Copy'
=>
'2.06'
,
'File::Find'
=>
'1.05'
,
'File::Glob'
=>
'1.02'
,
'File::Path'
=>
'1.06'
,
'File::Spec'
=>
'0.86'
,
'File::Spec::Cygwin'
=>
'1.1'
,
'File::Spec::Epoc'
=>
'1.1'
,
'File::Spec::Functions'
=>
'1.3'
,
'File::Spec::Mac'
=>
'1.4'
,
'File::Spec::OS2'
=>
'1.2'
,
'File::Spec::Unix'
=>
'1.5'
,
'File::Spec::VMS'
=>
'1.4'
,
'File::Spec::Win32'
=>
'1.4'
,
'File::Temp'
=>
'0.14'
,
'FileCache'
=>
'1.03'
,
'Filter::Util::Call'
=>
'1.0601'
,
'GDBM_File'
=>
'1.07'
,
'Getopt::Long'
=>
'2.34'
,
'Getopt::Std'
=>
'1.04'
,
'Hash::Util'
=>
'0.05'
,
'I18N::LangTags'
=>
'0.28'
,
'I18N::LangTags::List'
=>
'0.26'
,
'I18N::Langinfo'
=>
'0.02'
,
'IO'
=>
'1.21'
,
'IO::Dir'
=>
'1.04'
,
'IO::File'
=>
'1.10'
,
'IO::Handle'
=>
'1.23'
,
'IO::Seekable'
=>
'1.09'
,
'IO::Select'
=>
'1.16'
,
'IO::Socket'
=>
'1.28'
,
'IO::Socket::INET'
=>
'1.27'
,
'IO::Socket::UNIX'
=>
'1.21'
,
'IPC::Msg'
=>
'1.02'
,
'IPC::Open3'
=>
'1.0105'
,
'IPC::Semaphore'
=>
'1.02'
,
'IPC::SysV'
=>
'1.04'
,
'JNI'
=>
'0.2'
,
'List::Util'
=>
'1.13'
,
'Locale::Country'
=>
'2.61'
,
'Locale::Currency'
=>
'2.21'
,
'Locale::Language'
=>
'2.21'
,
'Locale::Maketext'
=>
'1.06'
,
'Locale::Maketext::Guts'
=>
undef
,
'Locale::Maketext::GutsLoader'
=>
undef
,
'Locale::Script'
=>
'2.21'
,
'MIME::Base64'
=>
'2.20'
,
'MIME::QuotedPrint'
=>
'2.20'
,
'Math::BigFloat'
=>
'1.40'
,
'Math::BigInt'
=>
'1.66'
,
'Math::BigInt::Calc'
=>
'0.36'
,
'Math::BigInt::Scalar'
=>
'0.11'
,
'Math::BigRat'
=>
'0.10'
,
'Math::Trig'
=>
'1.02'
,
'NDBM_File'
=>
'1.05'
,
'NEXT'
=>
'0.60'
,
'Net::Cmd'
=>
'2.24'
,
'Net::Domain'
=>
'2.18'
,
'Net::FTP'
=>
'2.71'
,
'Net::FTP::A'
=>
'1.16'
,
'Net::NNTP'
=>
'2.22'
,
'Net::POP3'
=>
'2.24'
,
'Net::Ping'
=>
'2.31'
,
'Net::SMTP'
=>
'2.26'
,
'Net::hostent'
=>
'1.01'
,
'Net::servent'
=>
'1.01'
,
'ODBM_File'
=>
'1.04'
,
'OS2::DLL'
=>
'1.01'
,
'OS2::ExtAttr'
=>
'0.02'
,
'OS2::PrfDB'
=>
'0.03'
,
'OS2::Process'
=>
'1.01'
,
'OS2::REXX'
=>
'1.02'
,
'POSIX'
=>
'1.06'
,
'PerlIO'
=>
'1.02'
,
'PerlIO::encoding'
=>
'0.07'
,
'PerlIO::scalar'
=>
'0.02'
,
'PerlIO::via'
=>
'0.02'
,
'PerlIO::via::QuotedPrint'
=>
'0.05'
,
'Pod::Checker'
=>
'1.41'
,
'Pod::Find'
=>
'0.24'
,
'Pod::Functions'
=>
'1.02'
,
'Pod::Html'
=>
'1.0501'
,
'Pod::InputObjects'
=>
'1.14'
,
'Pod::LaTeX'
=>
'0.55'
,
'Pod::Man'
=>
'1.37'
,
'Pod::ParseLink'
=>
'1.06'
,
'Pod::ParseUtils'
=>
'0.3'
,
'Pod::Perldoc'
=>
'3.10'
,
'Pod::Perldoc::BaseTo'
=>
undef
,
'Pod::Perldoc::GetOptsOO'
=>
undef
,
'Pod::Perldoc::ToChecker'
=>
undef
,
'Pod::Perldoc::ToMan'
=>
undef
,
'Pod::Perldoc::ToNroff'
=>
undef
,
'Pod::Perldoc::ToPod'
=>
undef
,
'Pod::Perldoc::ToRtf'
=>
undef
,
'Pod::Perldoc::ToText'
=>
undef
,
'Pod::Perldoc::ToTk'
=>
undef
,
'Pod::Perldoc::ToXml'
=>
undef
,
'Pod::PlainText'
=>
'2.01'
,
'Pod::Text'
=>
'2.21'
,
'Pod::Text::Color'
=>
'1.04'
,
'Pod::Text::Overstrike'
=>
'1.1'
,
'Pod::Text::Termcap'
=>
'1.11'
,
'Pod::Usage'
=>
'1.16'
,
'SDBM_File'
=>
'1.04'
,
'Safe'
=>
'2.10'
,
'Scalar::Util'
=>
'1.13'
,
'SelfLoader'
=>
'1.0904'
,
'Shell'
=>
'0.5'
,
'Socket'
=>
'1.76'
,
'Storable'
=>
'2.08'
,
'Switch'
=>
'2.10'
,
'Symbol'
=>
'1.05'
,
'Sys::Hostname'
=>
'1.11'
,
'Sys::Syslog'
=>
'0.04'
,
'Term::ANSIColor'
=>
'1.07'
,
'Term::Cap'
=>
'1.08'
,
'Term::Complete'
=>
'1.401'
,
'Term::ReadLine'
=>
'1.01'
,
'Test'
=>
'1.24'
,
'Test::Builder'
=>
'0.17'
,
'Test::Harness'
=>
'2.30'
,
'Test::Harness::Straps'
=>
'0.15'
,
'Test::More'
=>
'0.47'
,
'Test::Simple'
=>
'0.47'
,
'Text::Abbrev'
=>
'1.01'
,
'Text::Balanced'
=>
'1.95'
,
'Text::Wrap'
=>
'2001.09291'
,
'Thread::Semaphore'
=>
'2.01'
,
'Tie::Array'
=>
'1.03'
,
'Tie::File'
=>
'0.97'
,
'Tie::RefHash'
=>
'1.31'
,
'Time::HiRes'
=>
'1.51'
,
'Time::Local'
=>
'1.07'
,
'UNIVERSAL'
=>
'1.01'
,
'Unicode'
=>
'4.0.0'
,
'Unicode::Collate'
=>
'0.28'
,
'Unicode::Normalize'
=>
'0.23'
,
'Unicode::UCD'
=>
'0.21'
,
'VMS::Filespec'
=>
'1.11'
,
'XS::APItest'
=>
'0.02'
,
'XSLoader'
=>
'0.02'
,
'attributes'
=>
'0.06'
,
'base'
=>
'2.03'
,
'bigint'
=>
'0.04'
,
'bignum'
=>
'0.14'
,
'bigrat'
=>
'0.06'
,
'bytes'
=>
'1.01'
,
'charnames'
=>
'1.02'
,
'diagnostics'
=>
'1.11'
,
'encoding'
=>
'1.47'
,
'fields'
=>
'2.03'
,
'filetest'
=>
'1.01'
,
'if'
=>
'0.03'
,
'lib'
=>
'0.5565'
,
'open'
=>
'1.02'
,
'overload'
=>
'1.01'
,
're'
=>
'0.04'
,
'sort'
=>
'1.02'
,
'strict'
=>
'1.03'
,
'threads'
=>
'1.00'
,
'threads::shared'
=>
'0.91'
,
'utf8'
=>
'1.02'
,
'vmsish'
=>
'1.01'
,
'warnings'
=>
'1.03'
,
},
removed
=> {
}
},
5.
008002
=> {
delta_from
=> 5.008001,
changed
=> {
'DB_File'
=>
'1.807'
,
'Devel::PPPort'
=>
'2.009'
,
'Digest::MD5'
=>
'2.30'
,
'I18N::LangTags'
=>
'0.29'
,
'I18N::LangTags::List'
=>
'0.29'
,
'MIME::Base64'
=>
'2.21'
,
'MIME::QuotedPrint'
=>
'2.21'
,
'Net::Domain'
=>
'2.19'
,
'Net::FTP'
=>
'2.72'
,
'Pod::Perldoc'
=>
'3.11'
,
'Time::HiRes'
=>
'1.52'
,
'Unicode::Collate'
=>
'0.30'
,
'Unicode::Normalize'
=>
'0.25'
,
},
removed
=> {
}
},
5.
008003
=> {
delta_from
=> 5.008002,
changed
=> {
'Benchmark'
=>
'1.052'
,
'CGI'
=>
'3.01'
,
'CGI::Carp'
=>
'1.27'
,
'CGI::Fast'
=>
'1.05'
,
'CGI::Pretty'
=>
'1.08'
,
'CGI::Util'
=>
'1.4'
,
'Cwd'
=>
'2.12'
,
'DB_File'
=>
'1.808'
,
'Devel::PPPort'
=>
'2.011'
,
'Digest'
=>
'1.05'
,
'Digest::MD5'
=>
'2.33'
,
'Digest::base'
=>
'1.00'
,
'Encode'
=>
'1.99'
,
'Exporter'
=>
'5.57'
,
'File::CheckTree'
=>
'4.3'
,
'File::Copy'
=>
'2.07'
,
'File::Find'
=>
'1.06'
,
'File::Spec'
=>
'0.87'
,
'FindBin'
=>
'1.44'
,
'Getopt::Std'
=>
'1.05'
,
'Math::BigFloat'
=>
'1.42'
,
'Math::BigInt'
=>
'1.68'
,
'Math::BigInt::Calc'
=>
'0.38'
,
'Math::BigInt::CalcEmu'
=>
'0.02'
,
'OS2::DLL'
=>
'1.02'
,
'POSIX'
=>
'1.07'
,
'PerlIO'
=>
'1.03'
,
'PerlIO::via::QuotedPrint'
=>
'0.06'
,
'Pod::Html'
=>
'1.0502'
,
'Pod::Parser'
=>
'1.14'
,
'Pod::Perldoc'
=>
'3.12'
,
'Pod::PlainText'
=>
'2.02'
,
'Storable'
=>
'2.09'
,
'Test::Harness'
=>
'2.40'
,
'Test::Harness::Assert'
=>
'0.02'
,
'Test::Harness::Iterator'
=>
'0.02'
,
'Test::Harness::Straps'
=>
'0.19'
,
'Tie::Hash'
=>
'1.01'
,
'Unicode::Collate'
=>
'0.33'
,
'Unicode::Normalize'
=>
'0.28'
,
'XS::APItest'
=>
'0.03'
,
'base'
=>
'2.04'
,
'diagnostics'
=>
'1.12'
,
'encoding'
=>
'1.48'
,
'threads'
=>
'1.01'
,
'threads::shared'
=>
'0.92'
,
},
removed
=> {
'Math::BigInt::Scalar'
=> 1,
}
},
5.
008004
=> {
delta_from
=> 5.008003,
changed
=> {
'Attribute::Handlers'
=>
'0.78_01'
,
'B::Assembler'
=>
'0.07'
,
'B::Concise'
=>
'0.60'
,
'B::Deparse'
=>
'0.66'
,
'Benchmark'
=>
'1.06'
,
'CGI'
=>
'3.04'
,
'Carp'
=>
'1.02'
,
'Cwd'
=>
'2.17'
,
'DBM_Filter'
=>
'0.01'
,
'DBM_Filter::compress'
=>
'0.01'
,
'DBM_Filter::encode'
=>
'0.01'
,
'DBM_Filter::int32'
=>
'0.01'
,
'DBM_Filter::null'
=>
'0.01'
,
'DBM_Filter::utf8'
=>
'0.01'
,
'Digest'
=>
'1.06'
,
'DynaLoader'
=>
'1.05'
,
'Encode'
=>
'1.99_01'
,
'Encode::CN::HZ'
=>
'1.0501'
,
'Exporter'
=>
'5.58'
,
'Exporter::Heavy'
=>
'5.57'
,
'ExtUtils::Liblist::Kid'
=>
'1.3001'
,
'ExtUtils::MM_NW5'
=>
'2.07_02'
,
'ExtUtils::MM_Win95'
=>
'0.0301'
,
'File::Find'
=>
'1.07'
,
'IO::Handle'
=>
'1.24'
,
'IO::Pipe'
=>
'1.123'
,
'IPC::Open3'
=>
'1.0106'
,
'Locale::Maketext'
=>
'1.08'
,
'MIME::Base64'
=>
'3.01'
,
'MIME::QuotedPrint'
=>
'3.01'
,
'Math::BigFloat'
=>
'1.44'
,
'Math::BigInt'
=>
'1.70'
,
'Math::BigInt::Calc'
=>
'0.40'
,
'Math::BigInt::CalcEmu'
=>
'0.04'
,
'Math::BigRat'
=>
'0.12'
,
'ODBM_File'
=>
'1.05'
,
'POSIX'
=>
'1.08'
,
'Shell'
=>
'0.5.2'
,
'Socket'
=>
'1.77'
,
'Storable'
=>
'2.12'
,
'Sys::Syslog'
=>
'0.05'
,
'Term::ANSIColor'
=>
'1.08'
,
'Time::HiRes'
=>
'1.59'
,
'Unicode'
=>
'4.0.1'
,
'Unicode::UCD'
=>
'0.22'
,
'base'
=>
'2.05'
,
'bigint'
=>
'0.05'
,
'bignum'
=>
'0.15'
,
'charnames'
=>
'1.03'
,
'open'
=>
'1.03'
,
'threads'
=>
'1.03'
,
'utf8'
=>
'1.03'
,
},
removed
=> {
}
},
5.
008005
=> {
delta_from
=> 5.008004,
changed
=> {
'B::Concise'
=>
'0.61'
,
'B::Deparse'
=>
'0.67'
,
'CGI'
=>
'3.05'
,
'CGI::Carp'
=>
'1.28'
,
'CGI::Util'
=>
'1.5'
,
'Carp'
=>
'1.03'
,
'Carp::Heavy'
=>
'1.03'
,
'Cwd'
=>
'2.19'
,
'DB_File'
=>
'1.809'
,
'Digest'
=>
'1.08'
,
'Encode'
=>
'2.01'
,
'Encode::Alias'
=>
'2.00'
,
'Encode::Byte'
=>
'2.00'
,
'Encode::CJKConstants'
=>
'2.00'
,
'Encode::CN'
=>
'2.00'
,
'Encode::CN::HZ'
=>
'2.01'
,
'Encode::Config'
=>
'2.00'
,
'Encode::EBCDIC'
=>
'2.00'
,
'Encode::Encoder'
=>
'2.00'
,
'Encode::Encoding'
=>
'2.00'
,
'Encode::Guess'
=>
'2.00'
,
'Encode::JP'
=>
'2.00'
,
'Encode::JP::H2Z'
=>
'2.00'
,
'Encode::JP::JIS7'
=>
'2.00'
,
'Encode::KR'
=>
'2.00'
,
'Encode::KR::2022_KR'
=>
'2.00'
,
'Encode::MIME::Header'
=>
'2.00'
,
'Encode::Symbol'
=>
'2.00'
,
'Encode::TW'
=>
'2.00'
,
'Encode::Unicode'
=>
'2.00'
,
'Encode::Unicode::UTF7'
=>
'2.01'
,
'File::Basename'
=>
'2.73'
,
'File::Copy'
=>
'2.08'
,
'File::Glob'
=>
'1.03'
,
'FileCache'
=>
'1.04_01'
,
'I18N::LangTags'
=>
'0.33'
,
'I18N::LangTags::Detect'
=>
'1.03'
,
'List::Util'
=>
'1.14'
,
'Locale::Constants'
=>
'2.07'
,
'Locale::Country'
=>
'2.07'
,
'Locale::Currency'
=>
'2.07'
,
'Locale::Language'
=>
'2.07'
,
'Locale::Maketext'
=>
'1.09'
,
'Locale::Script'
=>
'2.07'
,
'Net::Cmd'
=>
'2.26'
,
'Net::FTP'
=>
'2.75'
,
'Net::NNTP'
=>
'2.23'
,
'Net::POP3'
=>
'2.28'
,
'Net::SMTP'
=>
'2.29'
,
'Net::Time'
=>
'2.10'
,
'Pod::Checker'
=>
'1.42'
,
'Pod::Find'
=>
'0.2401'
,
'Pod::LaTeX'
=>
'0.56'
,
'Pod::ParseUtils'
=>
'1.2'
,
'Pod::Perldoc'
=>
'3.13'
,
'Safe'
=>
'2.11'
,
'Scalar::Util'
=>
'1.14'
,
'Shell'
=>
'0.6'
,
'Storable'
=>
'2.13'
,
'Term::Cap'
=>
'1.09'
,
'Test'
=>
'1.25'
,
'Test::Harness'
=>
'2.42'
,
'Text::ParseWords'
=>
'3.22'
,
'Text::Wrap'
=>
'2001.09292'
,
'Time::Local'
=>
'1.10'
,
'Unicode::Collate'
=>
'0.40'
,
'Unicode::Normalize'
=>
'0.30'
,
'XS::APItest'
=>
'0.04'
,
'autouse'
=>
'1.04'
,
'base'
=>
'2.06'
,
'charnames'
=>
'1.04'
,
'diagnostics'
=>
'1.13'
,
'encoding'
=>
'2.00'
,
'threads'
=>
'1.05'
,
'utf8'
=>
'1.04'
,
},
removed
=> {
}
},
5.
008006
=> {
delta_from
=> 5.008005,
changed
=> {
'B'
=>
'1.07'
,
'B::C'
=>
'1.04'
,
'B::Concise'
=>
'0.64'
,
'B::Debug'
=>
'1.02'
,
'B::Deparse'
=>
'0.69'
,
'B::Lint'
=>
'1.03'
,
'B::Showlex'
=>
'1.02'
,
'Cwd'
=>
'3.01'
,
'DB_File'
=>
'1.810'
,
'Data::Dumper'
=>
'2.121_02'
,
'Devel::PPPort'
=>
'3.03'
,
'Devel::Peek'
=>
'1.02'
,
'Encode'
=>
'2.08'
,
'Encode::Alias'
=>
'2.02'
,
'Encode::Encoding'
=>
'2.02'
,
'Encode::JP'
=>
'2.01'
,
'Encode::Unicode'
=>
'2.02'
,
'Exporter::Heavy'
=>
'5.58'
,
'ExtUtils::Constant'
=>
'0.1401'
,
'File::Spec'
=>
'3.01'
,
'File::Spec::Win32'
=>
'1.5'
,
'I18N::LangTags'
=>
'0.35'
,
'I18N::LangTags::List'
=>
'0.35'
,
'MIME::Base64'
=>
'3.05'
,
'MIME::QuotedPrint'
=>
'3.03'
,
'Math::BigFloat'
=>
'1.47'
,
'Math::BigInt'
=>
'1.73'
,
'Math::BigInt::Calc'
=>
'0.43'
,
'Math::BigRat'
=>
'0.13'
,
'Text::ParseWords'
=>
'3.23'
,
'Time::HiRes'
=>
'1.65'
,
'XS::APItest'
=>
'0.05'
,
'diagnostics'
=>
'1.14'
,
'encoding'
=>
'2.01'
,
'open'
=>
'1.04'
,
'overload'
=>
'1.02'
,
},
removed
=> {
}
},
5.
008007
=> {
delta_from
=> 5.008006,
changed
=> {
'B'
=>
'1.09'
,
'B::Concise'
=>
'0.65'
,
'B::Deparse'
=>
'0.7'
,
'B::Disassembler'
=>
'1.04'
,
'B::Terse'
=>
'1.03'
,
'Benchmark'
=>
'1.07'
,
'CGI'
=>
'3.10'
,
'CGI::Carp'
=>
'1.29'
,
'CGI::Cookie'
=>
'1.25'
,
'Carp'
=>
'1.04'
,
'Carp::Heavy'
=>
'1.04'
,
'Class::ISA'
=>
'0.33'
,
'Cwd'
=>
'3.05'
,
'DB_File'
=>
'1.811'
,
'Data::Dumper'
=>
'2.121_04'
,
'Devel::DProf'
=>
'20050310.00'
,
'Devel::PPPort'
=>
'3.06'
,
'Digest'
=>
'1.10'
,
'Digest::file'
=>
'0.01'
,
'Encode'
=>
'2.10'
,
'Encode::Alias'
=>
'2.03'
,
'Errno'
=>
'1.09_01'
,
'ExtUtils::Constant'
=>
'0.16'
,
'ExtUtils::Constant::Base'
=>
'0.01'
,
'ExtUtils::Constant::Utils'
=>
'0.01'
,
'ExtUtils::Constant::XS'
=>
'0.01'
,
'File::Find'
=>
'1.09'
,
'File::Glob'
=>
'1.04'
,
'File::Path'
=>
'1.07'
,
'File::Spec'
=>
'3.05'
,
'File::Temp'
=>
'0.16'
,
'FileCache'
=>
'1.05'
,
'IO::File'
=>
'1.11'
,
'IO::Socket::INET'
=>
'1.28'
,
'Math::BigFloat'
=>
'1.51'
,
'Math::BigInt'
=>
'1.77'
,
'Math::BigInt::Calc'
=>
'0.47'
,
'Math::BigInt::CalcEmu'
=>
'0.05'
,
'Math::BigRat'
=>
'0.15'
,
'Pod::Find'
=>
'1.3'
,
'Pod::Html'
=>
'1.0503'
,
'Pod::InputObjects'
=>
'1.3'
,
'Pod::LaTeX'
=>
'0.58'
,
'Pod::ParseUtils'
=>
'1.3'
,
'Pod::Parser'
=>
'1.3'
,
'Pod::Perldoc'
=>
'3.14'
,
'Pod::Select'
=>
'1.3'
,
'Pod::Usage'
=>
'1.3'
,
'SelectSaver'
=>
'1.01'
,
'Symbol'
=>
'1.06'
,
'Sys::Syslog'
=>
'0.06'
,
'Term::ANSIColor'
=>
'1.09'
,
'Term::Complete'
=>
'1.402'
,
'Test::Builder'
=>
'0.22'
,
'Test::Harness'
=>
'2.48'
,
'Test::Harness::Point'
=>
'0.01'
,
'Test::Harness::Straps'
=>
'0.23'
,
'Test::More'
=>
'0.54'
,
'Test::Simple'
=>
'0.54'
,
'Text::ParseWords'
=>
'3.24'
,
'Text::Wrap'
=>
'2001.09293'
,
'Tie::RefHash'
=>
'1.32'
,
'Time::HiRes'
=>
'1.66'
,
'Time::Local'
=>
'1.11'
,
'Unicode'
=>
'4.1.0'
,
'Unicode::Normalize'
=>
'0.32'
,
'Unicode::UCD'
=>
'0.23'
,
'Win32'
=>
'0.24'
,
'XS::APItest'
=>
'0.06'
,
'base'
=>
'2.07'
,
'bigint'
=>
'0.07'
,
'bignum'
=>
'0.17'
,
'bigrat'
=>
'0.08'
,
'bytes'
=>
'1.02'
,
'constant'
=>
'1.05'
,
'overload'
=>
'1.03'
,
'threads::shared'
=>
'0.93'
,
'utf8'
=>
'1.05'
,
},
removed
=> {
'JNI'
=> 1,
'JPL::AutoLoader'
=> 1,
'JPL::Class'
=> 1,
'JPL::Compile'
=> 1,
'OS2::DLL'
=> 1,
'OS2::ExtAttr'
=> 1,
'OS2::PrfDB'
=> 1,
'OS2::Process'
=> 1,
'OS2::REXX'
=> 1,
}
},
5.
008008
=> {
delta_from
=> 5.008007,
changed
=> {
'Attribute::Handlers'
=>
'0.78_02'
,
'B'
=>
'1.09_01'
,
'B::Bblock'
=>
'1.02_01'
,
'B::Bytecode'
=>
'1.01_01'
,
'B::C'
=>
'1.04_01'
,
'B::CC'
=>
'1.00_01'
,
'B::Concise'
=>
'0.66'
,
'B::Debug'
=>
'1.02_01'
,
'B::Deparse'
=>
'0.71'
,
'B::Disassembler'
=>
'1.05'
,
'B::Terse'
=>
'1.03_01'
,
'ByteLoader'
=>
'0.06'
,
'CGI'
=>
'3.15'
,
'CGI::Cookie'
=>
'1.26'
,
'CPAN'
=>
'1.76_02'
,
'Cwd'
=>
'3.12'
,
'DB'
=>
'1.01'
,
'DB_File'
=>
'1.814'
,
'Data::Dumper'
=>
'2.121_08'
,
'Devel::DProf'
=>
'20050603.00'
,
'Devel::PPPort'
=>
'3.06_01'
,
'Devel::Peek'
=>
'1.03'
,
'Digest'
=>
'1.14'
,
'Digest::MD5'
=>
'2.36'
,
'Digest::file'
=>
'1.00'
,
'Dumpvalue'
=>
'1.12'
,
'Encode'
=>
'2.12'
,
'Encode::Alias'
=>
'2.04'
,
'Encode::Config'
=>
'2.01'
,
'Encode::MIME::Header'
=>
'2.01'
,
'Encode::MIME::Header::ISO_2022_JP'
=>
'1.01'
,
'English'
=>
'1.02'
,
'ExtUtils::Command'
=>
'1.09'
,
'ExtUtils::Command::MM'
=>
'0.05'
,
'ExtUtils::Constant'
=>
'0.17'
,
'ExtUtils::Embed'
=>
'1.26'
,
'ExtUtils::Install'
=>
'1.33'
,
'ExtUtils::Liblist::Kid'
=>
'1.3'
,
'ExtUtils::MM'
=>
'0.05'
,
'ExtUtils::MM_AIX'
=>
'0.03'
,
'ExtUtils::MM_Any'
=>
'0.13'
,
'ExtUtils::MM_BeOS'
=>
'1.05'
,
'ExtUtils::MM_Cygwin'
=>
'1.08'
,
'ExtUtils::MM_MacOS'
=>
'1.08'
,
'ExtUtils::MM_NW5'
=>
'2.08'
,
'ExtUtils::MM_OS2'
=>
'1.05'
,
'ExtUtils::MM_QNX'
=>
'0.02'
,
'ExtUtils::MM_Unix'
=>
'1.50'
,
'ExtUtils::MM_VMS'
=>
'5.73'
,
'ExtUtils::MM_VOS'
=>
'0.02'
,
'ExtUtils::MM_Win32'
=>
'1.12'
,
'ExtUtils::MM_Win95'
=>
'0.04'
,
'ExtUtils::MakeMaker'
=>
'6.30'
,
'ExtUtils::MakeMaker::Config'
=>
'0.02'
,
'ExtUtils::Manifest'
=>
'1.46'
,
'File::Basename'
=>
'2.74'
,
'File::Copy'
=>
'2.09'
,
'File::Find'
=>
'1.10'
,
'File::Glob'
=>
'1.05'
,
'File::Path'
=>
'1.08'
,
'File::Spec'
=>
'3.12'
,
'File::Spec::Win32'
=>
'1.6'
,
'FileCache'
=>
'1.06'
,
'Filter::Simple'
=>
'0.82'
,
'FindBin'
=>
'1.47'
,
'GDBM_File'
=>
'1.08'
,
'Getopt::Long'
=>
'2.35'
,
'IO'
=>
'1.22'
,
'IO::Dir'
=>
'1.05'
,
'IO::File'
=>
'1.13'
,
'IO::Handle'
=>
'1.25'
,
'IO::Pipe'
=>
'1.13'
,
'IO::Poll'
=>
'0.07'
,
'IO::Seekable'
=>
'1.10'
,
'IO::Select'
=>
'1.17'
,
'IO::Socket'
=>
'1.29'
,
'IO::Socket::INET'
=>
'1.29'
,
'IO::Socket::UNIX'
=>
'1.22'
,
'IPC::Open2'
=>
'1.02'
,
'IPC::Open3'
=>
'1.02'
,
'List::Util'
=>
'1.18'
,
'MIME::Base64'
=>
'3.07'
,
'MIME::QuotedPrint'
=>
'3.07'
,
'Math::Complex'
=>
'1.35'
,
'Math::Trig'
=>
'1.03'
,
'NDBM_File'
=>
'1.06'
,
'ODBM_File'
=>
'1.06'
,
'Opcode'
=>
'1.06'
,
'POSIX'
=>
'1.09'
,
'PerlIO'
=>
'1.04'
,
'PerlIO::encoding'
=>
'0.09'
,
'PerlIO::scalar'
=>
'0.04'
,
'PerlIO::via'
=>
'0.03'
,
'Pod::Checker'
=>
'1.43'
,
'Pod::Find'
=>
'1.34'
,
'Pod::Functions'
=>
'1.03'
,
'Pod::Html'
=>
'1.0504'
,
'Pod::ParseUtils'
=>
'1.33'
,
'Pod::Parser'
=>
'1.32'
,
'Pod::Usage'
=>
'1.33'
,
'SDBM_File'
=>
'1.05'
,
'Safe'
=>
'2.12'
,
'Scalar::Util'
=>
'1.18'
,
'Socket'
=>
'1.78'
,
'Storable'
=>
'2.15'
,
'Switch'
=>
'2.10_01'
,
'Sys::Syslog'
=>
'0.13'
,
'Term::ANSIColor'
=>
'1.10'
,
'Term::ReadLine'
=>
'1.02'
,
'Test::Builder'
=>
'0.32'
,
'Test::Builder::Module'
=>
'0.02'
,
'Test::Builder::Tester'
=>
'1.02'
,
'Test::Builder::Tester::Color'
=>
undef
,
'Test::Harness'
=>
'2.56'
,
'Test::Harness::Straps'
=>
'0.26'
,
'Test::More'
=>
'0.62'
,
'Test::Simple'
=>
'0.62'
,
'Text::Tabs'
=>
'2005.0824'
,
'Text::Wrap'
=>
'2005.082401'
,
'Tie::Hash'
=>
'1.02'
,
'Time::HiRes'
=>
'1.86'
,
'Unicode::Collate'
=>
'0.52'
,
'Unicode::UCD'
=>
'0.24'
,
'User::grent'
=>
'1.01'
,
'Win32'
=>
'0.2601'
,
'XS::APItest'
=>
'0.08'
,
'XS::Typemap'
=>
'0.02'
,
'XSLoader'
=>
'0.06'
,
'attrs'
=>
'1.02'
,
'autouse'
=>
'1.05'
,
'blib'
=>
'1.03'
,
'charnames'
=>
'1.05'
,
'diagnostics'
=>
'1.15'
,
'encoding'
=>
'2.02'
,
'if'
=>
'0.05'
,
'open'
=>
'1.05'
,
'ops'
=>
'1.01'
,
'overload'
=>
'1.04'
,
're'
=>
'0.05'
,
'threads'
=>
'1.07'
,
'threads::shared'
=>
'0.94'
,
'utf8'
=>
'1.06'
,
'vmsish'
=>
'1.02'
,
'warnings'
=>
'1.05'
,
'warnings::register'
=>
'1.01'
,
},
removed
=> {
}
},
5.
008009
=> {
delta_from
=> 5.008008,
changed
=> {
'Attribute::Handlers'
=>
'0.78_03'
,
'AutoLoader'
=>
'5.67'
,
'AutoSplit'
=>
'1.06'
,
'B'
=>
'1.19'
,
'B::Asmdata'
=>
'1.02'
,
'B::Assembler'
=>
'0.08'
,
'B::C'
=>
'1.05'
,
'B::Concise'
=>
'0.76'
,
'B::Debug'
=>
'1.05'
,
'B::Deparse'
=>
'0.87'
,
'B::Lint'
=>
'1.11'
,
'B::Lint::Debug'
=>
undef
,
'B::Terse'
=>
'1.05'
,
'Benchmark'
=>
'1.1'
,
'CGI'
=>
'3.42'
,
'CGI::Carp'
=>
'1.30_01'
,
'CGI::Cookie'
=>
'1.29'
,
'CGI::Fast'
=>
'1.07'
,
'CGI::Util'
=>
'1.5_01'
,
'CPAN'
=>
'1.9301'
,
'CPAN::Debug'
=>
'5.5'
,
'CPAN::DeferedCode'
=>
'5.50'
,
'CPAN::Distroprefs'
=>
'6'
,
'CPAN::FirstTime'
=>
'5.5_01'
,
'CPAN::HandleConfig'
=>
'5.5'
,
'CPAN::Kwalify'
=>
'5.50'
,
'CPAN::Nox'
=>
'5.50'
,
'CPAN::Queue'
=>
'5.5'
,
'CPAN::Tarzip'
=>
'5.5'
,
'CPAN::Version'
=>
'5.5'
,
'Carp'
=>
'1.10'
,
'Carp::Heavy'
=>
'1.10'
,
'Cwd'
=>
'3.29'
,
'DBM_Filter'
=>
'0.02'
,
'DBM_Filter::compress'
=>
'0.02'
,
'DBM_Filter::encode'
=>
'0.02'
,
'DBM_Filter::int32'
=>
'0.02'
,
'DBM_Filter::null'
=>
'0.02'
,
'DBM_Filter::utf8'
=>
'0.02'
,
'DB_File'
=>
'1.817'
,
'Data::Dumper'
=>
'2.121_17'
,
'Devel::DProf'
=>
'20080331.00'
,
'Devel::InnerPackage'
=>
'0.3'
,
'Devel::PPPort'
=>
'3.14'
,
'Devel::Peek'
=>
'1.04'
,
'Digest'
=>
'1.15'
,
'Digest::MD5'
=>
'2.37'
,
'DirHandle'
=>
'1.02'
,
'DynaLoader'
=>
'1.09'
,
'Encode'
=>
'2.26'
,
'Encode::Alias'
=>
'2.10'
,
'Encode::Byte'
=>
'2.03'
,
'Encode::CJKConstants'
=>
'2.02'
,
'Encode::CN'
=>
'2.02'
,
'Encode::CN::HZ'
=>
'2.05'
,
'Encode::Config'
=>
'2.05'
,
'Encode::EBCDIC'
=>
'2.02'
,
'Encode::Encoder'
=>
'2.01'
,
'Encode::Encoding'
=>
'2.05'
,
'Encode::GSM0338'
=>
'2.01'
,
'Encode::Guess'
=>
'2.02'
,
'Encode::JP'
=>
'2.03'
,
'Encode::JP::H2Z'
=>
'2.02'
,
'Encode::JP::JIS7'
=>
'2.04'
,
'Encode::KR'
=>
'2.02'
,
'Encode::KR::2022_KR'
=>
'2.02'
,
'Encode::MIME::Header'
=>
'2.05'
,
'Encode::MIME::Header::ISO_2022_JP'
=>
'1.03'
,
'Encode::MIME::Name'
=>
'1.01'
,
'Encode::Symbol'
=>
'2.02'
,
'Encode::TW'
=>
'2.02'
,
'Encode::Unicode'
=>
'2.05'
,
'Encode::Unicode::UTF7'
=>
'2.04'
,
'English'
=>
'1.03'
,
'Errno'
=>
'1.10'
,
'Exporter'
=>
'5.63'
,
'Exporter::Heavy'
=>
'5.63'
,
'ExtUtils::Command'
=>
'1.15'
,
'ExtUtils::Command::MM'
=>
'6.48'
,
'ExtUtils::Constant'
=>
'0.21'
,
'ExtUtils::Constant::Base'
=>
'0.04'
,
'ExtUtils::Constant::ProxySubs'
=>
'0.06'
,
'ExtUtils::Constant::Utils'
=>
'0.02'
,
'ExtUtils::Constant::XS'
=>
'0.02'
,
'ExtUtils::Embed'
=>
'1.28'
,
'ExtUtils::Install'
=>
'1.50_01'
,
'ExtUtils::Installed'
=>
'1.43'
,
'ExtUtils::Liblist'
=>
'6.48'
,
'ExtUtils::Liblist::Kid'
=>
'6.48'
,
'ExtUtils::MM'
=>
'6.48'
,
'ExtUtils::MM_AIX'
=>
'6.48'
,
'ExtUtils::MM_Any'
=>
'6.48'
,
'ExtUtils::MM_BeOS'
=>
'6.48'
,
'ExtUtils::MM_Cygwin'
=>
'6.48'
,
'ExtUtils::MM_DOS'
=>
'6.48'
,
'ExtUtils::MM_Darwin'
=>
'6.48'
,
'ExtUtils::MM_MacOS'
=>
'6.48'
,
'ExtUtils::MM_NW5'
=>
'6.48'
,
'ExtUtils::MM_OS2'
=>
'6.48'
,
'ExtUtils::MM_QNX'
=>
'6.48'
,
'ExtUtils::MM_UWIN'
=>
'6.48'
,
'ExtUtils::MM_Unix'
=>
'6.48'
,
'ExtUtils::MM_VMS'
=>
'6.48'
,
'ExtUtils::MM_VOS'
=>
'6.48'
,
'ExtUtils::MM_Win32'
=>
'6.48'
,
'ExtUtils::MM_Win95'
=>
'6.48'
,
'ExtUtils::MY'
=>
'6.48'
,
'ExtUtils::MakeMaker'
=>
'6.48'
,
'ExtUtils::MakeMaker::Config'
=>
'6.48'
,
'ExtUtils::MakeMaker::bytes'
=>
'6.48'
,
'ExtUtils::MakeMaker::vmsish'
=>
'6.48'
,
'ExtUtils::Manifest'
=>
'1.55'
,
'ExtUtils::Mkbootstrap'
=>
'6.48'
,
'ExtUtils::Mksymlists'
=>
'6.48'
,
'ExtUtils::Packlist'
=>
'1.43'
,
'ExtUtils::ParseXS'
=>
'2.19'
,
'ExtUtils::XSSymSet'
=>
'1.1'
,
'ExtUtils::testlib'
=>
'6.48'
,
'Fatal'
=>
'1.06'
,
'Fcntl'
=>
'1.06'
,
'File::Basename'
=>
'2.77'
,
'File::CheckTree'
=>
'4.4'
,
'File::Compare'
=>
'1.1005'
,
'File::Copy'
=>
'2.13'
,
'File::DosGlob'
=>
'1.01'
,
'File::Find'
=>
'1.13'
,
'File::Glob'
=>
'1.06'
,
'File::Path'
=>
'2.07_02'
,
'File::Spec'
=>
'3.29'
,
'File::Spec::Cygwin'
=>
'3.29'
,
'File::Spec::Epoc'
=>
'3.29'
,
'File::Spec::Functions'
=>
'3.29'
,
'File::Spec::Mac'
=>
'3.29'
,
'File::Spec::OS2'
=>
'3.29'
,
'File::Spec::Unix'
=>
'3.29'
,
'File::Spec::VMS'
=>
'3.29'
,
'File::Spec::Win32'
=>
'3.29'
,
'File::Temp'
=>
'0.20'
,
'File::stat'
=>
'1.01'
,
'FileCache'
=>
'1.07'
,
'Filter::Simple'
=>
'0.83'
,
'Filter::Util::Call'
=>
'1.07'
,
'FindBin'
=>
'1.49'
,
'GDBM_File'
=>
'1.09'
,
'Getopt::Long'
=>
'2.37'
,
'Getopt::Std'
=>
'1.06'
,
'Hash::Util'
=>
'0.06'
,
'IO'
=>
'1.23'
,
'IO::Dir'
=>
'1.06'
,
'IO::File'
=>
'1.14'
,
'IO::Handle'
=>
'1.27'
,
'IO::Socket'
=>
'1.30'
,
'IO::Socket::INET'
=>
'1.31'
,
'IO::Socket::UNIX'
=>
'1.23'
,
'IPC::Msg'
=>
'2.00'
,
'IPC::Open2'
=>
'1.03'
,
'IPC::Open3'
=>
'1.03'
,
'IPC::Semaphore'
=>
'2.00'
,
'IPC::SharedMem'
=>
'2.00'
,
'IPC::SysV'
=>
'2.00'
,
'List::Util'
=>
'1.19'
,
'Locale::Maketext'
=>
'1.13'
,
'Locale::Maketext::Guts'
=>
'1.13'
,
'Locale::Maketext::GutsLoader'
=>
'1.13'
,
'Math::BigFloat'
=>
'1.60'
,
'Math::BigInt'
=>
'1.89'
,
'Math::BigInt::Calc'
=>
'0.52'
,
'Math::BigRat'
=>
'0.22'
,
'Math::Complex'
=>
'1.54'
,
'Math::Trig'
=>
'1.18'
,
'Module::CoreList'
=>
'2.17'
,
'Module::Pluggable'
=>
'3.8'
,
'Module::Pluggable::Object'
=>
'3.6'
,
'NDBM_File'
=>
'1.07'
,
'NEXT'
=>
'0.61'
,
'Net::Cmd'
=>
'2.29'
,
'Net::Config'
=>
'1.11'
,
'Net::Domain'
=>
'2.20'
,
'Net::FTP'
=>
'2.77'
,
'Net::FTP::A'
=>
'1.18'
,
'Net::NNTP'
=>
'2.24'
,
'Net::POP3'
=>
'2.29'
,
'Net::Ping'
=>
'2.35'
,
'Net::SMTP'
=>
'2.31'
,
'O'
=>
'1.01'
,
'ODBM_File'
=>
'1.07'
,
'Opcode'
=>
'1.0601'
,
'POSIX'
=>
'1.15'
,
'PerlIO'
=>
'1.05'
,
'PerlIO::encoding'
=>
'0.11'
,
'PerlIO::scalar'
=>
'0.06'
,
'PerlIO::via'
=>
'0.05'
,
'Pod::Html'
=>
'1.09'
,
'Pod::ParseUtils'
=>
'1.35'
,
'Pod::Parser'
=>
'1.35'
,
'Pod::Select'
=>
'1.35'
,
'Pod::Usage'
=>
'1.35'
,
'SDBM_File'
=>
'1.06'
,
'Safe'
=>
'2.16'
,
'Scalar::Util'
=>
'1.19'
,
'SelfLoader'
=>
'1.17'
,
'Shell'
=>
'0.72'
,
'Socket'
=>
'1.81'
,
'Storable'
=>
'2.19'
,
'Switch'
=>
'2.13'
,
'Sys::Syslog'
=>
'0.27'
,
'Sys::Syslog::win32::Win32'
=>
undef
,
'Term::ANSIColor'
=>
'1.12'
,
'Term::Cap'
=>
'1.12'
,
'Term::ReadLine'
=>
'1.03'
,
'Test::Builder'
=>
'0.80'
,
'Test::Builder::Module'
=>
'0.80'
,
'Test::Builder::Tester'
=>
'1.13'
,
'Test::Harness'
=>
'2.64'
,
'Test::Harness::Results'
=>
'0.01_01'
,
'Test::Harness::Straps'
=>
'0.26_01'
,
'Test::Harness::Util'
=>
'0.01'
,
'Test::More'
=>
'0.80'
,
'Test::Simple'
=>
'0.80'
,
'Text::Balanced'
=>
'1.98'
,
'Text::ParseWords'
=>
'3.27'
,
'Text::Soundex'
=>
'3.03'
,
'Text::Tabs'
=>
'2007.1117'
,
'Text::Wrap'
=>
'2006.1117'
,
'Thread'
=>
'2.01'
,
'Thread::Queue'
=>
'2.11'
,
'Thread::Semaphore'
=>
'2.09'
,
'Tie::Handle'
=>
'4.2'
,
'Tie::Hash'
=>
'1.03'
,
'Tie::Memoize'
=>
'1.1'
,
'Tie::RefHash'
=>
'1.38'
,
'Tie::Scalar'
=>
'1.01'
,
'Tie::StdHandle'
=>
'4.2'
,
'Time::HiRes'
=>
'1.9715'
,
'Time::Local'
=>
'1.1901'
,
'Time::gmtime'
=>
'1.03'
,
'Unicode'
=>
'5.1.0'
,
'Unicode::Normalize'
=>
'1.02'
,
'Unicode::UCD'
=>
'0.25'
,
'VMS::DCLsym'
=>
'1.03'
,
'VMS::Stdio'
=>
'2.4'
,
'Win32'
=>
'0.38'
,
'Win32API::File'
=>
'0.1001_01'
,
'Win32API::File::ExtUtils::Myconst2perl'
=>
'1'
,
'Win32CORE'
=>
'0.02'
,
'XS::APItest'
=>
'0.15'
,
'XS::Typemap'
=>
'0.03'
,
'XSLoader'
=>
'0.10'
,
'attributes'
=>
'0.09'
,
'autouse'
=>
'1.06'
,
'base'
=>
'2.13'
,
'bigint'
=>
'0.23'
,
'bignum'
=>
'0.23'
,
'bigrat'
=>
'0.23'
,
'blib'
=>
'1.04'
,
'charnames'
=>
'1.06'
,
'constant'
=>
'1.17'
,
'diagnostics'
=>
'1.16'
,
'encoding'
=>
'2.6_01'
,
'fields'
=>
'2.12'
,
'filetest'
=>
'1.02'
,
'lib'
=>
'0.61'
,
'open'
=>
'1.06'
,
'ops'
=>
'1.02'
,
'overload'
=>
'1.06'
,
're'
=>
'0.0601'
,
'sigtrap'
=>
'1.04'
,
'threads'
=>
'1.71'
,
'threads::shared'
=>
'1.27'
,
'utf8'
=>
'1.07'
,
'warnings'
=>
'1.05_01'
,
},
removed
=> {
}
},
5.
009
=> {
delta_from
=> 5.008002,
changed
=> {
'B'
=>
'1.03'
,
'B::C'
=>
'1.03'
,
'B::Concise'
=>
'0.57'
,
'B::Deparse'
=>
'0.65'
,
'DB_File'
=>
'1.806'
,
'Devel::PPPort'
=>
'2.008'
,
'English'
=>
'1.02'
,
'Fatal'
=>
'1.04'
,
'OS2::DLL'
=>
'1.02'
,
'Opcode'
=>
'1.06'
,
'Time::HiRes'
=>
'1.51'
,
'Unicode::Collate'
=>
'0.28'
,
'Unicode::Normalize'
=>
'0.23'
,
'XSLoader'
=>
'0.03'
,
'assertions'
=>
'0.01'
,
'assertions::activate'
=>
'0.01'
,
'overload'
=>
'1.02'
,
'version'
=>
'0.29'
,
},
removed
=> {
}
},
5.
009001
=> {
delta_from
=> 5.008004,
changed
=> {
'B'
=>
'1.05'
,
'B::Assembler'
=>
'0.06'
,
'B::C'
=>
'1.04'
,
'B::Concise'
=>
'0.59'
,
'B::Debug'
=>
'1.02'
,
'B::Deparse'
=>
'0.65'
,
'DB_File'
=>
'1.808_01'
,
'Devel::PPPort'
=>
'2.011_01'
,
'Digest'
=>
'1.05'
,
'DynaLoader'
=>
'1.04'
,
'English'
=>
'1.02'
,
'Exporter::Heavy'
=>
'5.567'
,
'ExtUtils::Command'
=>
'1.07'
,
'ExtUtils::Liblist::Kid'
=>
'1.3'
,
'ExtUtils::MM_Any'
=>
'0.0901'
,
'ExtUtils::MM_Cygwin'
=>
'1.07'
,
'ExtUtils::MM_NW5'
=>
'2.07_01'
,
'ExtUtils::MM_Unix'
=>
'1.45_01'
,
'ExtUtils::MM_VMS'
=>
'5.71_01'
,
'ExtUtils::MM_Win32'
=>
'1.10_01'
,
'ExtUtils::MM_Win95'
=>
'0.03'
,
'ExtUtils::MakeMaker'
=>
'6.21_02'
,
'ExtUtils::Manifest'
=>
'1.43'
,
'Fatal'
=>
'1.04'
,
'Getopt::Long'
=>
'2.3401'
,
'IO::Handle'
=>
'1.23'
,
'IO::Pipe'
=>
'1.122'
,
'IPC::Open3'
=>
'1.0105'
,
'MIME::Base64'
=>
'3.00_01'
,
'MIME::QuotedPrint'
=>
'3.00'
,
'Memoize'
=>
'1.01_01'
,
'ODBM_File'
=>
'1.04'
,
'Opcode'
=>
'1.06'
,
'POSIX'
=>
'1.07'
,
'Storable'
=>
'2.11'
,
'Time::HiRes'
=>
'1.56'
,
'Time::Local'
=>
'1.07_94'
,
'UNIVERSAL'
=>
'1.02'
,
'Unicode'
=>
'4.0.0'
,
'Unicode::UCD'
=>
'0.21'
,
'XSLoader'
=>
'0.03'
,
'assertions'
=>
'0.01'
,
'assertions::activate'
=>
'0.01'
,
'base'
=>
'2.04'
,
'if'
=>
'0.0401'
,
'open'
=>
'1.02'
,
'overload'
=>
'1.02'
,
'threads'
=>
'1.02'
,
'utf8'
=>
'1.02'
,
'version'
=>
'0.36'
,
},
removed
=> {
}
},
5.
009002
=> {
delta_from
=> 5.008007,
changed
=> {
'B'
=>
'1.07'
,
'B::Concise'
=>
'0.64'
,
'B::Deparse'
=>
'0.69'
,
'B::Disassembler'
=>
'1.03'
,
'B::Terse'
=>
'1.02'
,
'CGI'
=>
'3.07'
,
'Config::Extensions'
=>
'0.01'
,
'Devel::DProf'
=>
'20030813.00'
,
'DynaLoader'
=>
'1.07'
,
'Encode'
=>
'2.09'
,
'Encode::Alias'
=>
'2.02'
,
'English'
=>
'1.03'
,
'Exporter'
=>
'5.59'
,
'Exporter::Heavy'
=>
'5.59'
,
'ExtUtils::Command'
=>
'1.07'
,
'ExtUtils::Command::MM'
=>
'0.03_01'
,
'ExtUtils::Embed'
=>
'1.26'
,
'ExtUtils::Liblist::Kid'
=>
'1.3'
,
'ExtUtils::MM_Any'
=>
'0.10'
,
'ExtUtils::MM_Cygwin'
=>
'1.07'
,
'ExtUtils::MM_MacOS'
=>
'1.08'
,
'ExtUtils::MM_NW5'
=>
'2.07'
,
'ExtUtils::MM_Unix'
=>
'1.46_01'
,
'ExtUtils::MM_VMS'
=>
'5.71'
,
'ExtUtils::MM_Win32'
=>
'1.10'
,
'ExtUtils::MM_Win95'
=>
'0.03'
,
'ExtUtils::MakeMaker'
=>
'6.25'
,
'ExtUtils::Manifest'
=>
'1.44'
,
'Fatal'
=>
'1.04'
,
'File::Path'
=>
'1.06'
,
'FileCache'
=>
'1.04_01'
,
'Getopt::Long'
=>
'2.3401'
,
'IO::File'
=>
'1.10'
,
'IO::Socket::INET'
=>
'1.27'
,
'Math::BigFloat'
=>
'1.49'
,
'Math::BigInt'
=>
'1.75'
,
'Math::BigInt::Calc'
=>
'0.45'
,
'Math::BigRat'
=>
'0.14'
,
'Memoize'
=>
'1.01_01'
,
'Module::CoreList'
=>
'1.99'
,
'NEXT'
=>
'0.60_01'
,
'Opcode'
=>
'1.06'
,
'Pod::Html'
=>
'1.0502'
,
'Scalar::Util'
=>
'1.14_1'
,
'Storable'
=>
'2.14'
,
'Symbol'
=>
'1.05'
,
'Test::Harness'
=>
'2.46'
,
'Test::Harness::Straps'
=>
'0.20_01'
,
'Text::Balanced'
=>
'1.95_01'
,
'Text::Wrap'
=>
'2001.09292'
,
'UNIVERSAL'
=>
'1.02'
,
'Unicode'
=>
'4.0.1'
,
'Unicode::Normalize'
=>
'0.30'
,
'Unicode::UCD'
=>
'0.22'
,
'Win32'
=>
'0.23'
,
'XS::APItest'
=>
'0.05'
,
'XSLoader'
=>
'0.03'
,
'assertions'
=>
'0.01'
,
'assertions::activate'
=>
'0.01'
,
'base'
=>
'2.06'
,
'bigint'
=>
'0.06'
,
'bignum'
=>
'0.16'
,
'bigrat'
=>
'0.07'
,
'bytes'
=>
'1.01'
,
'encoding::warnings'
=>
'0.05'
,
'if'
=>
'0.0401'
,
're'
=>
'0.05'
,
'threads::shared'
=>
'0.92'
,
'utf8'
=>
'1.04'
,
'version'
=>
'0.42'
,
'warnings'
=>
'1.04'
,
},
removed
=> {
'Test::Harness::Point'
=> 1,
}
},
5.
009003
=> {
delta_from
=> 5.008008,
changed
=> {
'Archive::Tar'
=>
'1.26_01'
,
'Archive::Tar::Constant'
=>
'0.02'
,
'Archive::Tar::File'
=>
'0.02'
,
'AutoSplit'
=>
'1.04_01'
,
'B'
=>
'1.10'
,
'B::Bblock'
=>
'1.02'
,
'B::Bytecode'
=>
'1.01'
,
'B::C'
=>
'1.04'
,
'B::CC'
=>
'1.00'
,
'B::Concise'
=>
'0.67'
,
'B::Debug'
=>
'1.02'
,
'B::Deparse'
=>
'0.73'
,
'B::Lint'
=>
'1.04'
,
'B::Terse'
=>
'1.03'
,
'CGI'
=>
'3.15_01'
,
'CPAN'
=>
'1.83_58'
,
'CPAN::Debug'
=>
'4.44'
,
'CPAN::FirstTime'
=>
'4.50'
,
'CPAN::HandleConfig'
=>
'4.31'
,
'CPAN::Nox'
=>
'2.31'
,
'CPAN::Tarzip'
=>
'3.36'
,
'CPAN::Version'
=>
'2.55'
,
'Carp'
=>
'1.05'
,
'Carp::Heavy'
=>
'1.05'
,
'Compress::Zlib'
=>
'2.000_07'
,
'Compress::Zlib::Common'
=>
'2.000_07'
,
'Compress::Zlib::Compress::Gzip::Constants'
=>
'2.000_07'
,
'Compress::Zlib::Compress::Zip::Constants'
=>
'1.00'
,
'Compress::Zlib::CompressPlugin::Deflate'
=>
'2.000_05'
,
'Compress::Zlib::CompressPlugin::Identity'
=>
'2.000_05'
,
'Compress::Zlib::File::GlobMapper'
=>
'0.000_02'
,
'Compress::Zlib::FileConstants'
=>
'2.000_07'
,
'Compress::Zlib::IO::Compress::Base'
=>
'2.000_05'
,
'Compress::Zlib::IO::Compress::Deflate'
=>
'2.000_07'
,
'Compress::Zlib::IO::Compress::Gzip'
=>
'2.000_07'
,
'Compress::Zlib::IO::Compress::RawDeflate'
=>
'2.000_07'
,
'Compress::Zlib::IO::Compress::Zip'
=>
'2.000_04'
,
'Compress::Zlib::IO::Uncompress::AnyInflate'
=>
'2.000_07'
,
'Compress::Zlib::IO::Uncompress::AnyUncompress'
=>
'2.000_05'
,
'Compress::Zlib::IO::Uncompress::Base'
=>
'2.000_05'
,
'Compress::Zlib::IO::Uncompress::Gunzip'
=>
'2.000_07'
,
'Compress::Zlib::IO::Uncompress::Inflate'
=>
'2.000_07'
,
'Compress::Zlib::IO::Uncompress::RawInflate'
=>
'2.000_07'
,
'Compress::Zlib::IO::Uncompress::Unzip'
=>
'2.000_05'
,
'Compress::Zlib::ParseParameters'
=>
'2.000_07'
,
'Compress::Zlib::UncompressPlugin::Identity'
=>
'2.000_05'
,
'Compress::Zlib::UncompressPlugin::Inflate'
=>
'2.000_05'
,
'Config::Extensions'
=>
'0.01'
,
'Cwd'
=>
'3.15'
,
'Devel::PPPort'
=>
'3.08'
,
'Digest::SHA'
=>
'5.32'
,
'DirHandle'
=>
'1.01'
,
'DynaLoader'
=>
'1.07'
,
'Encode'
=>
'2.14'
,
'Encode::CN::HZ'
=>
'2.02'
,
'Encode::MIME::Header'
=>
'2.02'
,
'English'
=>
'1.04'
,
'Exporter'
=>
'5.59'
,
'Exporter::Heavy'
=>
'5.59'
,
'ExtUtils::CBuilder'
=>
'0.15'
,
'ExtUtils::CBuilder::Base'
=>
'0.12'
,
'ExtUtils::CBuilder::Platform::Unix'
=>
'0.12'
,
'ExtUtils::CBuilder::Platform::VMS'
=>
'0.12'
,
'ExtUtils::CBuilder::Platform::Windows'
=>
'0.12'
,
'ExtUtils::CBuilder::Platform::aix'
=>
'0.12'
,
'ExtUtils::CBuilder::Platform::cygwin'
=>
'0.12'
,
'ExtUtils::CBuilder::Platform::darwin'
=>
'0.12'
,
'ExtUtils::CBuilder::Platform::dec_osf'
=>
'0.01'
,
'ExtUtils::CBuilder::Platform::os2'
=>
'0.13'
,
'ExtUtils::Command::MM'
=>
'0.05_01'
,
'ExtUtils::Constant'
=>
'0.2'
,
'ExtUtils::Constant::Base'
=>
'0.02'
,
'ExtUtils::Constant::ProxySubs'
=>
'0.01'
,
'ExtUtils::Constant::XS'
=>
'0.02'
,
'ExtUtils::MM_Any'
=>
'0.13_01'
,
'ExtUtils::MM_Unix'
=>
'1.50_01'
,
'ExtUtils::MakeMaker'
=>
'6.30_01'
,
'ExtUtils::ParseXS'
=>
'2.15_02'
,
'Fatal'
=>
'1.04'
,
'File::Compare'
=>
'1.1005'
,
'File::Spec'
=>
'3.15'
,
'File::Temp'
=>
'0.16_01'
,
'IO::File'
=>
'1.13_01'
,
'IO::Handle'
=>
'1.26'
,
'IO::Socket'
=>
'1.29_01'
,
'IO::Socket::INET'
=>
'1.29_02'
,
'IO::Socket::UNIX'
=>
'1.22_01'
,
'IO::Zlib'
=>
'1.04_02'
,
'Locale::Maketext'
=>
'1.10_01'
,
'Math::BigInt::FastCalc'
=>
'0.10'
,
'Memoize'
=>
'1.01_01'
,
'Module::CoreList'
=>
'2.02'
,
'Moped::Msg'
=>
'0.01'
,
'NEXT'
=>
'0.60_01'
,
'Net::Cmd'
=>
'2.26_01'
,
'Net::Domain'
=>
'2.19_01'
,
'Net::Ping'
=>
'2.31_04'
,
'Opcode'
=>
'1.08'
,
'POSIX'
=>
'1.10'
,
'Pod::Escapes'
=>
'1.04'
,
'Pod::Man'
=>
'2.04'
,
'Pod::Perldoc'
=>
'3.14_01'
,
'Pod::Simple'
=>
'3.04'
,
'Pod::Simple::BlackBox'
=>
undef
,
'Pod::Simple::Checker'
=>
'2.02'
,
'Pod::Simple::Debug'
=>
undef
,
'Pod::Simple::DumpAsText'
=>
'2.02'
,
'Pod::Simple::DumpAsXML'
=>
'2.02'
,
'Pod::Simple::HTML'
=>
'3.03'
,
'Pod::Simple::HTMLBatch'
=>
'3.02'
,
'Pod::Simple::HTMLLegacy'
=>
'5.01'
,
'Pod::Simple::LinkSection'
=>
undef
,
'Pod::Simple::Methody'
=>
'2.02'
,
'Pod::Simple::Progress'
=>
'1.01'
,
'Pod::Simple::PullParser'
=>
'2.02'
,
'Pod::Simple::PullParserEndToken'
=>
undef
,
'Pod::Simple::PullParserStartToken'
=>
undef
,
'Pod::Simple::PullParserTextToken'
=>
undef
,
'Pod::Simple::PullParserToken'
=>
'2.02'
,
'Pod::Simple::RTF'
=>
'2.02'
,
'Pod::Simple::Search'
=>
'3.04'
,
'Pod::Simple::SimpleTree'
=>
'2.02'
,
'Pod::Simple::Text'
=>
'2.02'
,
'Pod::Simple::TextContent'
=>
'2.02'
,
'Pod::Simple::TiedOutFH'
=>
undef
,
'Pod::Simple::Transcode'
=>
undef
,
'Pod::Simple::TranscodeDumb'
=>
'2.02'
,
'Pod::Simple::TranscodeSmart'
=>
undef
,
'Pod::Simple::XMLOutStream'
=>
'2.02'
,
'Pod::Text'
=>
'3.01'
,
'Pod::Text::Color'
=>
'2.01'
,
'Pod::Text::Overstrike'
=>
'2'
,
'Pod::Text::Termcap'
=>
'2.01'
,
'Pod::Usage'
=>
'1.33_01'
,
'SelfLoader'
=>
'1.0905'
,
'Storable'
=>
'2.15_02'
,
'Test::Builder::Module'
=>
'0.03'
,
'Text::Balanced'
=>
'1.95_01'
,
'Tie::File'
=>
'0.97_01'
,
'UNIVERSAL'
=>
'1.03'
,
'XS::APItest'
=>
'0.09'
,
'assertions'
=>
'0.02'
,
'assertions::activate'
=>
'0.02'
,
'assertions::compat'
=>
undef
,
'constant'
=>
'1.07'
,
'encoding::warnings'
=>
'0.05'
,
'feature'
=>
'1.00'
,
're'
=>
'0.06'
,
'sort'
=>
'2.00'
,
'version'
=>
'0.53'
,
},
removed
=> {
}
},
5.
009004
=> {
delta_from
=> 5.009003,
changed
=> {
'Archive::Tar'
=>
'1.30_01'
,
'AutoLoader'
=>
'5.61'
,
'B'
=>
'1.11'
,
'B::Bytecode'
=>
'1.02'
,
'B::C'
=>
'1.05'
,
'B::Concise'
=>
'0.69'
,
'B::Deparse'
=>
'0.76'
,
'B::Lint'
=>
'1.08'
,
'Benchmark'
=>
'1.08'
,
'CGI'
=>
'3.20'
,
'CGI::Cookie'
=>
'1.27'
,
'CGI::Fast'
=>
'1.07'
,
'CPAN'
=>
'1.87_55'
,
'CPAN::Debug'
=>
'5.400561'
,
'CPAN::FirstTime'
=>
'5.400742'
,
'CPAN::HandleConfig'
=>
'5.400740'
,
'CPAN::Nox'
=>
'5.400561'
,
'CPAN::Tarzip'
=>
'5.400714'
,
'CPAN::Version'
=>
'5.400561'
,
'Compress::Raw::Zlib'
=>
'2.000_13'
,
'Compress::Zlib'
=>
'2.000_13'
,
'Cwd'
=>
'3.19'
,
'Devel::PPPort'
=>
'3.10'
,
'Digest'
=>
'1.15'
,
'Digest::SHA'
=>
'5.43'
,
'Encode'
=>
'2.18_01'
,
'Encode::Alias'
=>
'2.06'
,
'Encode::Byte'
=>
'2.02'
,
'Encode::CJKConstants'
=>
'2.02'
,
'Encode::CN'
=>
'2.02'
,
'Encode::CN::HZ'
=>
'2.04'
,
'Encode::Config'
=>
'2.03'
,
'Encode::EBCDIC'
=>
'2.02'
,
'Encode::Encoder'
=>
'2.01'
,
'Encode::Encoding'
=>
'2.04'
,
'Encode::Guess'
=>
'2.02'
,
'Encode::JP'
=>
'2.03'
,
'Encode::JP::H2Z'
=>
'2.02'
,
'Encode::JP::JIS7'
=>
'2.02'
,
'Encode::KR'
=>
'2.02'
,
'Encode::KR::2022_KR'
=>
'2.02'
,
'Encode::MIME::Header'
=>
'2.04'
,
'Encode::MIME::Header::ISO_2022_JP'
=>
'1.03'
,
'Encode::Symbol'
=>
'2.02'
,
'Encode::TW'
=>
'2.02'
,
'Encode::Unicode'
=>
'2.03'
,
'Encode::Unicode::UTF7'
=>
'2.04'
,
'ExtUtils::CBuilder'
=>
'0.18'
,
'ExtUtils::CBuilder::Platform::Windows'
=>
'0.12_01'
,
'ExtUtils::Constant::Base'
=>
'0.03'
,
'ExtUtils::Constant::ProxySubs'
=>
'0.03'
,
'ExtUtils::Install'
=>
'1.41'
,
'ExtUtils::Installed'
=>
'1.41'
,
'ExtUtils::MM_Any'
=>
'0.13_02'
,
'ExtUtils::MM_NW5'
=>
'2.08_01'
,
'ExtUtils::MM_Unix'
=>
'1.5003'
,
'ExtUtils::MM_VMS'
=>
'5.73_03'
,
'ExtUtils::MM_Win32'
=>
'1.12_02'
,
'ExtUtils::MM_Win95'
=>
'0.04_01'
,
'ExtUtils::MakeMaker'
=>
'6.30_02'
,
'ExtUtils::Manifest'
=>
'1.46_01'
,
'ExtUtils::Mkbootstrap'
=>
'1.15_01'
,
'ExtUtils::Mksymlists'
=>
'1.19_01'
,
'ExtUtils::Packlist'
=>
'1.41'
,
'File::Basename'
=>
'2.75'
,
'File::Find'
=>
'1.11'
,
'File::GlobMapper'
=>
'0.000_02'
,
'File::Spec'
=>
'3.19'
,
'FileCache'
=>
'1.07'
,
'Getopt::Long'
=>
'2.3501'
,
'Hash::Util'
=>
'0.07'
,
'Hash::Util::FieldHash'
=>
'0.01'
,
'IO'
=>
'1.23_01'
,
'IO::Compress::Adapter::Deflate'
=>
'2.000_13'
,
'IO::Compress::Adapter::Identity'
=>
'2.000_13'
,
'IO::Compress::Base'
=>
'2.000_13'
,
'IO::Compress::Base::Common'
=>
'2.000_13'
,
'IO::Compress::Deflate'
=>
'2.000_13'
,
'IO::Compress::Gzip'
=>
'2.000_13'
,
'IO::Compress::Gzip::Constants'
=>
'2.000_13'
,
'IO::Compress::RawDeflate'
=>
'2.000_13'
,
'IO::Compress::Zip'
=>
'2.000_13'
,
'IO::Compress::Zip::Constants'
=>
'2.000_13'
,
'IO::Compress::Zlib::Constants'
=>
'2.000_13'
,
'IO::Compress::Zlib::Extra'
=>
'2.000_13'
,
'IO::Dir'
=>
'1.06'
,
'IO::File'
=>
'1.14'
,
'IO::Handle'
=>
'1.27'
,
'IO::Socket'
=>
'1.30_01'
,
'IO::Socket::INET'
=>
'1.31'
,
'IO::Socket::UNIX'
=>
'1.23'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.000_13'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.000_13'
,
'IO::Uncompress::AnyInflate'
=>
'2.000_13'
,
'IO::Uncompress::AnyUncompress'
=>
'2.000_13'
,
'IO::Uncompress::Base'
=>
'2.000_13'
,
'IO::Uncompress::Gunzip'
=>
'2.000_13'
,
'IO::Uncompress::Inflate'
=>
'2.000_13'
,
'IO::Uncompress::RawInflate'
=>
'2.000_13'
,
'IO::Uncompress::Unzip'
=>
'2.000_13'
,
'MIME::Base64'
=>
'3.07_01'
,
'Math::Complex'
=>
'1.36'
,
'Math::Trig'
=>
'1.04'
,
'Module::Build'
=>
'0.2805'
,
'Module::Build::Base'
=>
undef
,
'Module::Build::Compat'
=>
'0.03'
,
'Module::Build::ConfigData'
=>
undef
,
'Module::Build::Cookbook'
=>
undef
,
'Module::Build::ModuleInfo'
=>
undef
,
'Module::Build::Notes'
=>
undef
,
'Module::Build::PPMMaker'
=>
undef
,
'Module::Build::Platform::Amiga'
=>
undef
,
'Module::Build::Platform::Default'
=>
undef
,
'Module::Build::Platform::EBCDIC'
=>
undef
,
'Module::Build::Platform::MPEiX'
=>
undef
,
'Module::Build::Platform::MacOS'
=>
undef
,
'Module::Build::Platform::RiscOS'
=>
undef
,
'Module::Build::Platform::Unix'
=>
undef
,
'Module::Build::Platform::VMS'
=>
undef
,
'Module::Build::Platform::VOS'
=>
undef
,
'Module::Build::Platform::Windows'
=>
undef
,
'Module::Build::Platform::aix'
=>
undef
,
'Module::Build::Platform::cygwin'
=>
undef
,
'Module::Build::Platform::darwin'
=>
undef
,
'Module::Build::Platform::os2'
=>
undef
,
'Module::Build::PodParser'
=>
undef
,
'Module::Build::Version'
=>
'0'
,
'Module::Build::YAML'
=>
'0.50'
,
'Module::CoreList'
=>
'2.08'
,
'Module::Load'
=>
'0.10'
,
'Module::Loaded'
=>
'0.01'
,
'Package::Constants'
=>
'0.01'
,
'Pod::Html'
=>
'1.07'
,
'Pod::Man'
=>
'2.09'
,
'Pod::Text'
=>
'3.07'
,
'Pod::Text::Color'
=>
'2.03'
,
'Pod::Text::Termcap'
=>
'2.03'
,
'SDBM_File'
=>
'1.06'
,
'Shell'
=>
'0.7'
,
'Sys::Syslog'
=>
'0.17'
,
'Term::ANSIColor'
=>
'1.11'
,
'Test::Builder'
=>
'0.33'
,
'Test::Builder::Tester'
=>
'1.04'
,
'Test::Harness'
=>
'2.62'
,
'Test::Harness::Util'
=>
'0.01'
,
'Test::More'
=>
'0.64'
,
'Test::Simple'
=>
'0.64'
,
'Text::Balanced'
=>
'1.98_01'
,
'Text::ParseWords'
=>
'3.25'
,
'Text::Tabs'
=>
'2007.071101'
,
'Text::Wrap'
=>
'2006.0711'
,
'Tie::RefHash'
=>
'1.34_01'
,
'Time::HiRes'
=>
'1.87'
,
'Time::Local'
=>
'1.13'
,
'Time::gmtime'
=>
'1.03'
,
'UNIVERSAL'
=>
'1.04'
,
'Unicode::Normalize'
=>
'1.01'
,
'Win32API::File'
=>
'0.1001'
,
'Win32API::File::ExtUtils::Myconst2perl'
=>
'1'
,
'assertions'
=>
'0.03'
,
'assertions::compat'
=>
'0.02'
,
'autouse'
=>
'1.06'
,
'diagnostics'
=>
'1.16'
,
'encoding'
=>
'2.04'
,
'encoding::warnings'
=>
'0.10'
,
'feature'
=>
'1.01'
,
're'
=>
'0.0601'
,
'threads'
=>
'1.38'
,
'threads::shared'
=>
'0.94_01'
,
'version'
=>
'0.67'
,
},
removed
=> {
'Compress::Zlib::Common'
=> 1,
'Compress::Zlib::Compress::Gzip::Constants'
=> 1,
'Compress::Zlib::Compress::Zip::Constants'
=> 1,
'Compress::Zlib::CompressPlugin::Deflate'
=> 1,
'Compress::Zlib::CompressPlugin::Identity'
=> 1,
'Compress::Zlib::File::GlobMapper'
=> 1,
'Compress::Zlib::FileConstants'
=> 1,
'Compress::Zlib::IO::Compress::Base'
=> 1,
'Compress::Zlib::IO::Compress::Deflate'
=> 1,
'Compress::Zlib::IO::Compress::Gzip'
=> 1,
'Compress::Zlib::IO::Compress::RawDeflate'
=> 1,
'Compress::Zlib::IO::Compress::Zip'
=> 1,
'Compress::Zlib::IO::Uncompress::AnyInflate'
=> 1,
'Compress::Zlib::IO::Uncompress::AnyUncompress'
=> 1,
'Compress::Zlib::IO::Uncompress::Base'
=> 1,
'Compress::Zlib::IO::Uncompress::Gunzip'
=> 1,
'Compress::Zlib::IO::Uncompress::Inflate'
=> 1,
'Compress::Zlib::IO::Uncompress::RawInflate'
=> 1,
'Compress::Zlib::IO::Uncompress::Unzip'
=> 1,
'Compress::Zlib::ParseParameters'
=> 1,
'Compress::Zlib::UncompressPlugin::Identity'
=> 1,
'Compress::Zlib::UncompressPlugin::Inflate'
=> 1,
}
},
5.
009005
=> {
delta_from
=> 5.009004,
changed
=> {
'Archive::Extract'
=>
'0.22_01'
,
'Archive::Tar'
=>
'1.32'
,
'Attribute::Handlers'
=>
'0.78_06'
,
'AutoLoader'
=>
'5.63'
,
'AutoSplit'
=>
'1.05'
,
'B'
=>
'1.16'
,
'B::Concise'
=>
'0.72'
,
'B::Debug'
=>
'1.05'
,
'B::Deparse'
=>
'0.82'
,
'B::Lint'
=>
'1.09'
,
'B::Terse'
=>
'1.05'
,
'Benchmark'
=>
'1.1'
,
'CGI'
=>
'3.29'
,
'CGI::Cookie'
=>
'1.28'
,
'CGI::Util'
=>
'1.5_01'
,
'CPAN'
=>
'1.9102'
,
'CPAN::Debug'
=>
'5.400955'
,
'CPAN::FirstTime'
=>
'5.401669'
,
'CPAN::HandleConfig'
=>
'5.401744'
,
'CPAN::Kwalify'
=>
'5.401418'
,
'CPAN::Nox'
=>
'5.400844'
,
'CPAN::Queue'
=>
'5.401704'
,
'CPAN::Tarzip'
=>
'5.401717'
,
'CPAN::Version'
=>
'5.401387'
,
'CPANPLUS'
=>
'0.81_01'
,
'CPANPLUS::Backend'
=>
undef
,
'CPANPLUS::Backend::RV'
=>
undef
,
'CPANPLUS::Config'
=>
undef
,
'CPANPLUS::Configure'
=>
undef
,
'CPANPLUS::Configure::Setup'
=>
undef
,
'CPANPLUS::Dist'
=>
undef
,
'CPANPLUS::Dist::Base'
=>
'0.01'
,
'CPANPLUS::Dist::Build'
=>
'0.06_01'
,
'CPANPLUS::Dist::Build::Constants'
=>
'0.01'
,
'CPANPLUS::Dist::MM'
=>
undef
,
'CPANPLUS::Dist::Sample'
=>
undef
,
'CPANPLUS::Error'
=>
undef
,
'CPANPLUS::Internals'
=>
'0.81_01'
,
'CPANPLUS::Internals::Constants'
=>
'0.01'
,
'CPANPLUS::Internals::Constants::Report'
=>
'0.01'
,
'CPANPLUS::Internals::Extract'
=>
undef
,
'CPANPLUS::Internals::Fetch'
=>
undef
,
'CPANPLUS::Internals::Report'
=>
undef
,
'CPANPLUS::Internals::Search'
=>
undef
,
'CPANPLUS::Internals::Source'
=>
undef
,
'CPANPLUS::Internals::Utils'
=>
undef
,
'CPANPLUS::Internals::Utils::Autoflush'
=>
undef
,
'CPANPLUS::Module'
=>
undef
,
'CPANPLUS::Module::Author'
=>
undef
,
'CPANPLUS::Module::Author::Fake'
=>
undef
,
'CPANPLUS::Module::Checksums'
=>
undef
,
'CPANPLUS::Module::Fake'
=>
undef
,
'CPANPLUS::Module::Signature'
=>
undef
,
'CPANPLUS::Selfupdate'
=>
undef
,
'CPANPLUS::Shell'
=>
undef
,
'CPANPLUS::Shell::Classic'
=>
'0.0562'
,
'CPANPLUS::Shell::Default'
=>
'0.81_01'
,
'CPANPLUS::Shell::Default::Plugins::Remote'
=>
undef
,
'CPANPLUS::Shell::Default::Plugins::Source'
=>
undef
,
'CPANPLUS::inc'
=>
undef
,
'Carp'
=>
'1.07'
,
'Carp::Heavy'
=>
'1.07'
,
'Compress::Raw::Zlib'
=>
'2.005'
,
'Compress::Zlib'
=>
'2.005'
,
'Cwd'
=>
'3.25'
,
'DBM_Filter'
=>
'0.02'
,
'DB_File'
=>
'1.815'
,
'Data::Dumper'
=>
'2.121_13'
,
'Devel::InnerPackage'
=>
'0.3'
,
'Devel::PPPort'
=>
'3.11_01'
,
'Digest::MD5'
=>
'2.36_01'
,
'Digest::SHA'
=>
'5.44'
,
'DynaLoader'
=>
'1.08'
,
'Encode'
=>
'2.23'
,
'Encode::Alias'
=>
'2.07'
,
'Encode::Byte'
=>
'2.03'
,
'Encode::Config'
=>
'2.04'
,
'Encode::Encoding'
=>
'2.05'
,
'Encode::GSM0338'
=>
'2.00'
,
'Encode::JP::JIS7'
=>
'2.03'
,
'Encode::MIME::Header'
=>
'2.05'
,
'Encode::MIME::Name'
=>
'1.01'
,
'Encode::Unicode'
=>
'2.05'
,
'Errno'
=>
'1.10'
,
'Exporter'
=>
'5.60'
,
'Exporter::Heavy'
=>
'5.60'
,
'ExtUtils::CBuilder'
=>
'0.19'
,
'ExtUtils::CBuilder::Platform::Windows'
=>
'0.13'
,
'ExtUtils::Command'
=>
'1.13'
,
'ExtUtils::Command::MM'
=>
'0.07'
,
'ExtUtils::Constant::Base'
=>
'0.04'
,
'ExtUtils::Install'
=>
'1.41_01'
,
'ExtUtils::Liblist'
=>
'1.03'
,
'ExtUtils::Liblist::Kid'
=>
'1.33'
,
'ExtUtils::MM'
=>
'0.07'
,
'ExtUtils::MM_AIX'
=>
'0.05'
,
'ExtUtils::MM_Any'
=>
'0.15'
,
'ExtUtils::MM_BeOS'
=>
'1.07'
,
'ExtUtils::MM_Cygwin'
=>
'1.1'
,
'ExtUtils::MM_DOS'
=>
'0.04'
,
'ExtUtils::MM_MacOS'
=>
'1.1'
,
'ExtUtils::MM_NW5'
=>
'2.1'
,
'ExtUtils::MM_OS2'
=>
'1.07'
,
'ExtUtils::MM_QNX'
=>
'0.04'
,
'ExtUtils::MM_UWIN'
=>
'0.04'
,
'ExtUtils::MM_Unix'
=>
'1.54_01'
,
'ExtUtils::MM_VMS'
=>
'5.76'
,
'ExtUtils::MM_VOS'
=>
'0.04'
,
'ExtUtils::MM_Win32'
=>
'1.15'
,
'ExtUtils::MM_Win95'
=>
'0.06'
,
'ExtUtils::MY'
=>
'0.03'
,
'ExtUtils::MakeMaker'
=>
'6.36'
,
'ExtUtils::MakeMaker::Config'
=>
'0.04'
,
'ExtUtils::MakeMaker::bytes'
=>
'0.03'
,
'ExtUtils::MakeMaker::vmsish'
=>
'0.03'
,
'ExtUtils::Manifest'
=>
'1.51_01'
,
'ExtUtils::Mkbootstrap'
=>
'1.17'
,
'ExtUtils::Mksymlists'
=>
'1.21'
,
'ExtUtils::ParseXS'
=>
'2.18'
,
'ExtUtils::XSSymSet'
=>
'1.1'
,
'ExtUtils::testlib'
=>
'1.17'
,
'Fatal'
=>
'1.05'
,
'Fcntl'
=>
'1.06'
,
'File::Basename'
=>
'2.76'
,
'File::Copy'
=>
'2.10'
,
'File::Fetch'
=>
'0.10'
,
'File::Glob'
=>
'1.06'
,
'File::Path'
=>
'2.01'
,
'File::Spec'
=>
'3.25'
,
'File::Spec::Cygwin'
=>
'1.1_01'
,
'File::Spec::VMS'
=>
'1.4_01'
,
'File::Temp'
=>
'0.18'
,
'Filter::Util::Call'
=>
'1.0602'
,
'FindBin'
=>
'1.49'
,
'Getopt::Long'
=>
'2.36'
,
'Hash::Util::FieldHash'
=>
'1.01'
,
'IO::Compress::Adapter::Deflate'
=>
'2.005'
,
'IO::Compress::Adapter::Identity'
=>
'2.005'
,
'IO::Compress::Base'
=>
'2.005'
,
'IO::Compress::Base::Common'
=>
'2.005'
,
'IO::Compress::Deflate'
=>
'2.005'
,
'IO::Compress::Gzip'
=>
'2.005'
,
'IO::Compress::Gzip::Constants'
=>
'2.005'
,
'IO::Compress::RawDeflate'
=>
'2.005'
,
'IO::Compress::Zip'
=>
'2.005'
,
'IO::Compress::Zip::Constants'
=>
'2.005'
,
'IO::Compress::Zlib::Constants'
=>
'2.005'
,
'IO::Compress::Zlib::Extra'
=>
'2.005'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.005'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.005'
,
'IO::Uncompress::AnyInflate'
=>
'2.005'
,
'IO::Uncompress::AnyUncompress'
=>
'2.005'
,
'IO::Uncompress::Base'
=>
'2.005'
,
'IO::Uncompress::Gunzip'
=>
'2.005'
,
'IO::Uncompress::Inflate'
=>
'2.005'
,
'IO::Uncompress::RawInflate'
=>
'2.005'
,
'IO::Uncompress::Unzip'
=>
'2.005'
,
'IO::Zlib'
=>
'1.05_01'
,
'IPC::Cmd'
=>
'0.36_01'
,
'List::Util'
=>
'1.19'
,
'Locale::Maketext::Simple'
=>
'0.18'
,
'Log::Message'
=>
'0.01'
,
'Log::Message::Config'
=>
'0.01'
,
'Log::Message::Handlers'
=>
undef
,
'Log::Message::Item'
=>
undef
,
'Log::Message::Simple'
=>
'0.0201'
,
'Math::BigFloat'
=>
'1.58'
,
'Math::BigInt'
=>
'1.87'
,
'Math::BigInt::Calc'
=>
'0.51'
,
'Math::BigInt::FastCalc'
=>
'0.15_01'
,
'Math::BigRat'
=>
'0.19'
,
'Math::Complex'
=>
'1.37'
,
'Memoize'
=>
'1.01_02'
,
'Module::Build'
=>
'0.2808'
,
'Module::Build::Config'
=>
undef
,
'Module::Build::Version'
=>
'0.7203'
,
'Module::CoreList'
=>
'2.12'
,
'Module::Load::Conditional'
=>
'0.16'
,
'Module::Pluggable'
=>
'3.6'
,
'Module::Pluggable::Object'
=>
'3.6'
,
'NDBM_File'
=>
'1.07'
,
'Net::Cmd'
=>
'2.28'
,
'Net::Config'
=>
'1.11'
,
'Net::Domain'
=>
'2.20'
,
'Net::FTP'
=>
'2.77'
,
'Net::FTP::A'
=>
'1.18'
,
'Net::NNTP'
=>
'2.24'
,
'Net::POP3'
=>
'2.29'
,
'Net::SMTP'
=>
'2.31'
,
'ODBM_File'
=>
'1.07'
,
'Object::Accessor'
=>
'0.32'
,
'Opcode'
=>
'1.09'
,
'POSIX'
=>
'1.13'
,
'Params::Check'
=>
'0.26'
,
'PerlIO::encoding'
=>
'0.10'
,
'PerlIO::scalar'
=>
'0.05'
,
'PerlIO::via'
=>
'0.04'
,
'Pod::Html'
=>
'1.08'
,
'Pod::Man'
=>
'2.12'
,
'Pod::ParseUtils'
=>
'1.35'
,
'Pod::Parser'
=>
'1.35'
,
'Pod::Select'
=>
'1.35'
,
'Pod::Simple'
=>
'3.05'
,
'Pod::Text'
=>
'3.08'
,
'Pod::Usage'
=>
'1.35'
,
'Scalar::Util'
=>
'1.19'
,
'SelfLoader'
=>
'1.11'
,
'Shell'
=>
'0.72_01'
,
'Socket'
=>
'1.79'
,
'Storable'
=>
'2.16'
,
'Switch'
=>
'2.13'
,
'Sys::Syslog'
=>
'0.18_01'
,
'Term::ANSIColor'
=>
'1.12'
,
'Term::UI'
=>
'0.14_01'
,
'Term::UI::History'
=>
undef
,
'Test::Builder'
=>
'0.70'
,
'Test::Builder::Module'
=>
'0.68'
,
'Test::Builder::Tester'
=>
'1.07'
,
'Test::Harness'
=>
'2.64'
,
'Test::Harness::Results'
=>
'0.01'
,
'Test::More'
=>
'0.70'
,
'Test::Simple'
=>
'0.70'
,
'Text::Balanced'
=>
'2.0.0'
,
'Text::Soundex'
=>
'3.02'
,
'Text::Tabs'
=>
'2007.1117'
,
'Text::Wrap'
=>
'2006.1117'
,
'Thread'
=>
'3.02'
,
'Tie::File'
=>
'0.97_02'
,
'Tie::Hash::NamedCapture'
=>
'0.06'
,
'Tie::Memoize'
=>
'1.1'
,
'Tie::RefHash'
=>
'1.37'
,
'Time::HiRes'
=>
'1.9707'
,
'Time::Local'
=>
'1.17'
,
'Time::Piece'
=>
'1.11_02'
,
'Time::Seconds'
=>
undef
,
'Unicode'
=>
'5.0.0'
,
'Unicode::Normalize'
=>
'1.02'
,
'Unicode::UCD'
=>
'0.25'
,
'VMS::DCLsym'
=>
'1.03'
,
'Win32'
=>
'0.30'
,
'Win32API::File'
=>
'0.1001_01'
,
'Win32CORE'
=>
'0.02'
,
'XS::APItest'
=>
'0.12'
,
'XSLoader'
=>
'0.08'
,
'attributes'
=>
'0.08'
,
'base'
=>
'2.12'
,
'bigint'
=>
'0.22'
,
'bignum'
=>
'0.22'
,
'bigrat'
=>
'0.22'
,
'bytes'
=>
'1.03'
,
'charnames'
=>
'1.06'
,
'constant'
=>
'1.10'
,
'diagnostics'
=>
'1.17'
,
'encoding'
=>
'2.06'
,
'encoding::warnings'
=>
'0.11'
,
'feature'
=>
'1.10'
,
'fields'
=>
'2.12'
,
'less'
=>
'0.02'
,
'mro'
=>
'1.00'
,
'overload'
=>
'1.06'
,
're'
=>
'0.08'
,
'sigtrap'
=>
'1.04'
,
'sort'
=>
'2.01'
,
'strict'
=>
'1.04'
,
'threads'
=>
'1.63'
,
'threads::shared'
=>
'1.12'
,
'utf8'
=>
'1.07'
,
'version'
=>
'0.7203'
,
'warnings'
=>
'1.06'
,
},
removed
=> {
'B::Asmdata'
=> 1,
'B::Assembler'
=> 1,
'B::Bblock'
=> 1,
'B::Bytecode'
=> 1,
'B::C'
=> 1,
'B::CC'
=> 1,
'B::Disassembler'
=> 1,
'B::Stackobj'
=> 1,
'B::Stash'
=> 1,
'ByteLoader'
=> 1,
'Thread::Signal'
=> 1,
'Thread::Specific'
=> 1,
'assertions'
=> 1,
'assertions::activate'
=> 1,
'assertions::compat'
=> 1,
}
},
5.
01
=> {
delta_from
=> 5.009005,
changed
=> {
'Archive::Extract'
=>
'0.24'
,
'Archive::Tar'
=>
'1.38'
,
'Attribute::Handlers'
=>
'0.79'
,
'B'
=>
'1.17'
,
'B::Concise'
=>
'0.74'
,
'B::Deparse'
=>
'0.83'
,
'CPAN'
=>
'1.9205'
,
'CPAN::API::HOWTO'
=>
undef
,
'CPAN::Debug'
=>
'5.402212'
,
'CPAN::DeferedCode'
=>
'5.50'
,
'CPAN::FirstTime'
=>
'5.402229'
,
'CPAN::HandleConfig'
=>
'5.402212'
,
'CPAN::Nox'
=>
'5.402411'
,
'CPAN::Queue'
=>
'5.402212'
,
'CPAN::Tarzip'
=>
'5.402213'
,
'CPAN::Version'
=>
'5.5'
,
'CPANPLUS'
=>
'0.84'
,
'CPANPLUS::Dist::Build'
=>
'0.06_02'
,
'CPANPLUS::Internals'
=>
'0.84'
,
'CPANPLUS::Shell::Default'
=>
'0.84'
,
'CPANPLUS::Shell::Default::Plugins::CustomSource'
=>
undef
,
'Carp'
=>
'1.08'
,
'Carp::Heavy'
=>
'1.08'
,
'Compress::Raw::Zlib'
=>
'2.008'
,
'Compress::Zlib'
=>
'2.008'
,
'Cwd'
=>
'3.2501'
,
'DB_File'
=>
'1.816_1'
,
'Data::Dumper'
=>
'2.121_14'
,
'Devel::PPPort'
=>
'3.13'
,
'Digest::SHA'
=>
'5.45'
,
'Exporter'
=>
'5.62'
,
'Exporter::Heavy'
=>
'5.62'
,
'ExtUtils::CBuilder'
=>
'0.21'
,
'ExtUtils::CBuilder::Base'
=>
'0.21'
,
'ExtUtils::CBuilder::Platform::Unix'
=>
'0.21'
,
'ExtUtils::CBuilder::Platform::VMS'
=>
'0.22'
,
'ExtUtils::CBuilder::Platform::Windows'
=>
'0.21'
,
'ExtUtils::CBuilder::Platform::aix'
=>
'0.21'
,
'ExtUtils::CBuilder::Platform::cygwin'
=>
'0.21'
,
'ExtUtils::CBuilder::Platform::darwin'
=>
'0.21'
,
'ExtUtils::CBuilder::Platform::dec_osf'
=>
'0.21'
,
'ExtUtils::CBuilder::Platform::os2'
=>
'0.21'
,
'ExtUtils::Command::MM'
=>
'6.42'
,
'ExtUtils::Constant::ProxySubs'
=>
'0.05'
,
'ExtUtils::Embed'
=>
'1.27'
,
'ExtUtils::Install'
=>
'1.44'
,
'ExtUtils::Installed'
=>
'1.43'
,
'ExtUtils::Liblist'
=>
'6.42'
,
'ExtUtils::Liblist::Kid'
=>
'6.42'
,
'ExtUtils::MM'
=>
'6.42'
,
'ExtUtils::MM_AIX'
=>
'6.42'
,
'ExtUtils::MM_Any'
=>
'6.42'
,
'ExtUtils::MM_BeOS'
=>
'6.42'
,
'ExtUtils::MM_Cygwin'
=>
'6.42'
,
'ExtUtils::MM_DOS'
=>
'6.42'
,
'ExtUtils::MM_MacOS'
=>
'6.42'
,
'ExtUtils::MM_NW5'
=>
'6.42'
,
'ExtUtils::MM_OS2'
=>
'6.42'
,
'ExtUtils::MM_QNX'
=>
'6.42'
,
'ExtUtils::MM_UWIN'
=>
'6.42'
,
'ExtUtils::MM_Unix'
=>
'6.42'
,
'ExtUtils::MM_VMS'
=>
'6.42'
,
'ExtUtils::MM_VOS'
=>
'6.42'
,
'ExtUtils::MM_Win32'
=>
'6.42'
,
'ExtUtils::MM_Win95'
=>
'6.42'
,
'ExtUtils::MY'
=>
'6.42'
,
'ExtUtils::MakeMaker'
=>
'6.42'
,
'ExtUtils::MakeMaker::Config'
=>
'6.42'
,
'ExtUtils::MakeMaker::bytes'
=>
'6.42'
,
'ExtUtils::MakeMaker::vmsish'
=>
'6.42'
,
'ExtUtils::Mkbootstrap'
=>
'6.42'
,
'ExtUtils::Mksymlists'
=>
'6.42'
,
'ExtUtils::Packlist'
=>
'1.43'
,
'ExtUtils::ParseXS'
=>
'2.18_02'
,
'ExtUtils::testlib'
=>
'6.42'
,
'File::Copy'
=>
'2.11'
,
'File::Fetch'
=>
'0.14'
,
'File::Find'
=>
'1.12'
,
'File::Path'
=>
'2.04'
,
'File::Spec'
=>
'3.2501'
,
'File::Spec::Cygwin'
=>
'3.2501'
,
'File::Spec::Epoc'
=>
'3.2501'
,
'File::Spec::Functions'
=>
'3.2501'
,
'File::Spec::Mac'
=>
'3.2501'
,
'File::Spec::OS2'
=>
'3.2501'
,
'File::Spec::Unix'
=>
'3.2501'
,
'File::Spec::VMS'
=>
'3.2501'
,
'File::Spec::Win32'
=>
'3.2501'
,
'Filter::Util::Call'
=>
'1.07'
,
'Getopt::Long'
=>
'2.37'
,
'Hash::Util::FieldHash'
=>
'1.03'
,
'IO::Compress::Adapter::Deflate'
=>
'2.008'
,
'IO::Compress::Adapter::Identity'
=>
'2.008'
,
'IO::Compress::Base'
=>
'2.008'
,
'IO::Compress::Base::Common'
=>
'2.008'
,
'IO::Compress::Deflate'
=>
'2.008'
,
'IO::Compress::Gzip'
=>
'2.008'
,
'IO::Compress::Gzip::Constants'
=>
'2.008'
,
'IO::Compress::RawDeflate'
=>
'2.008'
,
'IO::Compress::Zip'
=>
'2.008'
,
'IO::Compress::Zip::Constants'
=>
'2.008'
,
'IO::Compress::Zlib::Constants'
=>
'2.008'
,
'IO::Compress::Zlib::Extra'
=>
'2.008'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.008'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.008'
,
'IO::Uncompress::AnyInflate'
=>
'2.008'
,
'IO::Uncompress::AnyUncompress'
=>
'2.008'
,
'IO::Uncompress::Base'
=>
'2.008'
,
'IO::Uncompress::Gunzip'
=>
'2.008'
,
'IO::Uncompress::Inflate'
=>
'2.008'
,
'IO::Uncompress::RawInflate'
=>
'2.008'
,
'IO::Uncompress::Unzip'
=>
'2.008'
,
'IO::Zlib'
=>
'1.07'
,
'IPC::Cmd'
=>
'0.40_1'
,
'IPC::SysV'
=>
'1.05'
,
'Locale::Maketext'
=>
'1.12'
,
'Log::Message::Simple'
=>
'0.04'
,
'Math::BigFloat'
=>
'1.59'
,
'Math::BigInt'
=>
'1.88'
,
'Math::BigInt::Calc'
=>
'0.52'
,
'Math::BigInt::FastCalc'
=>
'0.16'
,
'Math::BigRat'
=>
'0.21'
,
'Module::Build'
=>
'0.2808_01'
,
'Module::Build::Base'
=>
'0.2808_01'
,
'Module::Build::Compat'
=>
'0.2808_01'
,
'Module::Build::Config'
=>
'0.2808_01'
,
'Module::Build::Dumper'
=>
undef
,
'Module::Build::ModuleInfo'
=>
'0.2808_01'
,
'Module::Build::Notes'
=>
'0.2808_01'
,
'Module::Build::PPMMaker'
=>
'0.2808_01'
,
'Module::Build::Platform::Amiga'
=>
'0.2808_01'
,
'Module::Build::Platform::Default'
=>
'0.2808_01'
,
'Module::Build::Platform::EBCDIC'
=>
'0.2808_01'
,
'Module::Build::Platform::MPEiX'
=>
'0.2808_01'
,
'Module::Build::Platform::MacOS'
=>
'0.2808_01'
,
'Module::Build::Platform::RiscOS'
=>
'0.2808_01'
,
'Module::Build::Platform::Unix'
=>
'0.2808_01'
,
'Module::Build::Platform::VMS'
=>
'0.2808_01'
,
'Module::Build::Platform::VOS'
=>
'0.2808_01'
,
'Module::Build::Platform::Windows'
=>
'0.2808_01'
,
'Module::Build::Platform::aix'
=>
'0.2808_01'
,
'Module::Build::Platform::cygwin'
=>
'0.2808_01'
,
'Module::Build::Platform::darwin'
=>
'0.2808_01'
,
'Module::Build::Platform::os2'
=>
'0.2808_01'
,
'Module::Build::PodParser'
=>
'0.2808_01'
,
'Module::CoreList'
=>
'2.13'
,
'Module::Load'
=>
'0.12'
,
'Module::Load::Conditional'
=>
'0.22'
,
'Net::Cmd'
=>
'2.29'
,
'Net::Ping'
=>
'2.33'
,
'Opcode'
=>
'1.11'
,
'Pod::Checker'
=>
'1.43_01'
,
'Pod::Man'
=>
'2.16'
,
'Pod::Perldoc'
=>
'3.14_02'
,
'Socket'
=>
'1.80'
,
'Storable'
=>
'2.18'
,
'Sys::Syslog'
=>
'0.22'
,
'Sys::Syslog::win32::Win32'
=>
undef
,
'Term::Cap'
=>
'1.12'
,
'Term::ReadLine'
=>
'1.03'
,
'Term::UI'
=>
'0.18'
,
'Test::Builder'
=>
'0.72'
,
'Test::Builder::Module'
=>
'0.72'
,
'Test::Builder::Tester'
=>
'1.09'
,
'Test::Harness::Straps'
=>
'0.26_01'
,
'Test::More'
=>
'0.72'
,
'Test::Simple'
=>
'0.72'
,
'Text::ParseWords'
=>
'3.26'
,
'Text::Soundex'
=>
'3.03'
,
'Tie::StdHandle'
=>
undef
,
'Time::HiRes'
=>
'1.9711'
,
'Time::Local'
=>
'1.18'
,
'Time::Piece'
=>
'1.12'
,
'VMS::Filespec'
=>
'1.12'
,
'Win32'
=>
'0.34'
,
'base'
=>
'2.13'
,
'constant'
=>
'1.13'
,
'feature'
=>
'1.11'
,
'fields'
=>
'2.13'
,
'filetest'
=>
'1.02'
,
'open'
=>
'1.06'
,
'threads'
=>
'1.67'
,
'threads::shared'
=>
'1.14'
,
'version'
=>
'0.74'
,
},
removed
=> {
}
},
5.
010001
=> {
delta_from
=> 5.01,
changed
=> {
'App::Prove'
=>
'3.17'
,
'App::Prove::State'
=>
'3.17'
,
'App::Prove::State::Result'
=>
'3.17'
,
'App::Prove::State::Result::Test'
=>
'3.17'
,
'Archive::Extract'
=>
'0.34'
,
'Archive::Tar'
=>
'1.52'
,
'Attribute::Handlers'
=>
'0.85'
,
'AutoLoader'
=>
'5.68'
,
'AutoSplit'
=>
'1.06'
,
'B'
=>
'1.22'
,
'B::Concise'
=>
'0.76'
,
'B::Debug'
=>
'1.11'
,
'B::Deparse'
=>
'0.89'
,
'B::Lint'
=>
'1.11'
,
'B::Lint::Debug'
=>
undef
,
'B::Xref'
=>
'1.02'
,
'Benchmark'
=>
'1.11'
,
'CGI'
=>
'3.43'
,
'CGI::Carp'
=>
'1.30_01'
,
'CGI::Cookie'
=>
'1.29'
,
'CPAN'
=>
'1.9402'
,
'CPAN::Author'
=>
'5.5'
,
'CPAN::Bundle'
=>
'5.5'
,
'CPAN::CacheMgr'
=>
'5.5'
,
'CPAN::Complete'
=>
'5.5'
,
'CPAN::Debug'
=>
'5.5'
,
'CPAN::DeferredCode'
=>
'5.50'
,
'CPAN::Distribution'
=>
'1.93'
,
'CPAN::Distroprefs'
=>
'6'
,
'CPAN::Distrostatus'
=>
'5.5'
,
'CPAN::Exception::RecursiveDependency'
=>
'5.5'
,
'CPAN::Exception::blocked_urllist'
=>
'1.0'
,
'CPAN::Exception::yaml_not_installed'
=>
'5.5'
,
'CPAN::FTP'
=>
'5.5001'
,
'CPAN::FTP::netrc'
=>
'1.00'
,
'CPAN::FirstTime'
=>
'5.53'
,
'CPAN::HandleConfig'
=>
'5.5'
,
'CPAN::Index'
=>
'1.93'
,
'CPAN::InfoObj'
=>
'5.5'
,
'CPAN::Kwalify'
=>
'5.50'
,
'CPAN::LWP::UserAgent'
=>
'1.00'
,
'CPAN::Module'
=>
'5.5'
,
'CPAN::Nox'
=>
'5.50'
,
'CPAN::Prompt'
=>
'5.5'
,
'CPAN::Queue'
=>
'5.5'
,
'CPAN::Shell'
=>
'5.5'
,
'CPAN::Tarzip'
=>
'5.501'
,
'CPAN::URL'
=>
'5.5'
,
'CPANPLUS'
=>
'0.88'
,
'CPANPLUS::Dist::Autobundle'
=>
undef
,
'CPANPLUS::Dist::Base'
=>
undef
,
'CPANPLUS::Dist::Build'
=>
'0.36'
,
'CPANPLUS::Dist::Build::Constants'
=>
'0.36'
,
'CPANPLUS::Internals'
=>
'0.88'
,
'CPANPLUS::Internals::Constants'
=>
undef
,
'CPANPLUS::Internals::Constants::Report'
=>
undef
,
'CPANPLUS::Internals::Source::Memory'
=>
undef
,
'CPANPLUS::Internals::Source::SQLite'
=>
undef
,
'CPANPLUS::Internals::Source::SQLite::Tie'
=>
undef
,
'CPANPLUS::Shell::Default'
=>
'0.88'
,
'Carp'
=>
'1.11'
,
'Carp::Heavy'
=>
'1.11'
,
'Compress::Raw::Bzip2'
=>
'2.020'
,
'Compress::Raw::Zlib'
=>
'2.020'
,
'Compress::Zlib'
=>
'2.020'
,
'Cwd'
=>
'3.30'
,
'DB'
=>
'1.02'
,
'DBM_Filter::compress'
=>
'0.02'
,
'DBM_Filter::encode'
=>
'0.02'
,
'DBM_Filter::int32'
=>
'0.02'
,
'DBM_Filter::null'
=>
'0.02'
,
'DBM_Filter::utf8'
=>
'0.02'
,
'DB_File'
=>
'1.820'
,
'Data::Dumper'
=>
'2.124'
,
'Devel::DProf'
=>
'20080331.00'
,
'Devel::PPPort'
=>
'3.19'
,
'Devel::Peek'
=>
'1.04'
,
'Digest'
=>
'1.16'
,
'Digest::MD5'
=>
'2.39'
,
'Digest::SHA'
=>
'5.47'
,
'Digest::base'
=>
'1.16'
,
'Digest::file'
=>
'1.16'
,
'DirHandle'
=>
'1.03'
,
'Dumpvalue'
=>
'1.13'
,
'DynaLoader'
=>
'1.10'
,
'Encode'
=>
'2.35'
,
'Encode::Alias'
=>
'2.12'
,
'Encode::CN::HZ'
=>
'2.05'
,
'Encode::Config'
=>
'2.05'
,
'Encode::GSM0338'
=>
'2.01'
,
'Encode::Guess'
=>
'2.03'
,
'Encode::JP::JIS7'
=>
'2.04'
,
'Encode::MIME::Header'
=>
'2.11'
,
'Encode::Unicode'
=>
'2.06'
,
'Errno'
=>
'1.11'
,
'Exporter'
=>
'5.63'
,
'Exporter::Heavy'
=>
'5.63'
,
'ExtUtils::CBuilder'
=>
'0.2602'
,
'ExtUtils::CBuilder::Base'
=>
'0.2602'
,
'ExtUtils::CBuilder::Platform::Unix'
=>
'0.2602'
,
'ExtUtils::CBuilder::Platform::VMS'
=>
'0.2602'
,
'ExtUtils::CBuilder::Platform::Windows'
=>
'0.2602'
,
'ExtUtils::CBuilder::Platform::aix'
=>
'0.2602'
,
'ExtUtils::CBuilder::Platform::cygwin'
=>
'0.2602'
,
'ExtUtils::CBuilder::Platform::darwin'
=>
'0.2602'
,
'ExtUtils::CBuilder::Platform::dec_osf'
=>
'0.2602'
,
'ExtUtils::CBuilder::Platform::os2'
=>
'0.2602'
,
'ExtUtils::Command'
=>
'1.16'
,
'ExtUtils::Command::MM'
=>
'6.55_02'
,
'ExtUtils::Constant'
=>
'0.22'
,
'ExtUtils::Constant::ProxySubs'
=>
'0.06'
,
'ExtUtils::Constant::Utils'
=>
'0.02'
,
'ExtUtils::Constant::XS'
=>
'0.03'
,
'ExtUtils::Embed'
=>
'1.28'
,
'ExtUtils::Install'
=>
'1.54'
,
'ExtUtils::Installed'
=>
'1.999_001'
,
'ExtUtils::Liblist'
=>
'6.55_02'
,
'ExtUtils::Liblist::Kid'
=>
'6.5502'
,
'ExtUtils::MM'
=>
'6.55_02'
,
'ExtUtils::MM_AIX'
=>
'6.55_02'
,
'ExtUtils::MM_Any'
=>
'6.55_02'
,
'ExtUtils::MM_BeOS'
=>
'6.55_02'
,
'ExtUtils::MM_Cygwin'
=>
'6.55_02'
,
'ExtUtils::MM_DOS'
=>
'6.5502'
,
'ExtUtils::MM_Darwin'
=>
'6.55_02'
,
'ExtUtils::MM_MacOS'
=>
'6.5502'
,
'ExtUtils::MM_NW5'
=>
'6.55_02'
,
'ExtUtils::MM_OS2'
=>
'6.55_02'
,
'ExtUtils::MM_QNX'
=>
'6.55_02'
,
'ExtUtils::MM_UWIN'
=>
'6.5502'
,
'ExtUtils::MM_Unix'
=>
'6.55_02'
,
'ExtUtils::MM_VMS'
=>
'6.55_02'
,
'ExtUtils::MM_VOS'
=>
'6.55_02'
,
'ExtUtils::MM_Win32'
=>
'6.55_02'
,
'ExtUtils::MM_Win95'
=>
'6.55_02'
,
'ExtUtils::MY'
=>
'6.5502'
,
'ExtUtils::MakeMaker'
=>
'6.55_02'
,
'ExtUtils::MakeMaker::Config'
=>
'6.55_02'
,
'ExtUtils::Manifest'
=>
'1.56'
,
'ExtUtils::Mkbootstrap'
=>
'6.55_02'
,
'ExtUtils::Mksymlists'
=>
'6.55_02'
,
'ExtUtils::ParseXS'
=>
'2.2002'
,
'ExtUtils::testlib'
=>
'6.5502'
,
'Fatal'
=>
'2.06_01'
,
'File::Basename'
=>
'2.77'
,
'File::CheckTree'
=>
'4.4'
,
'File::Compare'
=>
'1.1006'
,
'File::Copy'
=>
'2.14'
,
'File::DosGlob'
=>
'1.01'
,
'File::Fetch'
=>
'0.20'
,
'File::Find'
=>
'1.14'
,
'File::GlobMapper'
=>
'1.000'
,
'File::Path'
=>
'2.07_03'
,
'File::Spec'
=>
'3.30'
,
'File::Spec::Cygwin'
=>
'3.30'
,
'File::Spec::Epoc'
=>
'3.30'
,
'File::Spec::Functions'
=>
'3.30'
,
'File::Spec::Mac'
=>
'3.30'
,
'File::Spec::OS2'
=>
'3.30'
,
'File::Spec::Unix'
=>
'3.30'
,
'File::Spec::VMS'
=>
'3.30'
,
'File::Spec::Win32'
=>
'3.30'
,
'File::Temp'
=>
'0.22'
,
'File::stat'
=>
'1.01'
,
'FileCache'
=>
'1.08'
,
'FileHandle'
=>
'2.02'
,
'Filter::Simple'
=>
'0.84'
,
'Filter::Util::Call'
=>
'1.08'
,
'FindBin'
=>
'1.50'
,
'GDBM_File'
=>
'1.09'
,
'Getopt::Long'
=>
'2.38'
,
'Getopt::Std'
=>
'1.06'
,
'Hash::Util::FieldHash'
=>
'1.04'
,
'I18N::Collate'
=>
'1.01'
,
'IO'
=>
'1.25'
,
'IO::Compress::Adapter::Bzip2'
=>
'2.020'
,
'IO::Compress::Adapter::Deflate'
=>
'2.020'
,
'IO::Compress::Adapter::Identity'
=>
'2.020'
,
'IO::Compress::Base'
=>
'2.020'
,
'IO::Compress::Base::Common'
=>
'2.020'
,
'IO::Compress::Bzip2'
=>
'2.020'
,
'IO::Compress::Deflate'
=>
'2.020'
,
'IO::Compress::Gzip'
=>
'2.020'
,
'IO::Compress::Gzip::Constants'
=>
'2.020'
,
'IO::Compress::RawDeflate'
=>
'2.020'
,
'IO::Compress::Zip'
=>
'2.020'
,
'IO::Compress::Zip::Constants'
=>
'2.020'
,
'IO::Compress::Zlib::Constants'
=>
'2.020'
,
'IO::Compress::Zlib::Extra'
=>
'2.020'
,
'IO::Dir'
=>
'1.07'
,
'IO::Handle'
=>
'1.28'
,
'IO::Socket'
=>
'1.31'
,
'IO::Uncompress::Adapter::Bunzip2'
=>
'2.020'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.020'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.020'
,
'IO::Uncompress::AnyInflate'
=>
'2.020'
,
'IO::Uncompress::AnyUncompress'
=>
'2.020'
,
'IO::Uncompress::Base'
=>
'2.020'
,
'IO::Uncompress::Bunzip2'
=>
'2.020'
,
'IO::Uncompress::Gunzip'
=>
'2.020'
,
'IO::Uncompress::Inflate'
=>
'2.020'
,
'IO::Uncompress::RawInflate'
=>
'2.020'
,
'IO::Uncompress::Unzip'
=>
'2.020'
,
'IO::Zlib'
=>
'1.09'
,
'IPC::Cmd'
=>
'0.46'
,
'IPC::Msg'
=>
'2.01'
,
'IPC::Open2'
=>
'1.03'
,
'IPC::Open3'
=>
'1.04'
,
'IPC::Semaphore'
=>
'2.01'
,
'IPC::SharedMem'
=>
'2.01'
,
'IPC::SysV'
=>
'2.01'
,
'List::Util'
=>
'1.21'
,
'List::Util::PP'
=>
'1.21'
,
'List::Util::XS'
=>
'1.21'
,
'Locale::Maketext'
=>
'1.13'
,
'Locale::Maketext::Guts'
=>
'1.13'
,
'Locale::Maketext::GutsLoader'
=>
'1.13'
,
'Log::Message'
=>
'0.02'
,
'MIME::Base64'
=>
'3.08'
,
'MIME::QuotedPrint'
=>
'3.08'
,
'Math::BigFloat'
=>
'1.60'
,
'Math::BigInt'
=>
'1.89'
,
'Math::BigInt::FastCalc'
=>
'0.19'
,
'Math::BigRat'
=>
'0.22'
,
'Math::Complex'
=>
'1.56'
,
'Math::Trig'
=>
'1.2'
,
'Memoize'
=>
'1.01_03'
,
'Module::Build'
=>
'0.340201'
,
'Module::Build::Base'
=>
'0.340201'
,
'Module::Build::Compat'
=>
'0.340201'
,
'Module::Build::Config'
=>
'0.340201'
,
'Module::Build::Cookbook'
=>
'0.340201'
,
'Module::Build::Dumper'
=>
'0.340201'
,
'Module::Build::ModuleInfo'
=>
'0.340201'
,
'Module::Build::Notes'
=>
'0.340201'
,
'Module::Build::PPMMaker'
=>
'0.340201'
,
'Module::Build::Platform::Amiga'
=>
'0.340201'
,
'Module::Build::Platform::Default'
=>
'0.340201'
,
'Module::Build::Platform::EBCDIC'
=>
'0.340201'
,
'Module::Build::Platform::MPEiX'
=>
'0.340201'
,
'Module::Build::Platform::MacOS'
=>
'0.340201'
,
'Module::Build::Platform::RiscOS'
=>
'0.340201'
,
'Module::Build::Platform::Unix'
=>
'0.340201'
,
'Module::Build::Platform::VMS'
=>
'0.340201'
,
'Module::Build::Platform::VOS'
=>
'0.340201'
,
'Module::Build::Platform::Windows'
=>
'0.340201'
,
'Module::Build::Platform::aix'
=>
'0.340201'
,
'Module::Build::Platform::cygwin'
=>
'0.340201'
,
'Module::Build::Platform::darwin'
=>
'0.340201'
,
'Module::Build::Platform::os2'
=>
'0.340201'
,
'Module::Build::PodParser'
=>
'0.340201'
,
'Module::Build::Version'
=>
'0.77'
,
'Module::CoreList'
=>
'2.18'
,
'Module::Load'
=>
'0.16'
,
'Module::Load::Conditional'
=>
'0.30'
,
'Module::Loaded'
=>
'0.02'
,
'Module::Pluggable'
=>
'3.9'
,
'Module::Pluggable::Object'
=>
'3.9'
,
'NDBM_File'
=>
'1.08'
,
'NEXT'
=>
'0.64'
,
'Net::Ping'
=>
'2.36'
,
'O'
=>
'1.01'
,
'Object::Accessor'
=>
'0.34'
,
'POSIX'
=>
'1.17'
,
'Package::Constants'
=>
'0.02'
,
'Parse::CPAN::Meta'
=>
'1.39'
,
'PerlIO'
=>
'1.06'
,
'PerlIO::encoding'
=>
'0.11'
,
'PerlIO::scalar'
=>
'0.07'
,
'PerlIO::via'
=>
'0.07'
,
'Pod::Checker'
=>
'1.45'
,
'Pod::Find'
=>
'1.35'
,
'Pod::Html'
=>
'1.09'
,
'Pod::InputObjects'
=>
'1.31'
,
'Pod::Man'
=>
'2.22'
,
'Pod::ParseLink'
=>
'1.09'
,
'Pod::ParseUtils'
=>
'1.36'
,
'Pod::Parser'
=>
'1.37'
,
'Pod::Perldoc'
=>
'3.14_04'
,
'Pod::PlainText'
=>
'2.04'
,
'Pod::Select'
=>
'1.36'
,
'Pod::Simple'
=>
'3.07'
,
'Pod::Simple::XHTML'
=>
'3.04'
,
'Pod::Text'
=>
'3.13'
,
'Pod::Text::Color'
=>
'2.05'
,
'Pod::Text::Overstrike'
=>
'2.03'
,
'Pod::Text::Termcap'
=>
'2.05'
,
'Pod::Usage'
=>
'1.36'
,
'Safe'
=>
'2.18'
,
'Scalar::Util'
=>
'1.21'
,
'Scalar::Util::PP'
=>
'1.21'
,
'SelectSaver'
=>
'1.02'
,
'SelfLoader'
=>
'1.17'
,
'Socket'
=>
'1.82'
,
'Storable'
=>
'2.20'
,
'Switch'
=>
'2.14'
,
'Symbol'
=>
'1.07'
,
'Sys::Syslog'
=>
'0.27'
,
'TAP::Base'
=>
'3.17'
,
'TAP::Formatter::Base'
=>
'3.17'
,
'TAP::Formatter::Color'
=>
'3.17'
,
'TAP::Formatter::Console'
=>
'3.17'
,
'TAP::Formatter::Console::ParallelSession'
=>
'3.17'
,
'TAP::Formatter::Console::Session'
=>
'3.17'
,
'TAP::Formatter::File'
=>
'3.17'
,
'TAP::Formatter::File::Session'
=>
'3.17'
,
'TAP::Formatter::Session'
=>
'3.17'
,
'TAP::Harness'
=>
'3.17'
,
'TAP::Object'
=>
'3.17'
,
'TAP::Parser'
=>
'3.17'
,
'TAP::Parser::Aggregator'
=>
'3.17'
,
'TAP::Parser::Grammar'
=>
'3.17'
,
'TAP::Parser::Iterator'
=>
'3.17'
,
'TAP::Parser::Iterator::Array'
=>
'3.17'
,
'TAP::Parser::Iterator::Process'
=>
'3.17'
,
'TAP::Parser::Iterator::Stream'
=>
'3.17'
,
'TAP::Parser::IteratorFactory'
=>
'3.17'
,
'TAP::Parser::Multiplexer'
=>
'3.17'
,
'TAP::Parser::Result'
=>
'3.17'
,
'TAP::Parser::Result::Bailout'
=>
'3.17'
,
'TAP::Parser::Result::Comment'
=>
'3.17'
,
'TAP::Parser::Result::Plan'
=>
'3.17'
,
'TAP::Parser::Result::Pragma'
=>
'3.17'
,
'TAP::Parser::Result::Test'
=>
'3.17'
,
'TAP::Parser::Result::Unknown'
=>
'3.17'
,
'TAP::Parser::Result::Version'
=>
'3.17'
,
'TAP::Parser::Result::YAML'
=>
'3.17'
,
'TAP::Parser::ResultFactory'
=>
'3.17'
,
'TAP::Parser::Scheduler'
=>
'3.17'
,
'TAP::Parser::Scheduler::Job'
=>
'3.17'
,
'TAP::Parser::Scheduler::Spinner'
=>
'3.17'
,
'TAP::Parser::Source'
=>
'3.17'
,
'TAP::Parser::Source::Perl'
=>
'3.17'
,
'TAP::Parser::Utils'
=>
'3.17'
,
'TAP::Parser::YAMLish::Reader'
=>
'3.17'
,
'TAP::Parser::YAMLish::Writer'
=>
'3.17'
,
'Term::ANSIColor'
=>
'2.00'
,
'Term::ReadLine'
=>
'1.04'
,
'Term::UI'
=>
'0.20'
,
'Test'
=>
'1.25_02'
,
'Test::Builder'
=>
'0.92'
,
'Test::Builder::Module'
=>
'0.92'
,
'Test::Builder::Tester'
=>
'1.18'
,
'Test::Builder::Tester::Color'
=>
'1.18'
,
'Test::Harness'
=>
'3.17'
,
'Test::More'
=>
'0.92'
,
'Test::Simple'
=>
'0.92'
,
'Text::ParseWords'
=>
'3.27'
,
'Text::Tabs'
=>
'2009.0305'
,
'Text::Wrap'
=>
'2009.0305'
,
'Thread::Queue'
=>
'2.11'
,
'Thread::Semaphore'
=>
'2.09'
,
'Tie::Handle'
=>
'4.2'
,
'Tie::Hash'
=>
'1.03'
,
'Tie::RefHash'
=>
'1.38'
,
'Tie::Scalar'
=>
'1.01'
,
'Tie::StdHandle'
=>
'4.2'
,
'Time::HiRes'
=>
'1.9719'
,
'Time::Local'
=>
'1.1901'
,
'Time::Piece'
=>
'1.15'
,
'UNIVERSAL'
=>
'1.05'
,
'Unicode'
=>
'5.1.0'
,
'Unicode::Normalize'
=>
'1.03'
,
'Unicode::UCD'
=>
'0.27'
,
'VMS::Stdio'
=>
'2.4'
,
'Win32'
=>
'0.39'
,
'Win32API::File'
=>
'0.1101'
,
'XS::APItest'
=>
'0.15'
,
'XS::Typemap'
=>
'0.03'
,
'XSLoader'
=>
'0.10'
,
'attributes'
=>
'0.09'
,
'attrs'
=>
'1.03'
,
'autodie'
=>
'2.06_01'
,
'autodie::exception'
=>
'2.06_01'
,
'autodie::exception::system'
=>
'2.06_01'
,
'autodie::hints'
=>
'2.06_01'
,
'base'
=>
'2.14'
,
'bigint'
=>
'0.23'
,
'bignum'
=>
'0.23'
,
'bigrat'
=>
'0.23'
,
'blib'
=>
'1.04'
,
'charnames'
=>
'1.07'
,
'constant'
=>
'1.17'
,
'encoding'
=>
'2.6_01'
,
'feature'
=>
'1.13'
,
'fields'
=>
'2.14'
,
'lib'
=>
'0.62'
,
'mro'
=>
'1.01'
,
'open'
=>
'1.07'
,
'ops'
=>
'1.02'
,
'overload'
=>
'1.07'
,
'overload::numbers'
=>
undef
,
'overloading'
=>
'0.01'
,
'parent'
=>
'0.221'
,
're'
=>
'0.09'
,
'threads'
=>
'1.72'
,
'threads::shared'
=>
'1.29'
,
'version'
=>
'0.77'
,
},
removed
=> {
'CPAN::API::HOWTO'
=> 1,
'CPAN::DeferedCode'
=> 1,
'CPANPLUS::inc'
=> 1,
'ExtUtils::MakeMaker::bytes'
=> 1,
'ExtUtils::MakeMaker::vmsish'
=> 1,
'Test::Harness::Assert'
=> 1,
'Test::Harness::Iterator'
=> 1,
'Test::Harness::Point'
=> 1,
'Test::Harness::Results'
=> 1,
'Test::Harness::Straps'
=> 1,
'Test::Harness::Util'
=> 1,
}
},
5.
011
=> {
delta_from
=> 5.010001,
changed
=> {
'Archive::Tar'
=>
'1.54'
,
'Attribute::Handlers'
=>
'0.87'
,
'AutoLoader'
=>
'5.70'
,
'B::Deparse'
=>
'0.91'
,
'B::Lint'
=>
'1.11_01'
,
'B::Lint::Debug'
=>
'0.01'
,
'CGI'
=>
'3.45'
,
'CGI::Apache'
=>
'1.01'
,
'CGI::Carp'
=>
'3.45'
,
'CGI::Pretty'
=>
'3.44'
,
'CGI::Switch'
=>
'1.01'
,
'CGI::Util'
=>
'3.45'
,
'CPAN'
=>
'1.94_51'
,
'CPAN::Distribution'
=>
'1.94'
,
'CPAN::FTP'
=>
'5.5002'
,
'CPAN::Index'
=>
'1.94'
,
'CPAN::LWP::UserAgent'
=>
'1.94'
,
'CPANPLUS::Dist::Build'
=>
'0.40'
,
'CPANPLUS::Dist::Build::Constants'
=>
'0.40'
,
'Carp'
=>
'1.12'
,
'Carp::Heavy'
=>
'1.12'
,
'Class::ISA'
=>
'0.36'
,
'Compress::Raw::Bzip2'
=>
'2.021'
,
'Compress::Raw::Zlib'
=>
'2.021'
,
'Compress::Zlib'
=>
'2.021'
,
'Cwd'
=>
'3.3002'
,
'Data::Dumper'
=>
'2.125'
,
'Encode'
=>
'2.37'
,
'Exporter'
=>
'5.64'
,
'Exporter::Heavy'
=>
'5.64'
,
'ExtUtils::ParseXS'
=>
'2.200403'
,
'File::Basename'
=>
'2.78'
,
'File::Copy'
=>
'2.16'
,
'File::stat'
=>
'1.02'
,
'IO'
=>
'1.25_01'
,
'IO::Compress::Adapter::Bzip2'
=>
'2.021'
,
'IO::Compress::Adapter::Deflate'
=>
'2.021'
,
'IO::Compress::Adapter::Identity'
=>
'2.021'
,
'IO::Compress::Base'
=>
'2.021'
,
'IO::Compress::Base::Common'
=>
'2.021'
,
'IO::Compress::Bzip2'
=>
'2.021'
,
'IO::Compress::Deflate'
=>
'2.021'
,
'IO::Compress::Gzip'
=>
'2.021'
,
'IO::Compress::Gzip::Constants'
=>
'2.021'
,
'IO::Compress::RawDeflate'
=>
'2.021'
,
'IO::Compress::Zip'
=>
'2.021'
,
'IO::Compress::Zip::Constants'
=>
'2.021'
,
'IO::Compress::Zlib::Constants'
=>
'2.021'
,
'IO::Compress::Zlib::Extra'
=>
'2.021'
,
'IO::Uncompress::Adapter::Bunzip2'
=>
'2.021'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.021'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.021'
,
'IO::Uncompress::AnyInflate'
=>
'2.021'
,
'IO::Uncompress::AnyUncompress'
=>
'2.021'
,
'IO::Uncompress::Base'
=>
'2.021'
,
'IO::Uncompress::Bunzip2'
=>
'2.021'
,
'IO::Uncompress::Gunzip'
=>
'2.021'
,
'IO::Uncompress::Inflate'
=>
'2.021'
,
'IO::Uncompress::RawInflate'
=>
'2.021'
,
'IO::Uncompress::Unzip'
=>
'2.021'
,
'IO::Zlib'
=>
'1.10'
,
'IPC::Cmd'
=>
'0.50'
,
'IPC::Open3'
=>
'1.05'
,
'Locale::Maketext::Simple'
=>
'0.21'
,
'Log::Message::Simple'
=>
'0.06'
,
'Math::BigInt'
=>
'1.89_01'
,
'Math::BigRat'
=>
'0.24'
,
'Module::Build'
=>
'0.35'
,
'Module::Build::Base'
=>
'0.35'
,
'Module::Build::Compat'
=>
'0.35'
,
'Module::Build::Config'
=>
'0.35'
,
'Module::Build::Cookbook'
=>
'0.35'
,
'Module::Build::Dumper'
=>
'0.35'
,
'Module::Build::ModuleInfo'
=>
'0.35'
,
'Module::Build::Notes'
=>
'0.35'
,
'Module::Build::PPMMaker'
=>
'0.35'
,
'Module::Build::Platform::Amiga'
=>
'0.35'
,
'Module::Build::Platform::Default'
=>
'0.35'
,
'Module::Build::Platform::EBCDIC'
=>
'0.35'
,
'Module::Build::Platform::MPEiX'
=>
'0.35'
,
'Module::Build::Platform::MacOS'
=>
'0.35'
,
'Module::Build::Platform::RiscOS'
=>
'0.35'
,
'Module::Build::Platform::Unix'
=>
'0.35'
,
'Module::Build::Platform::VMS'
=>
'0.35'
,
'Module::Build::Platform::VOS'
=>
'0.35'
,
'Module::Build::Platform::Windows'
=>
'0.35'
,
'Module::Build::Platform::aix'
=>
'0.35'
,
'Module::Build::Platform::cygwin'
=>
'0.35'
,
'Module::Build::Platform::darwin'
=>
'0.35'
,
'Module::Build::Platform::os2'
=>
'0.35'
,
'Module::Build::PodParser'
=>
'0.35'
,
'Module::CoreList'
=>
'2.19'
,
'Module::Loaded'
=>
'0.06'
,
'Opcode'
=>
'1.13'
,
'PerlIO::via'
=>
'0.08'
,
'Pod::Perldoc'
=>
'3.15_01'
,
'Pod::Plainer'
=>
'1.01'
,
'Safe'
=>
'2.19'
,
'Socket'
=>
'1.84'
,
'Switch'
=>
'2.14_01'
,
'Term::ANSIColor'
=>
'2.02'
,
'Term::ReadLine'
=>
'1.05'
,
'Text::Balanced'
=>
'2.02'
,
'Text::Soundex'
=>
'3.03_01'
,
'Time::Local'
=>
'1.1901_01'
,
'Unicode::Collate'
=>
'0.52_01'
,
'attributes'
=>
'0.12'
,
'constant'
=>
'1.19'
,
'deprecate'
=>
'0.01'
,
'overload'
=>
'1.08'
,
'parent'
=>
'0.223'
,
're'
=>
'0.10'
,
'threads'
=>
'1.74'
,
'threads::shared'
=>
'1.31'
,
'warnings'
=>
'1.07'
,
},
removed
=> {
'attrs'
=> 1,
}
},
5.
011001
=> {
delta_from
=> 5.011,
changed
=> {
'B'
=>
'1.23'
,
'B::Concise'
=>
'0.77'
,
'B::Deparse'
=>
'0.92'
,
'CGI'
=>
'3.48'
,
'CGI::Pretty'
=>
'3.46'
,
'CGI::Util'
=>
'3.48'
,
'CPANPLUS'
=>
'0.89_03'
,
'CPANPLUS::Internals'
=>
'0.89_03'
,
'CPANPLUS::Shell::Default'
=>
'0.89_03'
,
'Carp'
=>
'1.13'
,
'Carp::Heavy'
=>
'1.13'
,
'ExtUtils::CBuilder'
=>
'0.260301'
,
'ExtUtils::CBuilder::Base'
=>
'0.260301'
,
'ExtUtils::CBuilder::Platform::Unix'
=>
'0.260301'
,
'ExtUtils::CBuilder::Platform::VMS'
=>
'0.260301'
,
'ExtUtils::CBuilder::Platform::Windows'
=>
'0.260301'
,
'ExtUtils::CBuilder::Platform::aix'
=>
'0.260301'
,
'ExtUtils::CBuilder::Platform::cygwin'
=>
'0.260301'
,
'ExtUtils::CBuilder::Platform::darwin'
=>
'0.260301'
,
'ExtUtils::CBuilder::Platform::dec_osf'
=>
'0.260301'
,
'ExtUtils::CBuilder::Platform::os2'
=>
'0.260301'
,
'ExtUtils::Install'
=>
'1.55'
,
'ExtUtils::Manifest'
=>
'1.57'
,
'ExtUtils::Packlist'
=>
'1.44'
,
'ExtUtils::ParseXS'
=>
'2.21'
,
'File::Glob'
=>
'1.07'
,
'File::Path'
=>
'2.08'
,
'IO'
=>
'1.25_02'
,
'Module::CoreList'
=>
'2.21'
,
'Object::Accessor'
=>
'0.36'
,
'Opcode'
=>
'1.15'
,
'POSIX'
=>
'1.18'
,
'Parse::CPAN::Meta'
=>
'1.40'
,
'PerlIO::via'
=>
'0.09'
,
'Pod::Simple'
=>
'3.08'
,
'Socket'
=>
'1.85'
,
'Storable'
=>
'2.22'
,
'Switch'
=>
'2.15'
,
'Test::Builder'
=>
'0.94'
,
'Test::Builder::Module'
=>
'0.94'
,
'Test::More'
=>
'0.94'
,
'Test::Simple'
=>
'0.94'
,
'XS::APItest'
=>
'0.16'
,
'mro'
=>
'1.02'
,
'overload'
=>
'1.09'
,
'threads::shared'
=>
'1.32'
,
},
removed
=> {
}
},
5.
011002
=> {
delta_from
=> 5.011001,
changed
=> {
'B::Concise'
=>
'0.78'
,
'B::Deparse'
=>
'0.93'
,
'CPANPLUS'
=>
'0.89_09'
,
'CPANPLUS::Dist::Build'
=>
'0.44'
,
'CPANPLUS::Dist::Build::Constants'
=>
'0.44'
,
'CPANPLUS::Internals'
=>
'0.89_09'
,
'CPANPLUS::Shell::Default'
=>
'0.89_09'
,
'Carp'
=>
'1.14'
,
'Carp::Heavy'
=>
'1.14'
,
'Compress::Zlib'
=>
'2.022'
,
'DBM_Filter'
=>
'0.03'
,
'Encode'
=>
'2.38'
,
'Encode::Byte'
=>
'2.04'
,
'Encode::CN'
=>
'2.03'
,
'Encode::JP'
=>
'2.04'
,
'Encode::KR'
=>
'2.03'
,
'Encode::TW'
=>
'2.03'
,
'Encode::Unicode'
=>
'2.07'
,
'Env'
=>
'1.01'
,
'Exporter'
=>
'5.64_01'
,
'Exporter::Heavy'
=>
'5.64_01'
,
'ExtUtils::CBuilder'
=>
'0.27'
,
'ExtUtils::CBuilder::Base'
=>
'0.27'
,
'ExtUtils::CBuilder::Platform::Unix'
=>
'0.27'
,
'ExtUtils::CBuilder::Platform::VMS'
=>
'0.27'
,
'ExtUtils::CBuilder::Platform::Windows'
=>
'0.27'
,
'ExtUtils::CBuilder::Platform::Windows::BCC'
=>
'0.27'
,
'ExtUtils::CBuilder::Platform::Windows::GCC'
=>
'0.27'
,
'ExtUtils::CBuilder::Platform::Windows::MSVC'
=>
'0.27'
,
'ExtUtils::CBuilder::Platform::aix'
=>
'0.27'
,
'ExtUtils::CBuilder::Platform::cygwin'
=>
'0.27'
,
'ExtUtils::CBuilder::Platform::darwin'
=>
'0.27'
,
'ExtUtils::CBuilder::Platform::dec_osf'
=>
'0.27'
,
'ExtUtils::CBuilder::Platform::os2'
=>
'0.27'
,
'File::Fetch'
=>
'0.22'
,
'I18N::LangTags::Detect'
=>
'1.04'
,
'I18N::Langinfo'
=>
'0.03'
,
'IO::Compress::Adapter::Bzip2'
=>
'2.022'
,
'IO::Compress::Adapter::Deflate'
=>
'2.022'
,
'IO::Compress::Adapter::Identity'
=>
'2.022'
,
'IO::Compress::Base'
=>
'2.022'
,
'IO::Compress::Base::Common'
=>
'2.022'
,
'IO::Compress::Bzip2'
=>
'2.022'
,
'IO::Compress::Deflate'
=>
'2.022'
,
'IO::Compress::Gzip'
=>
'2.022'
,
'IO::Compress::Gzip::Constants'
=>
'2.022'
,
'IO::Compress::RawDeflate'
=>
'2.022'
,
'IO::Compress::Zip'
=>
'2.022'
,
'IO::Compress::Zip::Constants'
=>
'2.022'
,
'IO::Compress::Zlib::Constants'
=>
'2.022'
,
'IO::Compress::Zlib::Extra'
=>
'2.022'
,
'IO::Uncompress::Adapter::Bunzip2'
=>
'2.022'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.022'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.022'
,
'IO::Uncompress::AnyInflate'
=>
'2.022'
,
'IO::Uncompress::AnyUncompress'
=>
'2.022'
,
'IO::Uncompress::Base'
=>
'2.022'
,
'IO::Uncompress::Bunzip2'
=>
'2.022'
,
'IO::Uncompress::Gunzip'
=>
'2.022'
,
'IO::Uncompress::Inflate'
=>
'2.022'
,
'IO::Uncompress::RawInflate'
=>
'2.022'
,
'IO::Uncompress::Unzip'
=>
'2.022'
,
'IPC::Cmd'
=>
'0.54'
,
'List::Util'
=>
'1.22'
,
'List::Util::PP'
=>
'1.22'
,
'List::Util::XS'
=>
'1.22'
,
'Locale::Maketext'
=>
'1.14'
,
'Module::Build'
=>
'0.35_09'
,
'Module::Build::Base'
=>
'0.35_09'
,
'Module::Build::Compat'
=>
'0.35_09'
,
'Module::Build::Config'
=>
'0.35_09'
,
'Module::Build::Cookbook'
=>
'0.35_09'
,
'Module::Build::Dumper'
=>
'0.35_09'
,
'Module::Build::ModuleInfo'
=>
'0.35_09'
,
'Module::Build::Notes'
=>
'0.35_09'
,
'Module::Build::PPMMaker'
=>
'0.35_09'
,
'Module::Build::Platform::Amiga'
=>
'0.35_09'
,
'Module::Build::Platform::Default'
=>
'0.35_09'
,
'Module::Build::Platform::EBCDIC'
=>
'0.35_09'
,
'Module::Build::Platform::MPEiX'
=>
'0.35_09'
,
'Module::Build::Platform::MacOS'
=>
'0.35_09'
,
'Module::Build::Platform::RiscOS'
=>
'0.35_09'
,
'Module::Build::Platform::Unix'
=>
'0.35_09'
,
'Module::Build::Platform::VMS'
=>
'0.35_09'
,
'Module::Build::Platform::VOS'
=>
'0.35_09'
,
'Module::Build::Platform::Windows'
=>
'0.35_09'
,
'Module::Build::Platform::aix'
=>
'0.35_09'
,
'Module::Build::Platform::cygwin'
=>
'0.35_09'
,
'Module::Build::Platform::darwin'
=>
'0.35_09'
,
'Module::Build::Platform::os2'
=>
'0.35_09'
,
'Module::Build::PodParser'
=>
'0.35_09'
,
'Module::Build::YAML'
=>
'1.40'
,
'Module::CoreList'
=>
'2.23'
,
'Module::Load::Conditional'
=>
'0.34'
,
'Pod::Simple'
=>
'3.10'
,
'Pod::Simple::XHTML'
=>
'3.10'
,
'Scalar::Util'
=>
'1.22'
,
'Scalar::Util::PP'
=>
'1.22'
,
'Switch'
=>
'2.16'
,
'XS::APItest'
=>
'0.17'
,
'XS::APItest::KeywordRPN'
=>
'0.003'
,
'base'
=>
'2.15'
,
'diagnostics'
=>
'1.18'
,
'fields'
=>
'2.15'
,
'inc::latest'
=>
'0.35_09'
,
'legacy'
=>
'1.00'
,
'overload'
=>
'1.10'
,
},
removed
=> {
}
},
5.
011003
=> {
delta_from
=> 5.011002,
changed
=> {
'App::Cpan'
=>
'1.570001'
,
'Archive::Extract'
=>
'0.36'
,
'CPAN'
=>
'1.94_5301'
,
'CPAN::FTP'
=>
'5.5004'
,
'CPAN::FirstTime'
=>
'5.530001'
,
'CPAN::Mirrors'
=>
'1.770001'
,
'CPANPLUS'
=>
'0.90'
,
'CPANPLUS::Internals'
=>
'0.90'
,
'CPANPLUS::Shell::Default'
=>
'0.90'
,
'Cwd'
=>
'3.31'
,
'Encode'
=>
'2.39'
,
'ExtUtils::Command::MM'
=>
'6.56'
,
'ExtUtils::Liblist'
=>
'6.56'
,
'ExtUtils::Liblist::Kid'
=>
'6.56'
,
'ExtUtils::MM'
=>
'6.56'
,
'ExtUtils::MM_AIX'
=>
'6.56'
,
'ExtUtils::MM_Any'
=>
'6.56'
,
'ExtUtils::MM_BeOS'
=>
'6.56'
,
'ExtUtils::MM_Cygwin'
=>
'6.56'
,
'ExtUtils::MM_DOS'
=>
'6.56'
,
'ExtUtils::MM_Darwin'
=>
'6.56'
,
'ExtUtils::MM_MacOS'
=>
'6.56'
,
'ExtUtils::MM_NW5'
=>
'6.56'
,
'ExtUtils::MM_OS2'
=>
'6.56'
,
'ExtUtils::MM_QNX'
=>
'6.56'
,
'ExtUtils::MM_UWIN'
=>
'6.56'
,
'ExtUtils::MM_Unix'
=>
'6.56'
,
'ExtUtils::MM_VMS'
=>
'6.56'
,
'ExtUtils::MM_VOS'
=>
'6.56'
,
'ExtUtils::MM_Win32'
=>
'6.56'
,
'ExtUtils::MM_Win95'
=>
'6.56'
,
'ExtUtils::MY'
=>
'6.56'
,
'ExtUtils::MakeMaker'
=>
'6.56'
,
'ExtUtils::MakeMaker::Config'
=>
'6.56'
,
'ExtUtils::Mkbootstrap'
=>
'6.56'
,
'ExtUtils::Mksymlists'
=>
'6.56'
,
'ExtUtils::testlib'
=>
'6.56'
,
'File::Find'
=>
'1.15'
,
'File::Path'
=>
'2.08_01'
,
'File::Spec'
=>
'3.31'
,
'Module::Build'
=>
'0.36'
,
'Module::Build::Base'
=>
'0.36'
,
'Module::Build::Compat'
=>
'0.36'
,
'Module::Build::Config'
=>
'0.36'
,
'Module::Build::Cookbook'
=>
'0.36'
,
'Module::Build::Dumper'
=>
'0.36'
,
'Module::Build::ModuleInfo'
=>
'0.36'
,
'Module::Build::Notes'
=>
'0.36'
,
'Module::Build::PPMMaker'
=>
'0.36'
,
'Module::Build::Platform::Amiga'
=>
'0.36'
,
'Module::Build::Platform::Default'
=>
'0.36'
,
'Module::Build::Platform::EBCDIC'
=>
'0.36'
,
'Module::Build::Platform::MPEiX'
=>
'0.36'
,
'Module::Build::Platform::MacOS'
=>
'0.36'
,
'Module::Build::Platform::RiscOS'
=>
'0.36'
,
'Module::Build::Platform::Unix'
=>
'0.36'
,
'Module::Build::Platform::VMS'
=>
'0.36'
,
'Module::Build::Platform::VOS'
=>
'0.36'
,
'Module::Build::Platform::Windows'
=>
'0.36'
,
'Module::Build::Platform::aix'
=>
'0.36'
,
'Module::Build::Platform::cygwin'
=>
'0.36'
,
'Module::Build::Platform::darwin'
=>
'0.36'
,
'Module::Build::Platform::os2'
=>
'0.36'
,
'Module::Build::PodParser'
=>
'0.36'
,
'Module::CoreList'
=>
'2.24'
,
'POSIX'
=>
'1.19'
,
'Pod::Simple'
=>
'3.13'
,
'Pod::Simple::BlackBox'
=>
'3.13'
,
'Pod::Simple::Checker'
=>
'3.13'
,
'Pod::Simple::Debug'
=>
'3.13'
,
'Pod::Simple::DumpAsText'
=>
'3.13'
,
'Pod::Simple::DumpAsXML'
=>
'3.13'
,
'Pod::Simple::HTML'
=>
'3.13'
,
'Pod::Simple::HTMLBatch'
=>
'3.13'
,
'Pod::Simple::LinkSection'
=>
'3.13'
,
'Pod::Simple::Methody'
=>
'3.13'
,
'Pod::Simple::Progress'
=>
'3.13'
,
'Pod::Simple::PullParser'
=>
'3.13'
,
'Pod::Simple::PullParserEndToken'
=>
'3.13'
,
'Pod::Simple::PullParserStartToken'
=>
'3.13'
,
'Pod::Simple::PullParserTextToken'
=>
'3.13'
,
'Pod::Simple::PullParserToken'
=>
'3.13'
,
'Pod::Simple::RTF'
=>
'3.13'
,
'Pod::Simple::Search'
=>
'3.13'
,
'Pod::Simple::SimpleTree'
=>
'3.13'
,
'Pod::Simple::Text'
=>
'3.13'
,
'Pod::Simple::TextContent'
=>
'3.13'
,
'Pod::Simple::TiedOutFH'
=>
'3.13'
,
'Pod::Simple::Transcode'
=>
'3.13'
,
'Pod::Simple::TranscodeDumb'
=>
'3.13'
,
'Pod::Simple::TranscodeSmart'
=>
'3.13'
,
'Pod::Simple::XHTML'
=>
'3.13'
,
'Pod::Simple::XMLOutStream'
=>
'3.13'
,
'Safe'
=>
'2.20'
,
'Unicode'
=>
'5.2.0'
,
'constant'
=>
'1.20'
,
'diagnostics'
=>
'1.19'
,
'feature'
=>
'1.14'
,
'inc::latest'
=>
'0.36'
,
'threads'
=>
'1.75'
,
'warnings'
=>
'1.08'
,
},
removed
=> {
'legacy'
=> 1,
}
},
5.
011004
=> {
delta_from
=> 5.011003,
changed
=> {
'App::Cpan'
=>
'1.5701'
,
'Archive::Extract'
=>
'0.38'
,
'B::Deparse'
=>
'0.94'
,
'CPAN'
=>
'1.94_54'
,
'CPAN::FirstTime'
=>
'5.53'
,
'CPAN::Mirrors'
=>
'1.77'
,
'Carp'
=>
'1.15'
,
'Carp::Heavy'
=>
'1.15'
,
'Compress::Raw::Bzip2'
=>
'2.024'
,
'Compress::Raw::Zlib'
=>
'2.024'
,
'Compress::Zlib'
=>
'2.024'
,
'File::Copy'
=>
'2.17'
,
'File::Fetch'
=>
'0.24'
,
'GDBM_File'
=>
'1.10'
,
'IO::Compress::Adapter::Bzip2'
=>
'2.024'
,
'IO::Compress::Adapter::Deflate'
=>
'2.024'
,
'IO::Compress::Adapter::Identity'
=>
'2.024'
,
'IO::Compress::Base'
=>
'2.024'
,
'IO::Compress::Base::Common'
=>
'2.024'
,
'IO::Compress::Bzip2'
=>
'2.024'
,
'IO::Compress::Deflate'
=>
'2.024'
,
'IO::Compress::Gzip'
=>
'2.024'
,
'IO::Compress::Gzip::Constants'
=>
'2.024'
,
'IO::Compress::RawDeflate'
=>
'2.024'
,
'IO::Compress::Zip'
=>
'2.024'
,
'IO::Compress::Zip::Constants'
=>
'2.024'
,
'IO::Compress::Zlib::Constants'
=>
'2.024'
,
'IO::Compress::Zlib::Extra'
=>
'2.024'
,
'IO::Uncompress::Adapter::Bunzip2'
=>
'2.024'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.024'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.024'
,
'IO::Uncompress::AnyInflate'
=>
'2.024'
,
'IO::Uncompress::AnyUncompress'
=>
'2.024'
,
'IO::Uncompress::Base'
=>
'2.024'
,
'IO::Uncompress::Bunzip2'
=>
'2.024'
,
'IO::Uncompress::Gunzip'
=>
'2.024'
,
'IO::Uncompress::Inflate'
=>
'2.024'
,
'IO::Uncompress::RawInflate'
=>
'2.024'
,
'IO::Uncompress::Unzip'
=>
'2.024'
,
'Module::Build'
=>
'0.3603'
,
'Module::Build::Base'
=>
'0.3603'
,
'Module::Build::Compat'
=>
'0.3603'
,
'Module::Build::Config'
=>
'0.3603'
,
'Module::Build::Cookbook'
=>
'0.3603'
,
'Module::Build::Dumper'
=>
'0.3603'
,
'Module::Build::ModuleInfo'
=>
'0.3603'
,
'Module::Build::Notes'
=>
'0.3603'
,
'Module::Build::PPMMaker'
=>
'0.3603'
,
'Module::Build::Platform::Amiga'
=>
'0.3603'
,
'Module::Build::Platform::Default'
=>
'0.3603'
,
'Module::Build::Platform::EBCDIC'
=>
'0.3603'
,
'Module::Build::Platform::MPEiX'
=>
'0.3603'
,
'Module::Build::Platform::MacOS'
=>
'0.3603'
,
'Module::Build::Platform::RiscOS'
=>
'0.3603'
,
'Module::Build::Platform::Unix'
=>
'0.3603'
,
'Module::Build::Platform::VMS'
=>
'0.3603'
,
'Module::Build::Platform::VOS'
=>
'0.3603'
,
'Module::Build::Platform::Windows'
=>
'0.3603'
,
'Module::Build::Platform::aix'
=>
'0.3603'
,
'Module::Build::Platform::cygwin'
=>
'0.3603'
,
'Module::Build::Platform::darwin'
=>
'0.3603'
,
'Module::Build::Platform::os2'
=>
'0.3603'
,
'Module::Build::PodParser'
=>
'0.3603'
,
'Module::CoreList'
=>
'2.25'
,
'PerlIO::encoding'
=>
'0.12'
,
'Safe'
=>
'2.21'
,
'UNIVERSAL'
=>
'1.06'
,
'feature'
=>
'1.15'
,
'inc::latest'
=>
'0.3603'
,
'less'
=>
'0.03'
,
're'
=>
'0.11'
,
'version'
=>
'0.81'
,
'warnings'
=>
'1.09'
,
},
removed
=> {
}
},
5.
011005
=> {
delta_from
=> 5.011004,
changed
=> {
'B::Debug'
=>
'1.12'
,
'CPAN'
=>
'1.94_56'
,
'CPAN::Debug'
=>
'5.5001'
,
'CPAN::Distribution'
=>
'1.9456'
,
'CPAN::FirstTime'
=>
'5.5301'
,
'CPAN::HandleConfig'
=>
'5.5001'
,
'CPAN::Shell'
=>
'5.5001'
,
'CPAN::Tarzip'
=>
'5.5011'
,
'CPANPLUS::Dist::Build'
=>
'0.46'
,
'CPANPLUS::Dist::Build::Constants'
=>
'0.46'
,
'Module::CoreList'
=>
'2.26'
,
'Pod::Man'
=>
'2.23'
,
'Pod::ParseLink'
=>
'1.10'
,
'Pod::Perldoc'
=>
'3.15_02'
,
'Pod::Plainer'
=>
'1.02'
,
'Pod::Text'
=>
'3.14'
,
'Pod::Text::Color'
=>
'2.06'
,
'Pod::Text::Overstrike'
=>
'2.04'
,
'Pod::Text::Termcap'
=>
'2.06'
,
'Safe'
=>
'2.22'
,
'Socket'
=>
'1.86'
,
'version'
=>
'0.82'
,
},
removed
=> {
}
},
5.
012
=> {
delta_from
=> 5.011005,
changed
=> {
'B::Deparse'
=>
'0.96'
,
'CPAN::Distribution'
=>
'1.9456_01'
,
'Module::CoreList'
=>
'2.29'
,
'Safe'
=>
'2.25'
,
'Socket'
=>
'1.87'
,
'Tie::Scalar'
=>
'1.02'
,
'Time::Piece'
=>
'1.15_01'
,
'bytes'
=>
'1.04'
,
'feature'
=>
'1.16'
,
'utf8'
=>
'1.08'
,
},
removed
=> {
}
},
5.
012001
=> {
delta_from
=> 5.012,
changed
=> {
'B::Deparse'
=>
'0.97'
,
'CGI'
=>
'3.49'
,
'CGI::Fast'
=>
'1.08'
,
'Carp'
=>
'1.16'
,
'Carp::Heavy'
=>
'1.16'
,
'File::Copy'
=>
'2.18'
,
'Module::CoreList'
=>
'2.32'
,
'Pod::Functions'
=>
'1.04'
,
'Pod::Simple'
=>
'3.14'
,
'Pod::Simple::BlackBox'
=>
'3.14'
,
'Pod::Simple::Checker'
=>
'3.14'
,
'Pod::Simple::Debug'
=>
'3.14'
,
'Pod::Simple::DumpAsText'
=>
'3.14'
,
'Pod::Simple::DumpAsXML'
=>
'3.14'
,
'Pod::Simple::HTML'
=>
'3.14'
,
'Pod::Simple::HTMLBatch'
=>
'3.14'
,
'Pod::Simple::LinkSection'
=>
'3.14'
,
'Pod::Simple::Methody'
=>
'3.14'
,
'Pod::Simple::Progress'
=>
'3.14'
,
'Pod::Simple::PullParser'
=>
'3.14'
,
'Pod::Simple::PullParserEndToken'
=>
'3.14'
,
'Pod::Simple::PullParserStartToken'
=>
'3.14'
,
'Pod::Simple::PullParserTextToken'
=>
'3.14'
,
'Pod::Simple::PullParserToken'
=>
'3.14'
,
'Pod::Simple::RTF'
=>
'3.14'
,
'Pod::Simple::Search'
=>
'3.14'
,
'Pod::Simple::SimpleTree'
=>
'3.14'
,
'Pod::Simple::Text'
=>
'3.14'
,
'Pod::Simple::TextContent'
=>
'3.14'
,
'Pod::Simple::TiedOutFH'
=>
'3.14'
,
'Pod::Simple::Transcode'
=>
'3.14'
,
'Pod::Simple::TranscodeDumb'
=>
'3.14'
,
'Pod::Simple::TranscodeSmart'
=>
'3.14'
,
'Pod::Simple::XHTML'
=>
'3.14'
,
'Pod::Simple::XMLOutStream'
=>
'3.14'
,
'Safe'
=>
'2.27'
,
},
removed
=> {
}
},
5.
012002
=> {
delta_from
=> 5.012001,
changed
=> {
'Carp'
=>
'1.17'
,
'Carp::Heavy'
=>
'1.17'
,
'File::Spec'
=>
'3.31_01'
,
'Module::CoreList'
=>
'2.38'
,
'Module::Load::Conditional'
=>
'0.38'
,
'PerlIO::scalar'
=>
'0.08'
,
},
removed
=> {
}
},
5.
012003
=> {
delta_from
=> 5.012002,
changed
=> {
'B::Deparse'
=>
'0.9701'
,
'Module::Build::Platform::cygwin'
=>
'0.360301'
,
'Module::CoreList'
=>
'2.43'
,
'Socket'
=>
'1.87_01'
,
},
removed
=> {
}
},
5.
012004
=> {
delta_from
=> 5.012003,
changed
=> {
'Module::CoreList'
=>
'2.50'
,
},
removed
=> {
}
},
5.
012005
=> {
delta_from
=> 5.012004,
changed
=> {
'B::Concise'
=>
'0.78_01'
,
'Encode'
=>
'2.39_01'
,
'File::Glob'
=>
'1.07_01'
,
'Module::CoreList'
=>
'2.50_02'
,
'Unicode::UCD'
=>
'0.29'
,
'charnames'
=>
'1.07_01'
,
},
removed
=> {
}
},
5.
013
=> {
delta_from
=> 5.012,
changed
=> {
'CGI'
=>
'3.49'
,
'CGI::Fast'
=>
'1.08'
,
'Data::Dumper'
=>
'2.126'
,
'ExtUtils::MM_Unix'
=>
'6.5601'
,
'ExtUtils::MakeMaker'
=>
'6.5601'
,
'File::Copy'
=>
'2.18'
,
'IPC::Open3'
=>
'1.06'
,
'MIME::Base64'
=>
'3.09'
,
'MIME::QuotedPrint'
=>
'3.09'
,
'Module::CoreList'
=>
'2.31'
,
'Pod::Functions'
=>
'1.04'
,
'XS::APItest'
=>
'0.18'
,
'XS::APItest::KeywordRPN'
=>
'0.004'
,
'feature'
=>
'1.17'
,
'threads'
=>
'1.77_01'
,
'threads::shared'
=>
'1.33'
,
},
removed
=> {
}
},
5.
013001
=> {
delta_from
=> 5.012001,
changed
=> {
'Data::Dumper'
=>
'2.126'
,
'Dumpvalue'
=>
'1.14'
,
'Errno'
=>
'1.12'
,
'ExtUtils::MM_Unix'
=>
'6.5601'
,
'ExtUtils::MakeMaker'
=>
'6.5601'
,
'ExtUtils::ParseXS'
=>
'2.2205'
,
'File::Find'
=>
'1.16'
,
'IPC::Cmd'
=>
'0.58'
,
'IPC::Open3'
=>
'1.06'
,
'List::Util'
=>
'1.23'
,
'List::Util::PP'
=>
'1.23'
,
'List::Util::XS'
=>
'1.23'
,
'Locale::Codes'
=>
'3.12'
,
'Locale::Codes::Country'
=>
'3.12'
,
'Locale::Codes::Currency'
=>
'3.12'
,
'Locale::Codes::Language'
=>
'3.12'
,
'Locale::Codes::Script'
=>
'3.12'
,
'Locale::Constants'
=>
'3.12'
,
'Locale::Country'
=>
'3.12'
,
'Locale::Currency'
=>
'3.12'
,
'Locale::Language'
=>
'3.12'
,
'Locale::Script'
=>
'3.12'
,
'MIME::Base64'
=>
'3.09'
,
'MIME::QuotedPrint'
=>
'3.09'
,
'Module::Build::Platform::cygwin'
=>
'0.360301'
,
'Module::CoreList'
=>
'2.34'
,
'Module::Load::Conditional'
=>
'0.38'
,
'PerlIO::scalar'
=>
'0.08'
,
'Scalar::Util'
=>
'1.23'
,
'Scalar::Util::PP'
=>
'1.23'
,
'Socket'
=>
'1.88'
,
'Term::ReadLine'
=>
'1.06'
,
'Unicode::UCD'
=>
'0.28'
,
'XS::APItest'
=>
'0.19'
,
'XS::APItest::KeywordRPN'
=>
'0.004'
,
'charnames'
=>
'1.08'
,
'feature'
=>
'1.17'
,
'threads'
=>
'1.77_01'
,
'threads::shared'
=>
'1.33'
,
},
removed
=> {
'Class::ISA'
=> 1,
'Pod::Plainer'
=> 1,
'Switch'
=> 1,
}
},
5.
013002
=> {
delta_from
=> 5.013001,
changed
=> {
'B::Concise'
=>
'0.79'
,
'B::Deparse'
=>
'0.98'
,
'CPAN'
=>
'1.94_57'
,
'CPAN::Distribution'
=>
'1.9600'
,
'Exporter'
=>
'5.64_02'
,
'Exporter::Heavy'
=>
'5.64_02'
,
'File::Copy'
=>
'2.19'
,
'Hash::Util'
=>
'0.08'
,
'IO::Socket'
=>
'1.32'
,
'Locale::Codes'
=>
'3.13'
,
'Locale::Codes::Country'
=>
'3.13'
,
'Locale::Codes::Currency'
=>
'3.13'
,
'Locale::Codes::Language'
=>
'3.13'
,
'Locale::Codes::Script'
=>
'3.13'
,
'Locale::Constants'
=>
'3.13'
,
'Locale::Country'
=>
'3.13'
,
'Locale::Currency'
=>
'3.13'
,
'Locale::Language'
=>
'3.13'
,
'Locale::Script'
=>
'3.13'
,
'Search::Dict'
=>
'1.03'
,
'Socket'
=>
'1.89'
,
'Thread::Semaphore'
=>
'2.11'
,
'UNIVERSAL'
=>
'1.07'
,
'VMS::DCLsym'
=>
'1.04'
,
'mro'
=>
'1.03'
,
'threads'
=>
'1.77_02'
,
'threads::shared'
=>
'1.33_01'
,
},
removed
=> {
}
},
5.
013003
=> {
delta_from
=> 5.013002,
changed
=> {
'App::Prove'
=>
'3.21'
,
'App::Prove::State'
=>
'3.21'
,
'App::Prove::State::Result'
=>
'3.21'
,
'App::Prove::State::Result::Test'
=>
'3.21'
,
'Archive::Extract'
=>
'0.42'
,
'Archive::Tar'
=>
'1.64'
,
'Archive::Tar::Constant'
=>
'1.64'
,
'Archive::Tar::File'
=>
'1.64'
,
'Attribute::Handlers'
=>
'0.88'
,
'CPANPLUS'
=>
'0.9007'
,
'CPANPLUS::Internals'
=>
'0.9007'
,
'CPANPLUS::Shell::Default'
=>
'0.9007'
,
'Compress::Raw::Bzip2'
=>
'2.027'
,
'Compress::Raw::Zlib'
=>
'2.027_01'
,
'Compress::Zlib'
=>
'2.027'
,
'DB'
=>
'1.03'
,
'Digest::MD5'
=>
'2.40'
,
'Digest::SHA'
=>
'5.48'
,
'Exporter'
=>
'5.64_03'
,
'Exporter::Heavy'
=>
'5.64_03'
,
'ExtUtils::CBuilder'
=>
'0.2703'
,
'ExtUtils::CBuilder::Base'
=>
'0.2703_01'
,
'ExtUtils::CBuilder::Platform::Unix'
=>
'0.2703'
,
'ExtUtils::CBuilder::Platform::VMS'
=>
'0.2703'
,
'ExtUtils::CBuilder::Platform::Windows'
=>
'0.2703'
,
'ExtUtils::CBuilder::Platform::Windows::BCC'
=>
'0.2703'
,
'ExtUtils::CBuilder::Platform::Windows::GCC'
=>
'0.2703'
,
'ExtUtils::CBuilder::Platform::Windows::MSVC'
=>
'0.2703'
,
'ExtUtils::CBuilder::Platform::aix'
=>
'0.2703'
,
'ExtUtils::CBuilder::Platform::cygwin'
=>
'0.2703'
,
'ExtUtils::CBuilder::Platform::darwin'
=>
'0.2703'
,
'ExtUtils::CBuilder::Platform::dec_osf'
=>
'0.2703'
,
'ExtUtils::CBuilder::Platform::os2'
=>
'0.2703'
,
'ExtUtils::Manifest'
=>
'1.58'
,
'ExtUtils::ParseXS'
=>
'2.2206'
,
'Fatal'
=>
'2.10'
,
'File::Basename'
=>
'2.79'
,
'File::Copy'
=>
'2.20'
,
'File::DosGlob'
=>
'1.02'
,
'File::Find'
=>
'1.17'
,
'File::Glob'
=>
'1.08'
,
'File::stat'
=>
'1.03'
,
'I18N::LangTags'
=>
'0.35_01'
,
'I18N::LangTags::List'
=>
'0.35_01'
,
'IO::Compress::Adapter::Bzip2'
=>
'2.027'
,
'IO::Compress::Adapter::Deflate'
=>
'2.027'
,
'IO::Compress::Adapter::Identity'
=>
'2.027'
,
'IO::Compress::Base'
=>
'2.027'
,
'IO::Compress::Base::Common'
=>
'2.027'
,
'IO::Compress::Bzip2'
=>
'2.027'
,
'IO::Compress::Deflate'
=>
'2.027'
,
'IO::Compress::Gzip'
=>
'2.027'
,
'IO::Compress::Gzip::Constants'
=>
'2.027'
,
'IO::Compress::RawDeflate'
=>
'2.027'
,
'IO::Compress::Zip'
=>
'2.027'
,
'IO::Compress::Zip::Constants'
=>
'2.027'
,
'IO::Compress::Zlib::Constants'
=>
'2.027'
,
'IO::Compress::Zlib::Extra'
=>
'2.027'
,
'IO::Uncompress::Adapter::Bunzip2'
=>
'2.027'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.027'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.027'
,
'IO::Uncompress::AnyInflate'
=>
'2.027'
,
'IO::Uncompress::AnyUncompress'
=>
'2.027'
,
'IO::Uncompress::Base'
=>
'2.027'
,
'IO::Uncompress::Bunzip2'
=>
'2.027'
,
'IO::Uncompress::Gunzip'
=>
'2.027'
,
'IO::Uncompress::Inflate'
=>
'2.027'
,
'IO::Uncompress::RawInflate'
=>
'2.027'
,
'IO::Uncompress::Unzip'
=>
'2.027'
,
'IPC::Cmd'
=>
'0.60'
,
'IPC::Msg'
=>
'2.03'
,
'IPC::Semaphore'
=>
'2.03'
,
'IPC::SharedMem'
=>
'2.03'
,
'IPC::SysV'
=>
'2.03'
,
'Locale::Maketext'
=>
'1.15'
,
'Locale::Maketext::Guts'
=>
undef
,
'Locale::Maketext::GutsLoader'
=>
undef
,
'Module::Build'
=>
'0.3607'
,
'Module::Build::Base'
=>
'0.3607'
,
'Module::Build::Compat'
=>
'0.3607'
,
'Module::Build::Config'
=>
'0.3607'
,
'Module::Build::Cookbook'
=>
'0.3607'
,
'Module::Build::Dumper'
=>
'0.3607'
,
'Module::Build::ModuleInfo'
=>
'0.3607'
,
'Module::Build::Notes'
=>
'0.3607'
,
'Module::Build::PPMMaker'
=>
'0.3607'
,
'Module::Build::Platform::Amiga'
=>
'0.3607'
,
'Module::Build::Platform::Default'
=>
'0.3607'
,
'Module::Build::Platform::EBCDIC'
=>
'0.3607'
,
'Module::Build::Platform::MPEiX'
=>
'0.3607'
,
'Module::Build::Platform::MacOS'
=>
'0.3607'
,
'Module::Build::Platform::RiscOS'
=>
'0.3607'
,
'Module::Build::Platform::Unix'
=>
'0.3607'
,
'Module::Build::Platform::VMS'
=>
'0.3607'
,
'Module::Build::Platform::VOS'
=>
'0.3607'
,
'Module::Build::Platform::Windows'
=>
'0.3607'
,
'Module::Build::Platform::aix'
=>
'0.3607'
,
'Module::Build::Platform::cygwin'
=>
'0.3607'
,
'Module::Build::Platform::darwin'
=>
'0.3607'
,
'Module::Build::Platform::os2'
=>
'0.3607'
,
'Module::Build::PodParser'
=>
'0.3607'
,
'Module::CoreList'
=>
'2.36'
,
'Module::Load'
=>
'0.18'
,
'TAP::Base'
=>
'3.21'
,
'TAP::Formatter::Base'
=>
'3.21'
,
'TAP::Formatter::Color'
=>
'3.21'
,
'TAP::Formatter::Console'
=>
'3.21'
,
'TAP::Formatter::Console::ParallelSession'
=>
'3.21'
,
'TAP::Formatter::Console::Session'
=>
'3.21'
,
'TAP::Formatter::File'
=>
'3.21'
,
'TAP::Formatter::File::Session'
=>
'3.21'
,
'TAP::Formatter::Session'
=>
'3.21'
,
'TAP::Harness'
=>
'3.21'
,
'TAP::Object'
=>
'3.21'
,
'TAP::Parser'
=>
'3.21'
,
'TAP::Parser::Aggregator'
=>
'3.21'
,
'TAP::Parser::Grammar'
=>
'3.21'
,
'TAP::Parser::Iterator'
=>
'3.21'
,
'TAP::Parser::Iterator::Array'
=>
'3.21'
,
'TAP::Parser::Iterator::Process'
=>
'3.21'
,
'TAP::Parser::Iterator::Stream'
=>
'3.21'
,
'TAP::Parser::IteratorFactory'
=>
'3.21'
,
'TAP::Parser::Multiplexer'
=>
'3.21'
,
'TAP::Parser::Result'
=>
'3.21'
,
'TAP::Parser::Result::Bailout'
=>
'3.21'
,
'TAP::Parser::Result::Comment'
=>
'3.21'
,
'TAP::Parser::Result::Plan'
=>
'3.21'
,
'TAP::Parser::Result::Pragma'
=>
'3.21'
,
'TAP::Parser::Result::Test'
=>
'3.21'
,
'TAP::Parser::Result::Unknown'
=>
'3.21'
,
'TAP::Parser::Result::Version'
=>
'3.21'
,
'TAP::Parser::Result::YAML'
=>
'3.21'
,
'TAP::Parser::ResultFactory'
=>
'3.21'
,
'TAP::Parser::Scheduler'
=>
'3.21'
,
'TAP::Parser::Scheduler::Job'
=>
'3.21'
,
'TAP::Parser::Scheduler::Spinner'
=>
'3.21'
,
'TAP::Parser::Source'
=>
'3.21'
,
'TAP::Parser::SourceHandler'
=>
'3.21'
,
'TAP::Parser::SourceHandler::Executable'
=>
'3.21'
,
'TAP::Parser::SourceHandler::File'
=>
'3.21'
,
'TAP::Parser::SourceHandler::Handle'
=>
'3.21'
,
'TAP::Parser::SourceHandler::Perl'
=>
'3.21'
,
'TAP::Parser::SourceHandler::RawTAP'
=>
'3.21'
,
'TAP::Parser::SourceHandler::pgTAP'
=>
'3.21'
,
'TAP::Parser::Utils'
=>
'3.21'
,
'TAP::Parser::YAMLish::Reader'
=>
'3.21'
,
'TAP::Parser::YAMLish::Writer'
=>
'3.21'
,
'Term::ANSIColor'
=>
'3.00'
,
'Term::ReadLine'
=>
'1.07'
,
'Test::Harness'
=>
'3.21'
,
'Tie::Array'
=>
'1.04'
,
'Time::HiRes'
=>
'1.9721'
,
'Time::Piece'
=>
'1.20_01'
,
'Unicode::Collate'
=>
'0.53'
,
'Unicode::Normalize'
=>
'1.06'
,
'Unicode::UCD'
=>
'0.29'
,
'autodie'
=>
'2.10'
,
'autodie::exception'
=>
'2.10'
,
'autodie::exception::system'
=>
'2.10'
,
'autodie::hints'
=>
'2.10'
,
'blib'
=>
'1.05'
,
'charnames'
=>
'1.11'
,
'diagnostics'
=>
'1.20'
,
'inc::latest'
=>
'0.3607'
,
'lib'
=>
'0.63'
,
're'
=>
'0.12'
,
'threads'
=>
'1.77_03'
,
'threads::shared'
=>
'1.33_02'
,
'vars'
=>
'1.02'
,
'warnings'
=>
'1.10'
,
},
removed
=> {
'TAP::Parser::Source::Perl'
=> 1,
}
},
5.
013004
=> {
delta_from
=> 5.013003,
changed
=> {
'App::Prove'
=>
'3.22'
,
'App::Prove::State'
=>
'3.22'
,
'App::Prove::State::Result'
=>
'3.22'
,
'App::Prove::State::Result::Test'
=>
'3.22'
,
'Archive::Tar'
=>
'1.68'
,
'Archive::Tar::Constant'
=>
'1.68'
,
'Archive::Tar::File'
=>
'1.68'
,
'B::Lint'
=>
'1.12'
,
'B::Lint::Debug'
=>
'1.12'
,
'Carp'
=>
'1.18'
,
'Carp::Heavy'
=>
'1.18'
,
'Compress::Raw::Bzip2'
=>
'2.030'
,
'Compress::Raw::Zlib'
=>
'2.030'
,
'Compress::Zlib'
=>
'2.030'
,
'ExtUtils::ParseXS'
=>
'2.2207'
,
'File::Spec'
=>
'3.31_01'
,
'I18N::Langinfo'
=>
'0.04'
,
'IO::Compress::Adapter::Bzip2'
=>
'2.030'
,
'IO::Compress::Adapter::Deflate'
=>
'2.030'
,
'IO::Compress::Adapter::Identity'
=>
'2.030'
,
'IO::Compress::Base'
=>
'2.030'
,
'IO::Compress::Base::Common'
=>
'2.030'
,
'IO::Compress::Bzip2'
=>
'2.030'
,
'IO::Compress::Deflate'
=>
'2.030'
,
'IO::Compress::Gzip'
=>
'2.030'
,
'IO::Compress::Gzip::Constants'
=>
'2.030'
,
'IO::Compress::RawDeflate'
=>
'2.030'
,
'IO::Compress::Zip'
=>
'2.030'
,
'IO::Compress::Zip::Constants'
=>
'2.030'
,
'IO::Compress::Zlib::Constants'
=>
'2.030'
,
'IO::Compress::Zlib::Extra'
=>
'2.030'
,
'IO::Uncompress::Adapter::Bunzip2'
=>
'2.030'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.030'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.030'
,
'IO::Uncompress::AnyInflate'
=>
'2.030'
,
'IO::Uncompress::AnyUncompress'
=>
'2.030'
,
'IO::Uncompress::Base'
=>
'2.030'
,
'IO::Uncompress::Bunzip2'
=>
'2.030'
,
'IO::Uncompress::Gunzip'
=>
'2.030'
,
'IO::Uncompress::Inflate'
=>
'2.030'
,
'IO::Uncompress::RawInflate'
=>
'2.030'
,
'IO::Uncompress::Unzip'
=>
'2.030'
,
'Module::CoreList'
=>
'2.37'
,
'TAP::Base'
=>
'3.22'
,
'TAP::Formatter::Base'
=>
'3.22'
,
'TAP::Formatter::Color'
=>
'3.22'
,
'TAP::Formatter::Console'
=>
'3.22'
,
'TAP::Formatter::Console::ParallelSession'
=>
'3.22'
,
'TAP::Formatter::Console::Session'
=>
'3.22'
,
'TAP::Formatter::File'
=>
'3.22'
,
'TAP::Formatter::File::Session'
=>
'3.22'
,
'TAP::Formatter::Session'
=>
'3.22'
,
'TAP::Harness'
=>
'3.22'
,
'TAP::Object'
=>
'3.22'
,
'TAP::Parser'
=>
'3.22'
,
'TAP::Parser::Aggregator'
=>
'3.22'
,
'TAP::Parser::Grammar'
=>
'3.22'
,
'TAP::Parser::Iterator'
=>
'3.22'
,
'TAP::Parser::Iterator::Array'
=>
'3.22'
,
'TAP::Parser::Iterator::Process'
=>
'3.22'
,
'TAP::Parser::Iterator::Stream'
=>
'3.22'
,
'TAP::Parser::IteratorFactory'
=>
'3.22'
,
'TAP::Parser::Multiplexer'
=>
'3.22'
,
'TAP::Parser::Result'
=>
'3.22'
,
'TAP::Parser::Result::Bailout'
=>
'3.22'
,
'TAP::Parser::Result::Comment'
=>
'3.22'
,
'TAP::Parser::Result::Plan'
=>
'3.22'
,
'TAP::Parser::Result::Pragma'
=>
'3.22'
,
'TAP::Parser::Result::Test'
=>
'3.22'
,
'TAP::Parser::Result::Unknown'
=>
'3.22'
,
'TAP::Parser::Result::Version'
=>
'3.22'
,
'TAP::Parser::Result::YAML'
=>
'3.22'
,
'TAP::Parser::ResultFactory'
=>
'3.22'
,
'TAP::Parser::Scheduler'
=>
'3.22'
,
'TAP::Parser::Scheduler::Job'
=>
'3.22'
,
'TAP::Parser::Scheduler::Spinner'
=>
'3.22'
,
'TAP::Parser::Source'
=>
'3.22'
,
'TAP::Parser::SourceHandler'
=>
'3.22'
,
'TAP::Parser::SourceHandler::Executable'
=>
'3.22'
,
'TAP::Parser::SourceHandler::File'
=>
'3.22'
,
'TAP::Parser::SourceHandler::Handle'
=>
'3.22'
,
'TAP::Parser::SourceHandler::Perl'
=>
'3.22'
,
'TAP::Parser::SourceHandler::RawTAP'
=>
'3.22'
,
'TAP::Parser::Utils'
=>
'3.22'
,
'TAP::Parser::YAMLish::Reader'
=>
'3.22'
,
'TAP::Parser::YAMLish::Writer'
=>
'3.22'
,
'Test::Builder'
=>
'0.96'
,
'Test::Builder::Module'
=>
'0.96'
,
'Test::Builder::Tester'
=>
'1.20'
,
'Test::Builder::Tester::Color'
=>
'1.20'
,
'Test::Harness'
=>
'3.22'
,
'Test::More'
=>
'0.96'
,
'Test::Simple'
=>
'0.96'
,
'Unicode::Collate'
=>
'0.56'
,
'Unicode::Collate::Locale'
=>
'0.56'
,
'XS::APItest'
=>
'0.20'
,
'charnames'
=>
'1.15'
,
'feature'
=>
'1.18'
,
},
removed
=> {
'TAP::Parser::SourceHandler::pgTAP'
=> 1,
}
},
5.
013005
=> {
delta_from
=> 5.013004,
changed
=> {
'B::Debug'
=>
'1.16'
,
'CPANPLUS::Dist::Build'
=>
'0.48'
,
'CPANPLUS::Dist::Build::Constants'
=>
'0.48'
,
'Data::Dumper'
=>
'2.128'
,
'Encode'
=>
'2.40'
,
'Encode::Guess'
=>
'2.04'
,
'Encode::MIME::Header'
=>
'2.12'
,
'Encode::Unicode::UTF7'
=>
'2.05'
,
'Errno'
=>
'1.13'
,
'ExtUtils::Command::MM'
=>
'6.57_05'
,
'ExtUtils::Liblist'
=>
'6.57_05'
,
'ExtUtils::Liblist::Kid'
=>
'6.5705'
,
'ExtUtils::MM'
=>
'6.57_05'
,
'ExtUtils::MM_AIX'
=>
'6.57_05'
,
'ExtUtils::MM_Any'
=>
'6.57_05'
,
'ExtUtils::MM_BeOS'
=>
'6.57_05'
,
'ExtUtils::MM_Cygwin'
=>
'6.57_05'
,
'ExtUtils::MM_DOS'
=>
'6.5705'
,
'ExtUtils::MM_Darwin'
=>
'6.57_05'
,
'ExtUtils::MM_MacOS'
=>
'6.5705'
,
'ExtUtils::MM_NW5'
=>
'6.57_05'
,
'ExtUtils::MM_OS2'
=>
'6.57_05'
,
'ExtUtils::MM_QNX'
=>
'6.57_05'
,
'ExtUtils::MM_UWIN'
=>
'6.5705'
,
'ExtUtils::MM_Unix'
=>
'6.57_05'
,
'ExtUtils::MM_VMS'
=>
'6.57_05'
,
'ExtUtils::MM_VOS'
=>
'6.57_05'
,
'ExtUtils::MM_Win32'
=>
'6.57_05'
,
'ExtUtils::MM_Win95'
=>
'6.57_05'
,
'ExtUtils::MY'
=>
'6.5705'
,
'ExtUtils::MakeMaker'
=>
'6.57_05'
,
'ExtUtils::MakeMaker::Config'
=>
'6.57_05'
,
'ExtUtils::MakeMaker::YAML'
=>
'1.44'
,
'ExtUtils::Mkbootstrap'
=>
'6.57_05'
,
'ExtUtils::Mksymlists'
=>
'6.57_05'
,
'ExtUtils::testlib'
=>
'6.5705'
,
'Filter::Simple'
=>
'0.85'
,
'Hash::Util'
=>
'0.09'
,
'Math::BigFloat'
=>
'1.62'
,
'Math::BigInt'
=>
'1.95'
,
'Math::BigInt::Calc'
=>
'0.54'
,
'Math::BigInt::CalcEmu'
=>
'0.06'
,
'Math::BigInt::FastCalc'
=>
'0.22'
,
'Math::BigRat'
=>
'0.26'
,
'Module::CoreList'
=>
'2.39'
,
'POSIX'
=>
'1.20'
,
'PerlIO::scalar'
=>
'0.09'
,
'Safe'
=>
'2.28'
,
'Test::Builder'
=>
'0.97_01'
,
'Test::Builder::Module'
=>
'0.97_01'
,
'Test::Builder::Tester'
=>
'1.21_01'
,
'Test::Builder::Tester::Color'
=>
'1.21_01'
,
'Test::More'
=>
'0.97_01'
,
'Test::Simple'
=>
'0.97_01'
,
'Tie::Hash'
=>
'1.04'
,
'Unicode::Collate'
=>
'0.59'
,
'Unicode::Collate::Locale'
=>
'0.59'
,
'XS::APItest'
=>
'0.21'
,
'XS::APItest::KeywordRPN'
=>
'0.005'
,
'XSLoader'
=>
'0.11'
,
'bigint'
=>
'0.25'
,
'bignum'
=>
'0.25'
,
'bigrat'
=>
'0.25'
,
'blib'
=>
'1.06'
,
'open'
=>
'1.08'
,
'threads::shared'
=>
'1.33_03'
,
'warnings'
=>
'1.11'
,
'warnings::register'
=>
'1.02'
,
},
removed
=> {
}
},
5.
013006
=> {
delta_from
=> 5.013005,
changed
=> {
'Archive::Extract'
=>
'0.44'
,
'B'
=>
'1.24'
,
'B::Deparse'
=>
'0.99'
,
'CPAN'
=>
'1.94_61'
,
'CPAN::FTP'
=>
'5.5005'
,
'CPAN::Queue'
=>
'5.5001'
,
'CPAN::Version'
=>
'5.5001'
,
'Carp'
=>
'1.19'
,
'Carp::Heavy'
=>
'1.19'
,
'Compress::Raw::Bzip2'
=>
'2.031'
,
'Cwd'
=>
'3.34'
,
'Data::Dumper'
=>
'2.129'
,
'Devel::Peek'
=>
'1.05'
,
'Digest::MD5'
=>
'2.51'
,
'ExtUtils::Constant::Base'
=>
'0.05'
,
'ExtUtils::Constant::ProxySubs'
=>
'0.07'
,
'ExtUtils::Embed'
=>
'1.29'
,
'ExtUtils::XSSymSet'
=>
'1.2'
,
'Fcntl'
=>
'1.09'
,
'File::DosGlob'
=>
'1.03'
,
'File::Find'
=>
'1.18'
,
'File::Glob'
=>
'1.09'
,
'File::Spec'
=>
'3.33'
,
'File::Spec::Cygwin'
=>
'3.33'
,
'File::Spec::Epoc'
=>
'3.33'
,
'File::Spec::Functions'
=>
'3.33'
,
'File::Spec::Mac'
=>
'3.33'
,
'File::Spec::OS2'
=>
'3.33'
,
'File::Spec::Unix'
=>
'3.33'
,
'File::Spec::VMS'
=>
'3.33'
,
'File::Spec::Win32'
=>
'3.33'
,
'GDBM_File'
=>
'1.11'
,
'Hash::Util::FieldHash'
=>
'1.05'
,
'I18N::Langinfo'
=>
'0.06'
,
'IPC::Cmd'
=>
'0.64'
,
'IPC::Open3'
=>
'1.07'
,
'Locale::Codes'
=>
'3.14'
,
'Locale::Codes::Country'
=>
'3.14'
,
'Locale::Codes::Currency'
=>
'3.14'
,
'Locale::Codes::Language'
=>
'3.14'
,
'Locale::Codes::Script'
=>
'3.14'
,
'Locale::Constants'
=>
'3.14'
,
'Locale::Country'
=>
'3.14'
,
'Locale::Currency'
=>
'3.14'
,
'Locale::Language'
=>
'3.14'
,
'Locale::Maketext'
=>
'1.16'
,
'Locale::Script'
=>
'3.14'
,
'Math::BigFloat'
=>
'1.63'
,
'Math::BigInt'
=>
'1.97'
,
'Math::BigInt::Calc'
=>
'0.55'
,
'Math::BigInt::CalcEmu'
=>
'0.07'
,
'Module::CoreList'
=>
'2.40'
,
'NDBM_File'
=>
'1.09'
,
'NEXT'
=>
'0.65'
,
'ODBM_File'
=>
'1.08'
,
'Opcode'
=>
'1.16'
,
'POSIX'
=>
'1.21'
,
'PerlIO::encoding'
=>
'0.13'
,
'PerlIO::scalar'
=>
'0.10'
,
'PerlIO::via'
=>
'0.10'
,
'Pod::Man'
=>
'2.25'
,
'Pod::Text'
=>
'3.15'
,
'SDBM_File'
=>
'1.07'
,
'Socket'
=>
'1.90'
,
'Sys::Hostname'
=>
'1.13'
,
'Tie::Hash::NamedCapture'
=>
'0.07'
,
'Unicode::Collate'
=>
'0.63'
,
'Unicode::Collate::Locale'
=>
'0.63'
,
'Unicode::Normalize'
=>
'1.07'
,
'XS::APItest'
=>
'0.23'
,
'XSLoader'
=>
'0.13'
,
'attributes'
=>
'0.13'
,
'charnames'
=>
'1.16'
,
'if'
=>
'0.06'
,
'mro'
=>
'1.04'
,
'overload'
=>
'1.11'
,
're'
=>
'0.13'
,
'sigtrap'
=>
'1.05'
,
'threads'
=>
'1.81_01'
,
'threads::shared'
=>
'1.34'
,
},
removed
=> {
'XS::APItest::KeywordRPN'
=> 1,
}
},
5.
013007
=> {
delta_from
=> 5.013006,
changed
=> {
'Archive::Extract'
=>
'0.46'
,
'Archive::Tar'
=>
'1.72'
,
'Archive::Tar::Constant'
=>
'1.72'
,
'Archive::Tar::File'
=>
'1.72'
,
'AutoLoader'
=>
'5.71'
,
'B'
=>
'1.26'
,
'B::Concise'
=>
'0.81'
,
'B::Deparse'
=>
'1.01'
,
'CGI'
=>
'3.50'
,
'CPAN'
=>
'1.94_62'
,
'CPANPLUS'
=>
'0.9010'
,
'CPANPLUS::Dist::Build'
=>
'0.50'
,
'CPANPLUS::Dist::Build::Constants'
=>
'0.50'
,
'CPANPLUS::Internals'
=>
'0.9010'
,
'CPANPLUS::Shell::Default'
=>
'0.9010'
,
'Data::Dumper'
=>
'2.130_01'
,
'DynaLoader'
=>
'1.11'
,
'ExtUtils::Constant'
=>
'0.23'
,
'ExtUtils::Constant::ProxySubs'
=>
'0.08'
,
'Fcntl'
=>
'1.10'
,
'File::Fetch'
=>
'0.28'
,
'File::Glob'
=>
'1.10'
,
'File::stat'
=>
'1.04'
,
'GDBM_File'
=>
'1.12'
,
'Hash::Util'
=>
'0.10'
,
'Hash::Util::FieldHash'
=>
'1.06'
,
'I18N::Langinfo'
=>
'0.07'
,
'Locale::Maketext'
=>
'1.17'
,
'Locale::Maketext::Guts'
=>
'1.17'
,
'Locale::Maketext::GutsLoader'
=>
'1.17'
,
'MIME::Base64'
=>
'3.10'
,
'MIME::QuotedPrint'
=>
'3.10'
,
'Math::BigFloat'
=>
'1.99_01'
,
'Math::BigInt'
=>
'1.99_01'
,
'Math::BigInt::Calc'
=>
'1.99_01'
,
'Math::BigInt::CalcEmu'
=>
'1.99_01'
,
'Math::BigInt::FastCalc'
=>
'0.24_01'
,
'Math::BigRat'
=>
'0.26_01'
,
'Module::CoreList'
=>
'2.41'
,
'NDBM_File'
=>
'1.10'
,
'ODBM_File'
=>
'1.09'
,
'Opcode'
=>
'1.17'
,
'POSIX'
=>
'1.22'
,
'Pod::Simple'
=>
'3.15'
,
'Pod::Simple::BlackBox'
=>
'3.15'
,
'Pod::Simple::Checker'
=>
'3.15'
,
'Pod::Simple::Debug'
=>
'3.15'
,
'Pod::Simple::DumpAsText'
=>
'3.15'
,
'Pod::Simple::DumpAsXML'
=>
'3.15'
,
'Pod::Simple::HTML'
=>
'3.15'
,
'Pod::Simple::HTMLBatch'
=>
'3.15'
,
'Pod::Simple::LinkSection'
=>
'3.15'
,
'Pod::Simple::Methody'
=>
'3.15'
,
'Pod::Simple::Progress'
=>
'3.15'
,
'Pod::Simple::PullParser'
=>
'3.15'
,
'Pod::Simple::PullParserEndToken'
=>
'3.15'
,
'Pod::Simple::PullParserStartToken'
=>
'3.15'
,
'Pod::Simple::PullParserTextToken'
=>
'3.15'
,
'Pod::Simple::PullParserToken'
=>
'3.15'
,
'Pod::Simple::RTF'
=>
'3.15'
,
'Pod::Simple::Search'
=>
'3.15'
,
'Pod::Simple::SimpleTree'
=>
'3.15'
,
'Pod::Simple::Text'
=>
'3.15'
,
'Pod::Simple::TextContent'
=>
'3.15'
,
'Pod::Simple::TiedOutFH'
=>
'3.15'
,
'Pod::Simple::Transcode'
=>
'3.15'
,
'Pod::Simple::TranscodeDumb'
=>
'3.15'
,
'Pod::Simple::TranscodeSmart'
=>
'3.15'
,
'Pod::Simple::XHTML'
=>
'3.15'
,
'Pod::Simple::XMLOutStream'
=>
'3.15'
,
'SDBM_File'
=>
'1.08'
,
'Safe'
=>
'2.29'
,
'SelfLoader'
=>
'1.18'
,
'Socket'
=>
'1.91'
,
'Storable'
=>
'2.24'
,
'Sys::Hostname'
=>
'1.14'
,
'Unicode'
=>
'6.0.0'
,
'Unicode::Collate'
=>
'0.67'
,
'Unicode::Collate::CJK::Big5'
=>
'0.65'
,
'Unicode::Collate::CJK::GB2312'
=>
'0.65'
,
'Unicode::Collate::CJK::JISX0208'
=>
'0.64'
,
'Unicode::Collate::CJK::Korean'
=>
'0.66'
,
'Unicode::Collate::CJK::Pinyin'
=>
'0.65'
,
'Unicode::Collate::CJK::Stroke'
=>
'0.65'
,
'Unicode::Collate::Locale'
=>
'0.67'
,
'XS::APItest'
=>
'0.26'
,
'XS::Typemap'
=>
'0.04'
,
'charnames'
=>
'1.17'
,
'mro'
=>
'1.05'
,
'parent'
=>
'0.224'
,
're'
=>
'0.14'
,
'threads'
=>
'1.81_02'
,
},
removed
=> {
}
},
5.
013008
=> {
delta_from
=> 5.013007,
changed
=> {
'Archive::Tar'
=>
'1.74'
,
'Archive::Tar::Constant'
=>
'1.74'
,
'Archive::Tar::File'
=>
'1.74'
,
'B'
=>
'1.27'
,
'B::Concise'
=>
'0.82'
,
'B::Deparse'
=>
'1.02'
,
'Carp::Heavy'
=>
'1.17'
,
'Cwd'
=>
'3.35'
,
'Data::Dumper'
=>
'2.130_02'
,
'Devel::Peek'
=>
'1.06'
,
'Devel::SelfStubber'
=>
'1.05'
,
'Digest::SHA'
=>
'5.50'
,
'Dumpvalue'
=>
'1.15'
,
'DynaLoader'
=>
'1.12'
,
'Env'
=>
'1.02'
,
'Exporter::Heavy'
=>
'5.64_01'
,
'ExtUtils::CBuilder'
=>
'0.280201'
,
'ExtUtils::CBuilder::Base'
=>
'0.280201'
,
'ExtUtils::CBuilder::Platform::Unix'
=>
'0.280201'
,
'ExtUtils::CBuilder::Platform::VMS'
=>
'0.280201'
,
'ExtUtils::CBuilder::Platform::Windows'
=>
'0.280201'
,
'ExtUtils::CBuilder::Platform::Windows::BCC'
=>
'0.280201'
,
'ExtUtils::CBuilder::Platform::Windows::GCC'
=>
'0.280201'
,
'ExtUtils::CBuilder::Platform::Windows::MSVC'
=>
'0.280201'
,
'ExtUtils::CBuilder::Platform::aix'
=>
'0.280201'
,
'ExtUtils::CBuilder::Platform::cygwin'
=>
'0.280201'
,
'ExtUtils::CBuilder::Platform::darwin'
=>
'0.280201'
,
'ExtUtils::CBuilder::Platform::dec_osf'
=>
'0.280201'
,
'ExtUtils::CBuilder::Platform::os2'
=>
'0.280201'
,
'ExtUtils::Constant::Utils'
=>
'0.03'
,
'ExtUtils::Embed'
=>
'1.30'
,
'ExtUtils::ParseXS'
=>
'2.2208'
,
'Fatal'
=>
'2.1001'
,
'Fcntl'
=>
'1.11'
,
'File::CheckTree'
=>
'4.41'
,
'File::Glob'
=>
'1.11'
,
'GDBM_File'
=>
'1.13'
,
'Hash::Util::FieldHash'
=>
'1.07'
,
'I18N::Collate'
=>
'1.02'
,
'IO'
=>
'1.25_03'
,
'IPC::Cmd'
=>
'0.66'
,
'IPC::Open3'
=>
'1.08'
,
'Locale::Codes'
=>
'3.15'
,
'Locale::Codes::Country'
=>
'3.15'
,
'Locale::Codes::Currency'
=>
'3.15'
,
'Locale::Codes::Language'
=>
'3.15'
,
'Locale::Codes::Script'
=>
'3.15'
,
'Locale::Constants'
=>
'3.15'
,
'Locale::Country'
=>
'3.15'
,
'Locale::Currency'
=>
'3.15'
,
'Locale::Language'
=>
'3.15'
,
'Locale::Script'
=>
'3.15'
,
'MIME::Base64'
=>
'3.13'
,
'MIME::QuotedPrint'
=>
'3.13'
,
'Math::BigFloat'
=>
'1.99_02'
,
'Math::BigInt'
=>
'1.99_02'
,
'Math::BigInt::Calc'
=>
'1.99_02'
,
'Math::BigInt::CalcEmu'
=>
'1.99_02'
,
'Memoize'
=>
'1.02'
,
'Memoize::AnyDBM_File'
=>
'1.02'
,
'Memoize::Expire'
=>
'1.02'
,
'Memoize::ExpireFile'
=>
'1.02'
,
'Memoize::ExpireTest'
=>
'1.02'
,
'Memoize::NDBM_File'
=>
'1.02'
,
'Memoize::SDBM_File'
=>
'1.02'
,
'Memoize::Storable'
=>
'1.02'
,
'Module::CoreList'
=>
'2.43'
,
'NDBM_File'
=>
'1.11'
,
'Net::Ping'
=>
'2.37'
,
'ODBM_File'
=>
'1.10'
,
'Opcode'
=>
'1.18'
,
'POSIX'
=>
'1.23'
,
'PerlIO::encoding'
=>
'0.14'
,
'PerlIO::scalar'
=>
'0.11'
,
'PerlIO::via'
=>
'0.11'
,
'SDBM_File'
=>
'1.09'
,
'Socket'
=>
'1.92'
,
'Storable'
=>
'2.25'
,
'Time::HiRes'
=>
'1.9721_01'
,
'Unicode::Collate'
=>
'0.6801'
,
'Unicode::Collate::Locale'
=>
'0.68'
,
'Unicode::Normalize'
=>
'1.08'
,
'Unicode::UCD'
=>
'0.30'
,
'Win32'
=>
'0.41'
,
'XS::APItest'
=>
'0.27'
,
'autodie'
=>
'2.1001'
,
'autodie::exception'
=>
'2.1001'
,
'autodie::exception::system'
=>
'2.1001'
,
'autodie::hints'
=>
'2.1001'
,
'feature'
=>
'1.19'
,
'if'
=>
'0.0601'
,
'mro'
=>
'1.06'
,
'overload'
=>
'1.12'
,
're'
=>
'0.15'
,
'threads'
=>
'1.81_03'
,
'threads::shared'
=>
'1.35'
,
'version'
=>
'0.86'
,
},
removed
=> {
}
},
5.
013009
=> {
delta_from
=> 5.013008,
changed
=> {
'Archive::Extract'
=>
'0.48'
,
'Archive::Tar'
=>
'1.76'
,
'Archive::Tar::Constant'
=>
'1.76'
,
'Archive::Tar::File'
=>
'1.76'
,
'B::Concise'
=>
'0.83'
,
'B::Deparse'
=>
'1.03'
,
'B::Lint'
=>
'1.13'
,
'Benchmark'
=>
'1.12'
,
'CGI'
=>
'3.51'
,
'CGI::Carp'
=>
'3.51'
,
'CGI::Cookie'
=>
'1.30'
,
'CGI::Push'
=>
'1.05'
,
'CGI::Util'
=>
'3.51'
,
'CPAN'
=>
'1.94_63'
,
'CPAN::HTTP::Client'
=>
'1.94'
,
'CPAN::HTTP::Credentials'
=>
'1.94'
,
'CPAN::Meta::YAML'
=>
'0.003'
,
'CPANPLUS'
=>
'0.9011'
,
'CPANPLUS::Dist::Build'
=>
'0.52'
,
'CPANPLUS::Dist::Build::Constants'
=>
'0.52'
,
'CPANPLUS::Internals'
=>
'0.9011'
,
'CPANPLUS::Shell::Default'
=>
'0.9011'
,
'Carp::Heavy'
=>
'1.19'
,
'Compress::Raw::Bzip2'
=>
'2.033'
,
'Compress::Raw::Zlib'
=>
'2.033'
,
'Compress::Zlib'
=>
'2.033'
,
'Cwd'
=>
'3.36'
,
'DBM_Filter'
=>
'0.04'
,
'DB_File'
=>
'1.821'
,
'Devel::Peek'
=>
'1.07'
,
'DirHandle'
=>
'1.04'
,
'Dumpvalue'
=>
'1.16'
,
'Encode'
=>
'2.42'
,
'Encode::Alias'
=>
'2.13'
,
'Encode::MIME::Header'
=>
'2.13'
,
'Exporter::Heavy'
=>
'5.64_03'
,
'ExtUtils::Install'
=>
'1.56'
,
'ExtUtils::ParseXS'
=>
'2.2209'
,
'File::Basename'
=>
'2.80'
,
'File::Copy'
=>
'2.21'
,
'File::DosGlob'
=>
'1.04'
,
'File::Fetch'
=>
'0.32'
,
'File::Find'
=>
'1.19'
,
'File::Spec::Mac'
=>
'3.34'
,
'File::Spec::VMS'
=>
'3.34'
,
'File::stat'
=>
'1.05'
,
'HTTP::Tiny'
=>
'0.009'
,
'Hash::Util::FieldHash'
=>
'1.08'
,
'IO::Compress::Adapter::Bzip2'
=>
'2.033'
,
'IO::Compress::Adapter::Deflate'
=>
'2.033'
,
'IO::Compress::Adapter::Identity'
=>
'2.033'
,
'IO::Compress::Base'
=>
'2.033'
,
'IO::Compress::Base::Common'
=>
'2.033'
,
'IO::Compress::Bzip2'
=>
'2.033'
,
'IO::Compress::Deflate'
=>
'2.033'
,
'IO::Compress::Gzip'
=>
'2.033'
,
'IO::Compress::Gzip::Constants'
=>
'2.033'
,
'IO::Compress::RawDeflate'
=>
'2.033'
,
'IO::Compress::Zip'
=>
'2.033'
,
'IO::Compress::Zip::Constants'
=>
'2.033'
,
'IO::Compress::Zlib::Constants'
=>
'2.033'
,
'IO::Compress::Zlib::Extra'
=>
'2.033'
,
'IO::Handle'
=>
'1.29'
,
'IO::Uncompress::Adapter::Bunzip2'
=>
'2.033'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.033'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.033'
,
'IO::Uncompress::AnyInflate'
=>
'2.033'
,
'IO::Uncompress::AnyUncompress'
=>
'2.033'
,
'IO::Uncompress::Base'
=>
'2.033'
,
'IO::Uncompress::Bunzip2'
=>
'2.033'
,
'IO::Uncompress::Gunzip'
=>
'2.033'
,
'IO::Uncompress::Inflate'
=>
'2.033'
,
'IO::Uncompress::RawInflate'
=>
'2.033'
,
'IO::Uncompress::Unzip'
=>
'2.033'
,
'IPC::Cmd'
=>
'0.68'
,
'IPC::Open3'
=>
'1.09'
,
'JSON::PP'
=>
'2.27103'
,
'JSON::PP::Boolean'
=>
undef
,
'Locale::Maketext'
=>
'1.18'
,
'Log::Message'
=>
'0.04'
,
'Log::Message::Config'
=>
'0.04'
,
'Log::Message::Handlers'
=>
'0.04'
,
'Log::Message::Item'
=>
'0.04'
,
'Log::Message::Simple'
=>
'0.08'
,
'Math::BigFloat'
=>
'1.99_03'
,
'Math::BigInt'
=>
'1.99_03'
,
'Math::BigInt::Calc'
=>
'1.99_03'
,
'Math::BigInt::FastCalc'
=>
'0.24_02'
,
'Math::BigRat'
=>
'0.26_02'
,
'Module::CoreList'
=>
'2.42_01'
,
'Module::Load::Conditional'
=>
'0.40'
,
'Module::Metadata'
=>
'1.000003'
,
'Net::Ping'
=>
'2.38'
,
'Object::Accessor'
=>
'0.38'
,
'POSIX'
=>
'1.24'
,
'Params::Check'
=>
'0.28'
,
'Perl::OSType'
=>
'1.002'
,
'Pod::LaTeX'
=>
'0.59'
,
'Pod::Perldoc'
=>
'3.15_03'
,
'Socket'
=>
'1.93'
,
'Storable'
=>
'2.26'
,
'Sys::Hostname'
=>
'1.15'
,
'Term::UI'
=>
'0.24'
,
'Thread::Queue'
=>
'2.12'
,
'Thread::Semaphore'
=>
'2.12'
,
'Time::Local'
=>
'1.2000'
,
'UNIVERSAL'
=>
'1.08'
,
'Unicode::Normalize'
=>
'1.10'
,
'Win32'
=>
'0.44'
,
'bigint'
=>
'0.26'
,
'bignum'
=>
'0.26'
,
'bigrat'
=>
'0.26'
,
'charnames'
=>
'1.18'
,
'diagnostics'
=>
'1.21'
,
're'
=>
'0.16'
,
'threads'
=>
'1.83'
,
'threads::shared'
=>
'1.36'
,
'version'
=>
'0.88'
,
},
removed
=> {
}
},
5.
01301
=> {
delta_from
=> 5.013009,
changed
=> {
'Attribute::Handlers'
=>
'0.89'
,
'B'
=>
'1.28'
,
'B::Showlex'
=>
'1.03'
,
'CGI'
=>
'3.52'
,
'CPAN'
=>
'1.94_65'
,
'CPAN::Distribution'
=>
'1.9601'
,
'CPAN::FTP::netrc'
=>
'1.01'
,
'CPAN::FirstTime'
=>
'5.5303'
,
'CPAN::HandleConfig'
=>
'5.5003'
,
'CPAN::Meta'
=>
'2.110440'
,
'CPAN::Meta::Converter'
=>
'2.110440'
,
'CPAN::Meta::Feature'
=>
'2.110440'
,
'CPAN::Meta::History'
=>
'2.110440'
,
'CPAN::Meta::Prereqs'
=>
'2.110440'
,
'CPAN::Meta::Spec'
=>
'2.110440'
,
'CPAN::Meta::Validator'
=>
'2.110440'
,
'CPAN::Shell'
=>
'5.5002'
,
'CPANPLUS'
=>
'0.9101'
,
'CPANPLUS::Internals'
=>
'0.9101'
,
'CPANPLUS::Shell::Default'
=>
'0.9101'
,
'Carp'
=>
'1.20'
,
'Carp::Heavy'
=>
'1.20'
,
'Cwd'
=>
'3.37'
,
'Devel::DProf'
=>
'20110217.00'
,
'DynaLoader'
=>
'1.13'
,
'ExtUtils::CBuilder'
=>
'0.280202'
,
'ExtUtils::CBuilder::Base'
=>
'0.280202'
,
'ExtUtils::CBuilder::Platform::Unix'
=>
'0.280202'
,
'ExtUtils::CBuilder::Platform::VMS'
=>
'0.280202'
,
'ExtUtils::CBuilder::Platform::Windows'
=>
'0.280202'
,
'ExtUtils::CBuilder::Platform::Windows::BCC'
=>
'0.280202'
,
'ExtUtils::CBuilder::Platform::Windows::GCC'
=>
'0.280202'
,
'ExtUtils::CBuilder::Platform::Windows::MSVC'
=>
'0.280202'
,
'ExtUtils::CBuilder::Platform::aix'
=>
'0.280202'
,
'ExtUtils::CBuilder::Platform::cygwin'
=>
'0.280202'
,
'ExtUtils::CBuilder::Platform::darwin'
=>
'0.280202'
,
'ExtUtils::CBuilder::Platform::dec_osf'
=>
'0.280202'
,
'ExtUtils::CBuilder::Platform::os2'
=>
'0.280202'
,
'File::Copy'
=>
'2.22'
,
'Filter::Simple'
=>
'0.86'
,
'HTTP::Tiny'
=>
'0.010'
,
'I18N::LangTags::Detect'
=>
'1.05'
,
'IO::Select'
=>
'1.18'
,
'IPC::Cmd'
=>
'0.70'
,
'Locale::Maketext'
=>
'1.19'
,
'Math::BigFloat'
=>
'1.992'
,
'Math::BigInt'
=>
'1.992'
,
'Math::BigInt::Calc'
=>
'1.992'
,
'Math::BigInt::CalcEmu'
=>
'1.992'
,
'Module::Build'
=>
'0.37_05'
,
'Module::Build::Base'
=>
'0.37_05'
,
'Module::Build::Compat'
=>
'0.37_05'
,
'Module::Build::Config'
=>
'0.37_05'
,
'Module::Build::Cookbook'
=>
'0.37_05'
,
'Module::Build::Dumper'
=>
'0.37_05'
,
'Module::Build::ModuleInfo'
=>
'0.37_05'
,
'Module::Build::Notes'
=>
'0.37_05'
,
'Module::Build::PPMMaker'
=>
'0.37_05'
,
'Module::Build::Platform::Amiga'
=>
'0.37_05'
,
'Module::Build::Platform::Default'
=>
'0.37_05'
,
'Module::Build::Platform::EBCDIC'
=>
'0.37_05'
,
'Module::Build::Platform::MPEiX'
=>
'0.37_05'
,
'Module::Build::Platform::MacOS'
=>
'0.37_05'
,
'Module::Build::Platform::RiscOS'
=>
'0.37_05'
,
'Module::Build::Platform::Unix'
=>
'0.37_05'
,
'Module::Build::Platform::VMS'
=>
'0.37_05'
,
'Module::Build::Platform::VOS'
=>
'0.37_05'
,
'Module::Build::Platform::Windows'
=>
'0.37_05'
,
'Module::Build::Platform::aix'
=>
'0.37_05'
,
'Module::Build::Platform::cygwin'
=>
'0.37_05'
,
'Module::Build::Platform::darwin'
=>
'0.37_05'
,
'Module::Build::Platform::os2'
=>
'0.37_05'
,
'Module::Build::PodParser'
=>
'0.37_05'
,
'Module::Build::Version'
=>
'0.87'
,
'Module::Build::YAML'
=>
'1.41'
,
'Module::CoreList'
=>
'2.45'
,
'Module::Load::Conditional'
=>
'0.44'
,
'Module::Metadata'
=>
'1.000004'
,
'Parse::CPAN::Meta'
=>
'1.4401'
,
'Pod::Html'
=>
'1.1'
,
'Socket'
=>
'1.94'
,
'Term::UI'
=>
'0.26'
,
'Unicode::Collate'
=>
'0.72'
,
'Unicode::Collate::Locale'
=>
'0.71'
,
'Unicode::UCD'
=>
'0.31'
,
'VMS::DCLsym'
=>
'1.05'
,
'Version::Requirements'
=>
'0.101020'
,
'bigrat'
=>
'0.27'
,
'deprecate'
=>
'0.02'
,
'diagnostics'
=>
'1.22'
,
'inc::latest'
=>
'0.37_05'
,
'overload'
=>
'1.13'
,
're'
=>
'0.17'
,
'utf8'
=>
'1.09'
,
'warnings'
=>
'1.12'
,
},
removed
=> {
}
},
5.
013011
=> {
delta_from
=> 5.01301,
changed
=> {
'App::Prove'
=>
'3.23'
,
'App::Prove::State'
=>
'3.23'
,
'App::Prove::State::Result'
=>
'3.23'
,
'App::Prove::State::Result::Test'
=>
'3.23'
,
'B'
=>
'1.29'
,
'CPAN'
=>
'1.9600'
,
'CPAN::Author'
=>
'5.5001'
,
'CPAN::CacheMgr'
=>
'5.5001'
,
'CPAN::Distribution'
=>
'1.9602'
,
'CPAN::Exception::blocked_urllist'
=>
'1.001'
,
'CPAN::HTTP::Client'
=>
'1.9600'
,
'CPAN::HTTP::Credentials'
=>
'1.9600'
,
'CPAN::Index'
=>
'1.9600'
,
'CPAN::LWP::UserAgent'
=>
'1.9600'
,
'CPAN::Mirrors'
=>
'1.9600'
,
'CPAN::Module'
=>
'5.5001'
,
'CPANPLUS'
=>
'0.9103'
,
'CPANPLUS::Dist::Build'
=>
'0.54'
,
'CPANPLUS::Dist::Build::Constants'
=>
'0.54'
,
'CPANPLUS::Internals'
=>
'0.9103'
,
'CPANPLUS::Shell::Default'
=>
'0.9103'
,
'Cwd'
=>
'3.36'
,
'Devel::DProf'
=>
'20110228.00'
,
'Digest::SHA'
=>
'5.61'
,
'ExtUtils::Command'
=>
'1.17'
,
'File::Basename'
=>
'2.81'
,
'File::Copy'
=>
'2.21'
,
'File::Glob'
=>
'1.12'
,
'GDBM_File'
=>
'1.14'
,
'HTTP::Tiny'
=>
'0.011'
,
'Hash::Util'
=>
'0.11'
,
'Hash::Util::FieldHash'
=>
'1.09'
,
'I18N::Langinfo'
=>
'0.08'
,
'IO'
=>
'1.25_04'
,
'IO::Dir'
=>
'1.08'
,
'IO::File'
=>
'1.15'
,
'IO::Handle'
=>
'1.30'
,
'IO::Pipe'
=>
'1.14'
,
'IO::Poll'
=>
'0.08'
,
'IO::Select'
=>
'1.20'
,
'JSON::PP'
=>
'2.27105'
,
'Locale::Codes'
=>
'3.16'
,
'Locale::Codes::Country'
=>
'3.16'
,
'Locale::Codes::Currency'
=>
'3.16'
,
'Locale::Codes::Language'
=>
'3.16'
,
'Locale::Codes::Script'
=>
'3.16'
,
'Locale::Constants'
=>
'3.16'
,
'Locale::Country'
=>
'3.16'
,
'Locale::Currency'
=>
'3.16'
,
'Locale::Language'
=>
'3.16'
,
'Locale::Script'
=>
'3.16'
,
'Math::BigFloat'
=>
'1.993'
,
'Math::BigInt'
=>
'1.994'
,
'Math::BigInt::Calc'
=>
'1.993'
,
'Math::BigInt::CalcEmu'
=>
'1.993'
,
'Math::BigInt::FastCalc'
=>
'0.28'
,
'Module::Build'
=>
'0.3800'
,
'Module::Build::Base'
=>
'0.3800'
,
'Module::Build::Compat'
=>
'0.3800'
,
'Module::Build::Config'
=>
'0.3800'
,
'Module::Build::Cookbook'
=>
'0.3800'
,
'Module::Build::Dumper'
=>
'0.3800'
,
'Module::Build::ModuleInfo'
=>
'0.3800'
,
'Module::Build::Notes'
=>
'0.3800'
,
'Module::Build::PPMMaker'
=>
'0.3800'
,
'Module::Build::Platform::Amiga'
=>
'0.3800'
,
'Module::Build::Platform::Default'
=>
'0.3800'
,
'Module::Build::Platform::EBCDIC'
=>
'0.3800'
,
'Module::Build::Platform::MPEiX'
=>
'0.3800'
,
'Module::Build::Platform::MacOS'
=>
'0.3800'
,
'Module::Build::Platform::RiscOS'
=>
'0.3800'
,
'Module::Build::Platform::Unix'
=>
'0.3800'
,
'Module::Build::Platform::VMS'
=>
'0.3800'
,
'Module::Build::Platform::VOS'
=>
'0.3800'
,
'Module::Build::Platform::Windows'
=>
'0.3800'
,
'Module::Build::Platform::aix'
=>
'0.3800'
,
'Module::Build::Platform::cygwin'
=>
'0.3800'
,
'Module::Build::Platform::darwin'
=>
'0.3800'
,
'Module::Build::Platform::os2'
=>
'0.3800'
,
'Module::Build::PodParser'
=>
'0.3800'
,
'Module::CoreList'
=>
'2.46'
,
'NDBM_File'
=>
'1.12'
,
'Pod::Simple'
=>
'3.16'
,
'Pod::Simple::BlackBox'
=>
'3.16'
,
'Pod::Simple::Checker'
=>
'3.16'
,
'Pod::Simple::Debug'
=>
'3.16'
,
'Pod::Simple::DumpAsText'
=>
'3.16'
,
'Pod::Simple::DumpAsXML'
=>
'3.16'
,
'Pod::Simple::HTML'
=>
'3.16'
,
'Pod::Simple::HTMLBatch'
=>
'3.16'
,
'Pod::Simple::LinkSection'
=>
'3.16'
,
'Pod::Simple::Methody'
=>
'3.16'
,
'Pod::Simple::Progress'
=>
'3.16'
,
'Pod::Simple::PullParser'
=>
'3.16'
,
'Pod::Simple::PullParserEndToken'
=>
'3.16'
,
'Pod::Simple::PullParserStartToken'
=>
'3.16'
,
'Pod::Simple::PullParserTextToken'
=>
'3.16'
,
'Pod::Simple::PullParserToken'
=>
'3.16'
,
'Pod::Simple::RTF'
=>
'3.16'
,
'Pod::Simple::Search'
=>
'3.16'
,
'Pod::Simple::SimpleTree'
=>
'3.16'
,
'Pod::Simple::Text'
=>
'3.16'
,
'Pod::Simple::TextContent'
=>
'3.16'
,
'Pod::Simple::TiedOutFH'
=>
'3.16'
,
'Pod::Simple::Transcode'
=>
'3.16'
,
'Pod::Simple::TranscodeDumb'
=>
'3.16'
,
'Pod::Simple::TranscodeSmart'
=>
'3.16'
,
'Pod::Simple::XHTML'
=>
'3.16'
,
'Pod::Simple::XMLOutStream'
=>
'3.16'
,
'Storable'
=>
'2.27'
,
'Sys::Hostname'
=>
'1.16'
,
'TAP::Base'
=>
'3.23'
,
'TAP::Formatter::Base'
=>
'3.23'
,
'TAP::Formatter::Color'
=>
'3.23'
,
'TAP::Formatter::Console'
=>
'3.23'
,
'TAP::Formatter::Console::ParallelSession'
=>
'3.23'
,
'TAP::Formatter::Console::Session'
=>
'3.23'
,
'TAP::Formatter::File'
=>
'3.23'
,
'TAP::Formatter::File::Session'
=>
'3.23'
,
'TAP::Formatter::Session'
=>
'3.23'
,
'TAP::Harness'
=>
'3.23'
,
'TAP::Object'
=>
'3.23'
,
'TAP::Parser'
=>
'3.23'
,
'TAP::Parser::Aggregator'
=>
'3.23'
,
'TAP::Parser::Grammar'
=>
'3.23'
,
'TAP::Parser::Iterator'
=>
'3.23'
,
'TAP::Parser::Iterator::Array'
=>
'3.23'
,
'TAP::Parser::Iterator::Process'
=>
'3.23'
,
'TAP::Parser::Iterator::Stream'
=>
'3.23'
,
'TAP::Parser::IteratorFactory'
=>
'3.23'
,
'TAP::Parser::Multiplexer'
=>
'3.23'
,
'TAP::Parser::Result'
=>
'3.23'
,
'TAP::Parser::Result::Bailout'
=>
'3.23'
,
'TAP::Parser::Result::Comment'
=>
'3.23'
,
'TAP::Parser::Result::Plan'
=>
'3.23'
,
'TAP::Parser::Result::Pragma'
=>
'3.23'
,
'TAP::Parser::Result::Test'
=>
'3.23'
,
'TAP::Parser::Result::Unknown'
=>
'3.23'
,
'TAP::Parser::Result::Version'
=>
'3.23'
,
'TAP::Parser::Result::YAML'
=>
'3.23'
,
'TAP::Parser::ResultFactory'
=>
'3.23'
,
'TAP::Parser::Scheduler'
=>
'3.23'
,
'TAP::Parser::Scheduler::Job'
=>
'3.23'
,
'TAP::Parser::Scheduler::Spinner'
=>
'3.23'
,
'TAP::Parser::Source'
=>
'3.23'
,
'TAP::Parser::SourceHandler'
=>
'3.23'
,
'TAP::Parser::SourceHandler::Executable'
=>
'3.23'
,
'TAP::Parser::SourceHandler::File'
=>
'3.23'
,
'TAP::Parser::SourceHandler::Handle'
=>
'3.23'
,
'TAP::Parser::SourceHandler::Perl'
=>
'3.23'
,
'TAP::Parser::SourceHandler::RawTAP'
=>
'3.23'
,
'TAP::Parser::Utils'
=>
'3.23'
,
'TAP::Parser::YAMLish::Reader'
=>
'3.23'
,
'TAP::Parser::YAMLish::Writer'
=>
'3.23'
,
'Test::Builder'
=>
'0.98'
,
'Test::Builder::Module'
=>
'0.98'
,
'Test::Builder::Tester'
=>
'1.22'
,
'Test::Builder::Tester::Color'
=>
'1.22'
,
'Test::Harness'
=>
'3.23'
,
'Test::More'
=>
'0.98'
,
'Test::Simple'
=>
'0.98'
,
'Tie::Hash::NamedCapture'
=>
'0.08'
,
'Tie::RefHash'
=>
'1.39'
,
'Unicode::Collate'
=>
'0.73'
,
'Unicode::Collate::Locale'
=>
'0.73'
,
'Unicode::UCD'
=>
'0.32'
,
'XS::Typemap'
=>
'0.05'
,
'attributes'
=>
'0.14'
,
'base'
=>
'2.16'
,
'inc::latest'
=>
'0.3800'
,
'mro'
=>
'1.07'
,
'parent'
=>
'0.225'
,
},
removed
=> {
}
},
5.
014
=> {
delta_from
=> 5.013011,
changed
=> {
'ExtUtils::CBuilder'
=>
'0.280203'
,
'ExtUtils::CBuilder::Base'
=>
'0.280203'
,
'ExtUtils::CBuilder::Platform::Unix'
=>
'0.280203'
,
'ExtUtils::CBuilder::Platform::VMS'
=>
'0.280203'
,
'ExtUtils::CBuilder::Platform::Windows'
=>
'0.280203'
,
'ExtUtils::CBuilder::Platform::Windows::BCC'
=>
'0.280203'
,
'ExtUtils::CBuilder::Platform::Windows::GCC'
=>
'0.280203'
,
'ExtUtils::CBuilder::Platform::Windows::MSVC'
=>
'0.280203'
,
'ExtUtils::CBuilder::Platform::aix'
=>
'0.280203'
,
'ExtUtils::CBuilder::Platform::cygwin'
=>
'0.280203'
,
'ExtUtils::CBuilder::Platform::darwin'
=>
'0.280203'
,
'ExtUtils::CBuilder::Platform::dec_osf'
=>
'0.280203'
,
'ExtUtils::CBuilder::Platform::os2'
=>
'0.280203'
,
'ExtUtils::ParseXS'
=>
'2.2210'
,
'File::Basename'
=>
'2.82'
,
'HTTP::Tiny'
=>
'0.012'
,
'IO::Handle'
=>
'1.31'
,
'Module::CoreList'
=>
'2.49'
,
'PerlIO'
=>
'1.07'
,
'Pod::Html'
=>
'1.11'
,
'XS::APItest'
=>
'0.28'
,
'bigint'
=>
'0.27'
,
'bignum'
=>
'0.27'
,
'bigrat'
=>
'0.28'
,
'constant'
=>
'1.21'
,
'feature'
=>
'1.20'
,
're'
=>
'0.18'
,
'threads::shared'
=>
'1.37'
,
},
removed
=> {
}
},
5.
014001
=> {
delta_from
=> 5.014,
changed
=> {
'B::Deparse'
=>
'1.04'
,
'Module::CoreList'
=>
'2.49_01'
,
'Pod::Perldoc'
=>
'3.15_04'
,
},
removed
=> {
}
},
5.
014002
=> {
delta_from
=> 5.014001,
changed
=> {
'CPAN'
=>
'1.9600_01'
,
'CPAN::Distribution'
=>
'1.9602_01'
,
'Devel::DProf::dprof::V'
=>
undef
,
'Encode'
=>
'2.42_01'
,
'File::Glob'
=>
'1.13'
,
'Module::CoreList'
=>
'2.49_02'
,
'PerlIO::scalar'
=>
'0.11_01'
,
'Time::Piece::Seconds'
=>
undef
,
'XSLoader::XSLoader'
=>
'0.13'
,
},
removed
=> {
}
},
5.
014003
=> {
delta_from
=> 5.014002,
changed
=> {
'Digest'
=>
'1.16_01'
,
'IPC::Open3'
=>
'1.09_01'
,
'Module::CoreList'
=>
'2.49_04'
,
},
removed
=> {
}
},
5.
014004
=> {
delta_from
=> 5.014003,
changed
=> {
'Encode'
=>
'2.42_02'
,
'IPC::Open3'
=>
'1.0901'
,
'Module::CoreList'
=>
'2.49_06'
,
},
removed
=> {
}
},
5.
015
=> {
delta_from
=> 5.014001,
changed
=> {
'Archive::Extract'
=>
'0.52'
,
'Attribute::Handlers'
=>
'0.91'
,
'B'
=>
'1.30'
,
'B::Concise'
=>
'0.84'
,
'B::Deparse'
=>
'1.05'
,
'Benchmark'
=>
'1.13'
,
'CGI'
=>
'3.54'
,
'CGI::Util'
=>
'3.53'
,
'CPAN::Meta'
=>
'2.110930'
,
'CPAN::Meta::Converter'
=>
'2.110930'
,
'CPAN::Meta::Feature'
=>
'2.110930'
,
'CPAN::Meta::History'
=>
'2.110930'
,
'CPAN::Meta::Prereqs'
=>
'2.110930'
,
'CPAN::Meta::Spec'
=>
'2.110930'
,
'CPAN::Meta::Validator'
=>
'2.110930'
,
'CPANPLUS'
=>
'0.9105'
,
'CPANPLUS::Dist::Build'
=>
'0.56'
,
'CPANPLUS::Dist::Build::Constants'
=>
'0.56'
,
'CPANPLUS::Internals'
=>
'0.9105'
,
'CPANPLUS::Shell::Default'
=>
'0.9105'
,
'Compress::Raw::Bzip2'
=>
'2.035'
,
'Compress::Raw::Zlib'
=>
'2.035'
,
'Compress::Zlib'
=>
'2.035'
,
'DB_File'
=>
'1.822'
,
'Data::Dumper'
=>
'2.131'
,
'Devel::Peek'
=>
'1.08'
,
'Digest::SHA'
=>
'5.62'
,
'Encode'
=>
'2.43'
,
'Encode::Alias'
=>
'2.14'
,
'ExtUtils::CBuilder'
=>
'0.280204'
,
'ExtUtils::CBuilder::Base'
=>
'0.280204'
,
'Fatal'
=>
'2.10'
,
'File::Spec::Win32'
=>
'3.34'
,
'Filter::Simple'
=>
'0.87'
,
'Filter::Util::Call'
=>
'1.39'
,
'FindBin'
=>
'1.51'
,
'Hash::Util::FieldHash'
=>
'1.10'
,
'I18N::LangTags'
=>
'0.36'
,
'IO::Compress::Adapter::Bzip2'
=>
'2.035'
,
'IO::Compress::Adapter::Deflate'
=>
'2.035'
,
'IO::Compress::Adapter::Identity'
=>
'2.035'
,
'IO::Compress::Base'
=>
'2.035'
,
'IO::Compress::Base::Common'
=>
'2.035'
,
'IO::Compress::Bzip2'
=>
'2.035'
,
'IO::Compress::Deflate'
=>
'2.035'
,
'IO::Compress::Gzip'
=>
'2.035'
,
'IO::Compress::Gzip::Constants'
=>
'2.035'
,
'IO::Compress::RawDeflate'
=>
'2.035'
,
'IO::Compress::Zip'
=>
'2.035'
,
'IO::Compress::Zip::Constants'
=>
'2.035'
,
'IO::Compress::Zlib::Constants'
=>
'2.035'
,
'IO::Compress::Zlib::Extra'
=>
'2.035'
,
'IO::Uncompress::Adapter::Bunzip2'
=>
'2.035'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.035'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.035'
,
'IO::Uncompress::AnyInflate'
=>
'2.035'
,
'IO::Uncompress::AnyUncompress'
=>
'2.035'
,
'IO::Uncompress::Base'
=>
'2.035'
,
'IO::Uncompress::Bunzip2'
=>
'2.035'
,
'IO::Uncompress::Gunzip'
=>
'2.035'
,
'IO::Uncompress::Inflate'
=>
'2.035'
,
'IO::Uncompress::RawInflate'
=>
'2.035'
,
'IO::Uncompress::Unzip'
=>
'2.035'
,
'IPC::Open2'
=>
'1.04'
,
'IPC::Open3'
=>
'1.11'
,
'JSON::PP'
=>
'2.27200'
,
'Math::BigFloat'
=>
'1.994'
,
'Math::BigInt'
=>
'1.995'
,
'Math::Complex'
=>
'1.57'
,
'Math::Trig'
=>
'1.21'
,
'Module::CoreList'
=>
'2.51'
,
'ODBM_File'
=>
'1.11'
,
'Object::Accessor'
=>
'0.42'
,
'Opcode'
=>
'1.19'
,
'PerlIO::encoding'
=>
'0.15'
,
'PerlIO::scalar'
=>
'0.12'
,
'Pod::Perldoc'
=>
'3.15_05'
,
'Storable'
=>
'2.28'
,
'Sys::Syslog'
=>
'0.29'
,
'Time::HiRes'
=>
'1.9722'
,
'Unicode::Collate'
=>
'0.76'
,
'Unicode::Collate::CJK::Pinyin'
=>
'0.76'
,
'Unicode::Collate::CJK::Stroke'
=>
'0.76'
,
'Unicode::Collate::Locale'
=>
'0.76'
,
'Unicode::Normalize'
=>
'1.12'
,
'XS::APItest'
=>
'0.29'
,
'XSLoader'
=>
'0.15'
,
'autodie'
=>
'2.10'
,
'autodie::exception'
=>
'2.10'
,
'autodie::exception::system'
=>
'2.10'
,
'autodie::hints'
=>
'2.10'
,
'base'
=>
'2.17'
,
'charnames'
=>
'1.22'
,
'constant'
=>
'1.22'
,
'feature'
=>
'1.21'
,
'mro'
=>
'1.08'
,
'overload'
=>
'1.14'
,
'threads::shared'
=>
'1.38'
,
'vmsish'
=>
'1.03'
,
},
removed
=> {
'Devel::DProf'
=> 1,
'Shell'
=> 1,
}
},
5.
015001
=> {
delta_from
=> 5.015,
changed
=> {
'B::Deparse'
=>
'1.06'
,
'CGI'
=>
'3.55'
,
'CPAN::Meta'
=>
'2.110930001'
,
'CPAN::Meta::Converter'
=>
'2.110930001'
,
'CPANPLUS'
=>
'0.9108'
,
'CPANPLUS::Internals'
=>
'0.9108'
,
'CPANPLUS::Shell::Default'
=>
'0.9108'
,
'Carp'
=>
'1.21'
,
'Carp::Heavy'
=>
'1.21'
,
'Compress::Raw::Bzip2'
=>
'2.037'
,
'Compress::Raw::Zlib'
=>
'2.037'
,
'Compress::Zlib'
=>
'2.037'
,
'Cwd'
=>
'3.37'
,
'Env'
=>
'1.03'
,
'ExtUtils::Command::MM'
=>
'6.58'
,
'ExtUtils::Liblist'
=>
'6.58'
,
'ExtUtils::Liblist::Kid'
=>
'6.58'
,
'ExtUtils::MM'
=>
'6.58'
,
'ExtUtils::MM_AIX'
=>
'6.58'
,
'ExtUtils::MM_Any'
=>
'6.58'
,
'ExtUtils::MM_BeOS'
=>
'6.58'
,
'ExtUtils::MM_Cygwin'
=>
'6.58'
,
'ExtUtils::MM_DOS'
=>
'6.58'
,
'ExtUtils::MM_Darwin'
=>
'6.58'
,
'ExtUtils::MM_MacOS'
=>
'6.58'
,
'ExtUtils::MM_NW5'
=>
'6.58'
,
'ExtUtils::MM_OS2'
=>
'6.58'
,
'ExtUtils::MM_QNX'
=>
'6.58'
,
'ExtUtils::MM_UWIN'
=>
'6.58'
,
'ExtUtils::MM_Unix'
=>
'6.58'
,
'ExtUtils::MM_VMS'
=>
'6.58'
,
'ExtUtils::MM_VOS'
=>
'6.58'
,
'ExtUtils::MM_Win32'
=>
'6.58'
,
'ExtUtils::MM_Win95'
=>
'6.58'
,
'ExtUtils::MY'
=>
'6.58'
,
'ExtUtils::MakeMaker'
=>
'6.58'
,
'ExtUtils::MakeMaker::Config'
=>
'6.58'
,
'ExtUtils::Mkbootstrap'
=>
'6.58'
,
'ExtUtils::Mksymlists'
=>
'6.58'
,
'ExtUtils::ParseXS'
=>
'3.00_01'
,
'ExtUtils::ParseXS::Constants'
=>
undef
,
'ExtUtils::ParseXS::CountLines'
=>
undef
,
'ExtUtils::ParseXS::Utilities'
=>
undef
,
'ExtUtils::Typemaps'
=>
'1.00'
,
'ExtUtils::Typemaps::InputMap'
=>
undef
,
'ExtUtils::Typemaps::OutputMap'
=>
undef
,
'ExtUtils::Typemaps::Type'
=>
'0.05'
,
'ExtUtils::testlib'
=>
'6.58'
,
'File::Basename'
=>
'2.83'
,
'File::Find'
=>
'1.20'
,
'HTTP::Tiny'
=>
'0.013'
,
'I18N::Langinfo'
=>
'0.08_02'
,
'IO::Compress::Adapter::Bzip2'
=>
'2.037'
,
'IO::Compress::Adapter::Deflate'
=>
'2.037'
,
'IO::Compress::Adapter::Identity'
=>
'2.037'
,
'IO::Compress::Base'
=>
'2.037'
,
'IO::Compress::Base::Common'
=>
'2.037'
,
'IO::Compress::Bzip2'
=>
'2.037'
,
'IO::Compress::Deflate'
=>
'2.037'
,
'IO::Compress::Gzip'
=>
'2.037'
,
'IO::Compress::Gzip::Constants'
=>
'2.037'
,
'IO::Compress::RawDeflate'
=>
'2.037'
,
'IO::Compress::Zip'
=>
'2.037'
,
'IO::Compress::Zip::Constants'
=>
'2.037'
,
'IO::Compress::Zlib::Constants'
=>
'2.037'
,
'IO::Compress::Zlib::Extra'
=>
'2.037'
,
'IO::Uncompress::Adapter::Bunzip2'
=>
'2.037'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.037'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.037'
,
'IO::Uncompress::AnyInflate'
=>
'2.037'
,
'IO::Uncompress::AnyUncompress'
=>
'2.037'
,
'IO::Uncompress::Base'
=>
'2.037'
,
'IO::Uncompress::Bunzip2'
=>
'2.037'
,
'IO::Uncompress::Gunzip'
=>
'2.037'
,
'IO::Uncompress::Inflate'
=>
'2.037'
,
'IO::Uncompress::RawInflate'
=>
'2.037'
,
'IO::Uncompress::Unzip'
=>
'2.037'
,
'IPC::Cmd'
=>
'0.72'
,
'Locale::Codes'
=>
'3.17'
,
'Locale::Codes::Constants'
=>
'3.17'
,
'Locale::Codes::Country'
=>
'3.17'
,
'Locale::Codes::Country_Codes'
=>
'3.17'
,
'Locale::Codes::Currency'
=>
'3.17'
,
'Locale::Codes::Currency_Codes'
=>
'3.17'
,
'Locale::Codes::LangExt'
=>
'3.17'
,
'Locale::Codes::LangExt_Codes'
=>
'3.17'
,
'Locale::Codes::LangVar'
=>
'3.17'
,
'Locale::Codes::LangVar_Codes'
=>
'3.17'
,
'Locale::Codes::Language'
=>
'3.17'
,
'Locale::Codes::Language_Codes'
=>
'3.17'
,
'Locale::Codes::Script'
=>
'3.17'
,
'Locale::Codes::Script_Codes'
=>
'3.17'
,
'Locale::Country'
=>
'3.17'
,
'Locale::Currency'
=>
'3.17'
,
'Locale::Language'
=>
'3.17'
,
'Locale::Script'
=>
'3.17'
,
'Math::BigFloat::Trace'
=>
'0.28'
,
'Math::BigInt::FastCalc'
=>
'0.29'
,
'Math::BigInt::Trace'
=>
'0.28'
,
'Math::BigRat'
=>
'0.2602'
,
'Math::Complex'
=>
'1.58'
,
'Math::Trig'
=>
'1.22'
,
'Module::CoreList'
=>
'2.54'
,
'Pod::Perldoc'
=>
'3.15_06'
,
'Pod::Simple'
=>
'3.18'
,
'Pod::Simple::BlackBox'
=>
'3.18'
,
'Pod::Simple::Checker'
=>
'3.18'
,
'Pod::Simple::Debug'
=>
'3.18'
,
'Pod::Simple::DumpAsText'
=>
'3.18'
,
'Pod::Simple::DumpAsXML'
=>
'3.18'
,
'Pod::Simple::HTML'
=>
'3.18'
,
'Pod::Simple::HTMLBatch'
=>
'3.18'
,
'Pod::Simple::LinkSection'
=>
'3.18'
,
'Pod::Simple::Methody'
=>
'3.18'
,
'Pod::Simple::Progress'
=>
'3.18'
,
'Pod::Simple::PullParser'
=>
'3.18'
,
'Pod::Simple::PullParserEndToken'
=>
'3.18'
,
'Pod::Simple::PullParserStartToken'
=>
'3.18'
,
'Pod::Simple::PullParserTextToken'
=>
'3.18'
,
'Pod::Simple::PullParserToken'
=>
'3.18'
,
'Pod::Simple::RTF'
=>
'3.18'
,
'Pod::Simple::Search'
=>
'3.18'
,
'Pod::Simple::SimpleTree'
=>
'3.18'
,
'Pod::Simple::Text'
=>
'3.18'
,
'Pod::Simple::TextContent'
=>
'3.18'
,
'Pod::Simple::TiedOutFH'
=>
'3.18'
,
'Pod::Simple::Transcode'
=>
'3.18'
,
'Pod::Simple::TranscodeDumb'
=>
'3.18'
,
'Pod::Simple::TranscodeSmart'
=>
'3.18'
,
'Pod::Simple::XHTML'
=>
'3.18'
,
'Pod::Simple::XMLOutStream'
=>
'3.18'
,
'Storable'
=>
'2.31'
,
'Sys::Syslog::Win32'
=>
undef
,
'Time::HiRes'
=>
'1.9724'
,
'Unicode::Collate'
=>
'0.77'
,
'Unicode::UCD'
=>
'0.33'
,
'Win32API::File'
=>
'0.1200'
,
'XS::APItest'
=>
'0.30'
,
'attributes'
=>
'0.15'
,
'bigint'
=>
'0.28'
,
'bignum'
=>
'0.28'
,
'charnames'
=>
'1.23'
,
'diagnostics'
=>
'1.23'
,
'feature'
=>
'1.22'
,
'overload'
=>
'1.15'
,
'perlfaq'
=>
'5.015000'
,
'threads'
=>
'1.84'
,
'version'
=>
'0.93'
,
},
removed
=> {
'ExtUtils::MakeMaker::YAML'
=> 1,
'Locale::Constants'
=> 1,
'Sys::Syslog::win32::Win32'
=> 1,
}
},
5.
015002
=> {
delta_from
=> 5.015001,
changed
=> {
'Attribute::Handlers'
=>
'0.92'
,
'B'
=>
'1.31'
,
'B::Concise'
=>
'0.85'
,
'B::Deparse'
=>
'1.07'
,
'B::Terse'
=>
'1.06'
,
'B::Xref'
=>
'1.03'
,
'CPAN'
=>
'1.9800'
,
'CPAN::Exception::yaml_process_error'
=>
'5.5'
,
'CPAN::Meta'
=>
'2.112150'
,
'CPAN::Meta::Converter'
=>
'2.112150'
,
'CPAN::Meta::Feature'
=>
'2.112150'
,
'CPAN::Meta::History'
=>
'2.112150'
,
'CPAN::Meta::Prereqs'
=>
'2.112150'
,
'CPAN::Meta::Spec'
=>
'2.112150'
,
'CPAN::Meta::Validator'
=>
'2.112150'
,
'CPANPLUS'
=>
'0.9109'
,
'CPANPLUS::Internals'
=>
'0.9109'
,
'CPANPLUS::Shell::Default'
=>
'0.9109'
,
'DB_File'
=>
'1.824'
,
'Data::Dumper'
=>
'2.132'
,
'Encode'
=>
'2.44'
,
'Encode::Alias'
=>
'2.15'
,
'Encode::Encoder'
=>
'2.02'
,
'Encode::Guess'
=>
'2.05'
,
'ExtUtils::Command::MM'
=>
'6.59'
,
'ExtUtils::Install'
=>
'1.57'
,
'ExtUtils::Installed'
=>
'1.999002'
,
'ExtUtils::Liblist'
=>
'6.59'
,
'ExtUtils::Liblist::Kid'
=>
'6.59'
,
'ExtUtils::MM'
=>
'6.59'
,
'ExtUtils::MM_AIX'
=>
'6.59'
,
'ExtUtils::MM_Any'
=>
'6.59'
,
'ExtUtils::MM_BeOS'
=>
'6.59'
,
'ExtUtils::MM_Cygwin'
=>
'6.59'
,
'ExtUtils::MM_DOS'
=>
'6.59'
,
'ExtUtils::MM_Darwin'
=>
'6.59'
,
'ExtUtils::MM_MacOS'
=>
'6.59'
,
'ExtUtils::MM_NW5'
=>
'6.59'
,
'ExtUtils::MM_OS2'
=>
'6.59'
,
'ExtUtils::MM_QNX'
=>
'6.59'
,
'ExtUtils::MM_UWIN'
=>
'6.59'
,
'ExtUtils::MM_Unix'
=>
'6.59'
,
'ExtUtils::MM_VMS'
=>
'6.59'
,
'ExtUtils::MM_VOS'
=>
'6.59'
,
'ExtUtils::MM_Win32'
=>
'6.59'
,
'ExtUtils::MM_Win95'
=>
'6.59'
,
'ExtUtils::MY'
=>
'6.59'
,
'ExtUtils::MakeMaker'
=>
'6.59'
,
'ExtUtils::MakeMaker::Config'
=>
'6.59'
,
'ExtUtils::Manifest'
=>
'1.60'
,
'ExtUtils::Mkbootstrap'
=>
'6.59'
,
'ExtUtils::Mksymlists'
=>
'6.59'
,
'ExtUtils::ParseXS'
=>
'3.03_01'
,
'ExtUtils::Typemaps'
=>
'1.01'
,
'ExtUtils::testlib'
=>
'6.59'
,
'File::Spec'
=>
'3.34'
,
'File::Spec::Mac'
=>
'3.35'
,
'File::Spec::Unix'
=>
'3.34'
,
'File::Spec::VMS'
=>
'3.35'
,
'File::Spec::Win32'
=>
'3.35'
,
'I18N::LangTags'
=>
'0.37'
,
'IO'
=>
'1.25_05'
,
'IO::Handle'
=>
'1.32'
,
'IO::Socket'
=>
'1.33'
,
'IO::Socket::INET'
=>
'1.32'
,
'IPC::Open3'
=>
'1.12'
,
'Math::BigFloat'
=>
'1.995'
,
'Math::BigFloat::Trace'
=>
'0.29'
,
'Math::BigInt'
=>
'1.996'
,
'Math::BigInt::Trace'
=>
'0.29'
,
'Module::Build'
=>
'0.39_01'
,
'Module::Build::Base'
=>
'0.39_01'
,
'Module::Build::Compat'
=>
'0.39_01'
,
'Module::Build::Config'
=>
'0.39_01'
,
'Module::Build::Cookbook'
=>
'0.39_01'
,
'Module::Build::Dumper'
=>
'0.39_01'
,
'Module::Build::ModuleInfo'
=>
'0.39_01'
,
'Module::Build::Notes'
=>
'0.39_01'
,
'Module::Build::PPMMaker'
=>
'0.39_01'
,
'Module::Build::Platform::Amiga'
=>
'0.39_01'
,
'Module::Build::Platform::Default'
=>
'0.39_01'
,
'Module::Build::Platform::EBCDIC'
=>
'0.39_01'
,
'Module::Build::Platform::MPEiX'
=>
'0.39_01'
,
'Module::Build::Platform::MacOS'
=>
'0.39_01'
,
'Module::Build::Platform::RiscOS'
=>
'0.39_01'
,
'Module::Build::Platform::Unix'
=>
'0.39_01'
,
'Module::Build::Platform::VMS'
=>
'0.39_01'
,
'Module::Build::Platform::VOS'
=>
'0.39_01'
,
'Module::Build::Platform::Windows'
=>
'0.39_01'
,
'Module::Build::Platform::aix'
=>
'0.39_01'
,
'Module::Build::Platform::cygwin'
=>
'0.39_01'
,
'Module::Build::Platform::darwin'
=>
'0.39_01'
,
'Module::Build::Platform::os2'
=>
'0.39_01'
,
'Module::Build::PodParser'
=>
'0.39_01'
,
'Module::CoreList'
=>
'2.55'
,
'Module::Load'
=>
'0.20'
,
'Module::Metadata'
=>
'1.000005_01'
,
'Opcode'
=>
'1.20'
,
'Params::Check'
=>
'0.32'
,
'PerlIO::via'
=>
'0.12'
,
'Term::ANSIColor'
=>
'3.01'
,
'Unicode::Collate'
=>
'0.78'
,
'Unicode::Normalize'
=>
'1.13'
,
'Unicode::UCD'
=>
'0.34'
,
'bigint'
=>
'0.29'
,
'bignum'
=>
'0.29'
,
'bigrat'
=>
'0.29'
,
'diagnostics'
=>
'1.24'
,
'fields'
=>
'2.16'
,
'inc::latest'
=>
'0.39_01'
,
},
removed
=> {
}
},
5.
015003
=> {
delta_from
=> 5.015002,
changed
=> {
'AnyDBM_File'
=>
'1.01'
,
'Archive::Extract'
=>
'0.56'
,
'Archive::Tar'
=>
'1.78'
,
'Archive::Tar::Constant'
=>
'1.78'
,
'Archive::Tar::File'
=>
'1.78'
,
'Attribute::Handlers'
=>
'0.93'
,
'B'
=>
'1.32'
,
'B::Concise'
=>
'0.86'
,
'B::Deparse'
=>
'1.08'
,
'CPAN::Meta'
=>
'2.112621'
,
'CPAN::Meta::Converter'
=>
'2.112621'
,
'CPAN::Meta::Feature'
=>
'2.112621'
,
'CPAN::Meta::History'
=>
'2.112621'
,
'CPAN::Meta::Prereqs'
=>
'2.112621'
,
'CPAN::Meta::Spec'
=>
'2.112621'
,
'CPAN::Meta::Validator'
=>
'2.112621'
,
'CPAN::Meta::YAML'
=>
'0.004'
,
'CPANPLUS'
=>
'0.9111'
,
'CPANPLUS::Dist::Build'
=>
'0.58'
,
'CPANPLUS::Dist::Build::Constants'
=>
'0.58'
,
'CPANPLUS::Internals'
=>
'0.9111'
,
'CPANPLUS::Shell::Default'
=>
'0.9111'
,
'Carp'
=>
'1.23'
,
'Carp::Heavy'
=>
'1.23'
,
'Data::Dumper'
=>
'2.134'
,
'Devel::PPPort'
=>
'3.20'
,
'Errno'
=>
'1.14'
,
'Exporter'
=>
'5.65'
,
'Exporter::Heavy'
=>
'5.65'
,
'ExtUtils::ParseXS'
=>
'3.04_04'
,
'ExtUtils::ParseXS::Constants'
=>
'3.04_04'
,
'ExtUtils::ParseXS::CountLines'
=>
'3.04_04'
,
'ExtUtils::ParseXS::Utilities'
=>
'3.04_04'
,
'ExtUtils::Typemaps'
=>
'1.02'
,
'File::Glob'
=>
'1.13'
,
'Filter::Simple'
=>
'0.88'
,
'IO'
=>
'1.25_06'
,
'IO::Handle'
=>
'1.33'
,
'Locale::Codes'
=>
'3.18'
,
'Locale::Codes::Constants'
=>
'3.18'
,
'Locale::Codes::Country'
=>
'3.18'
,
'Locale::Codes::Country_Codes'
=>
'3.18'
,
'Locale::Codes::Currency'
=>
'3.18'
,
'Locale::Codes::Currency_Codes'
=>
'3.18'
,
'Locale::Codes::LangExt'
=>
'3.18'
,
'Locale::Codes::LangExt_Codes'
=>
'3.18'
,
'Locale::Codes::LangVar'
=>
'3.18'
,
'Locale::Codes::LangVar_Codes'
=>
'3.18'
,
'Locale::Codes::Language'
=>
'3.18'
,
'Locale::Codes::Language_Codes'
=>
'3.18'
,
'Locale::Codes::Script'
=>
'3.18'
,
'Locale::Codes::Script_Codes'
=>
'3.18'
,
'Locale::Country'
=>
'3.18'
,
'Locale::Currency'
=>
'3.18'
,
'Locale::Language'
=>
'3.18'
,
'Locale::Script'
=>
'3.18'
,
'Math::BigFloat'
=>
'1.997'
,
'Math::BigInt'
=>
'1.997'
,
'Math::BigInt::Calc'
=>
'1.997'
,
'Math::BigInt::CalcEmu'
=>
'1.997'
,
'Math::BigInt::FastCalc'
=>
'0.30'
,
'Math::BigRat'
=>
'0.2603'
,
'Module::CoreList'
=>
'2.56'
,
'Module::Load::Conditional'
=>
'0.46'
,
'Module::Metadata'
=>
'1.000007'
,
'ODBM_File'
=>
'1.12'
,
'POSIX'
=>
'1.26'
,
'Pod::Perldoc'
=>
'3.15_07'
,
'Pod::Simple'
=>
'3.19'
,
'Pod::Simple::BlackBox'
=>
'3.19'
,
'Pod::Simple::Checker'
=>
'3.19'
,
'Pod::Simple::Debug'
=>
'3.19'
,
'Pod::Simple::DumpAsText'
=>
'3.19'
,
'Pod::Simple::DumpAsXML'
=>
'3.19'
,
'Pod::Simple::HTML'
=>
'3.19'
,
'Pod::Simple::HTMLBatch'
=>
'3.19'
,
'Pod::Simple::LinkSection'
=>
'3.19'
,
'Pod::Simple::Methody'
=>
'3.19'
,
'Pod::Simple::Progress'
=>
'3.19'
,
'Pod::Simple::PullParser'
=>
'3.19'
,
'Pod::Simple::PullParserEndToken'
=>
'3.19'
,
'Pod::Simple::PullParserStartToken'
=>
'3.19'
,
'Pod::Simple::PullParserTextToken'
=>
'3.19'
,
'Pod::Simple::PullParserToken'
=>
'3.19'
,
'Pod::Simple::RTF'
=>
'3.19'
,
'Pod::Simple::Search'
=>
'3.19'
,
'Pod::Simple::SimpleTree'
=>
'3.19'
,
'Pod::Simple::Text'
=>
'3.19'
,
'Pod::Simple::TextContent'
=>
'3.19'
,
'Pod::Simple::TiedOutFH'
=>
'3.19'
,
'Pod::Simple::Transcode'
=>
'3.19'
,
'Pod::Simple::TranscodeDumb'
=>
'3.19'
,
'Pod::Simple::TranscodeSmart'
=>
'3.19'
,
'Pod::Simple::XHTML'
=>
'3.19'
,
'Pod::Simple::XMLOutStream'
=>
'3.19'
,
'Search::Dict'
=>
'1.04'
,
'Socket'
=>
'1.94_01'
,
'Storable'
=>
'2.32'
,
'Text::Abbrev'
=>
'1.02'
,
'Tie::Array'
=>
'1.05'
,
'UNIVERSAL'
=>
'1.09'
,
'Unicode::UCD'
=>
'0.35'
,
'XS::APItest'
=>
'0.31'
,
'XSLoader'
=>
'0.16'
,
'attributes'
=>
'0.16'
,
'diagnostics'
=>
'1.25'
,
'open'
=>
'1.09'
,
'perlfaq'
=>
'5.0150034'
,
'threads'
=>
'1.85'
,
'threads::shared'
=>
'1.40'
,
},
removed
=> {
}
},
5.
015004
=> {
delta_from
=> 5.015003,
changed
=> {
'Archive::Tar'
=>
'1.80'
,
'Archive::Tar::Constant'
=>
'1.80'
,
'Archive::Tar::File'
=>
'1.80'
,
'Digest'
=>
'1.17'
,
'DynaLoader'
=>
'1.14'
,
'ExtUtils::Command::MM'
=>
'6.61_01'
,
'ExtUtils::Liblist'
=>
'6.61_01'
,
'ExtUtils::Liblist::Kid'
=>
'6.61_01'
,
'ExtUtils::MM'
=>
'6.61_01'
,
'ExtUtils::MM_AIX'
=>
'6.61_01'
,
'ExtUtils::MM_Any'
=>
'6.61_01'
,
'ExtUtils::MM_BeOS'
=>
'6.61_01'
,
'ExtUtils::MM_Cygwin'
=>
'6.61_01'
,
'ExtUtils::MM_DOS'
=>
'6.61_01'
,
'ExtUtils::MM_Darwin'
=>
'6.61_01'
,
'ExtUtils::MM_MacOS'
=>
'6.61_01'
,
'ExtUtils::MM_NW5'
=>
'6.61_01'
,
'ExtUtils::MM_OS2'
=>
'6.61_01'
,
'ExtUtils::MM_QNX'
=>
'6.61_01'
,
'ExtUtils::MM_UWIN'
=>
'6.61_01'
,
'ExtUtils::MM_Unix'
=>
'6.61_01'
,
'ExtUtils::MM_VMS'
=>
'6.61_01'
,
'ExtUtils::MM_VOS'
=>
'6.61_01'
,
'ExtUtils::MM_Win32'
=>
'6.61_01'
,
'ExtUtils::MM_Win95'
=>
'6.61_01'
,
'ExtUtils::MY'
=>
'6.61_01'
,
'ExtUtils::MakeMaker'
=>
'6.61_01'
,
'ExtUtils::MakeMaker::Config'
=>
'6.61_01'
,
'ExtUtils::Mkbootstrap'
=>
'6.61_01'
,
'ExtUtils::Mksymlists'
=>
'6.61_01'
,
'ExtUtils::ParseXS'
=>
'3.05'
,
'ExtUtils::ParseXS::Constants'
=>
'3.05'
,
'ExtUtils::ParseXS::CountLines'
=>
'3.05'
,
'ExtUtils::ParseXS::Utilities'
=>
'3.05'
,
'ExtUtils::testlib'
=>
'6.61_01'
,
'File::DosGlob'
=>
'1.05'
,
'Module::CoreList'
=>
'2.57'
,
'Module::Load'
=>
'0.22'
,
'Unicode::Collate'
=>
'0.80'
,
'Unicode::Collate::Locale'
=>
'0.80'
,
'Unicode::UCD'
=>
'0.36'
,
'XS::APItest'
=>
'0.32'
,
'XS::Typemap'
=>
'0.07'
,
'attributes'
=>
'0.17'
,
'base'
=>
'2.18'
,
'constant'
=>
'1.23'
,
'mro'
=>
'1.09'
,
'open'
=>
'1.10'
,
'perlfaq'
=>
'5.0150035'
,
},
removed
=> {
}
},
5.
015005
=> {
delta_from
=> 5.015004,
changed
=> {
'Archive::Extract'
=>
'0.58'
,
'B::Concise'
=>
'0.87'
,
'B::Deparse'
=>
'1.09'
,
'CGI'
=>
'3.58'
,
'CGI::Fast'
=>
'1.09'
,
'CPANPLUS'
=>
'0.9112'
,
'CPANPLUS::Dist::Build'
=>
'0.60'
,
'CPANPLUS::Dist::Build::Constants'
=>
'0.60'
,
'CPANPLUS::Internals'
=>
'0.9112'
,
'CPANPLUS::Shell::Default'
=>
'0.9112'
,
'Compress::Raw::Bzip2'
=>
'2.042'
,
'Compress::Raw::Zlib'
=>
'2.042'
,
'Compress::Zlib'
=>
'2.042'
,
'Digest::SHA'
=>
'5.63'
,
'Errno'
=>
'1.15'
,
'ExtUtils::Command::MM'
=>
'6.63_02'
,
'ExtUtils::Liblist'
=>
'6.63_02'
,
'ExtUtils::Liblist::Kid'
=>
'6.63_02'
,
'ExtUtils::MM'
=>
'6.63_02'
,
'ExtUtils::MM_AIX'
=>
'6.63_02'
,
'ExtUtils::MM_Any'
=>
'6.63_02'
,
'ExtUtils::MM_BeOS'
=>
'6.63_02'
,
'ExtUtils::MM_Cygwin'
=>
'6.63_02'
,
'ExtUtils::MM_DOS'
=>
'6.63_02'
,
'ExtUtils::MM_Darwin'
=>
'6.63_02'
,
'ExtUtils::MM_MacOS'
=>
'6.63_02'
,
'ExtUtils::MM_NW5'
=>
'6.63_02'
,
'ExtUtils::MM_OS2'
=>
'6.63_02'
,
'ExtUtils::MM_QNX'
=>
'6.63_02'
,
'ExtUtils::MM_UWIN'
=>
'6.63_02'
,
'ExtUtils::MM_Unix'
=>
'6.63_02'
,
'ExtUtils::MM_VMS'
=>
'6.63_02'
,
'ExtUtils::MM_VOS'
=>
'6.63_02'
,
'ExtUtils::MM_Win32'
=>
'6.63_02'
,
'ExtUtils::MM_Win95'
=>
'6.63_02'
,
'ExtUtils::MY'
=>
'6.63_02'
,
'ExtUtils::MakeMaker'
=>
'6.63_02'
,
'ExtUtils::MakeMaker::Config'
=>
'6.63_02'
,
'ExtUtils::Mkbootstrap'
=>
'6.63_02'
,
'ExtUtils::Mksymlists'
=>
'6.63_02'
,
'ExtUtils::testlib'
=>
'6.63_02'
,
'File::DosGlob'
=>
'1.06'
,
'File::Glob'
=>
'1.14'
,
'HTTP::Tiny'
=>
'0.016'
,
'IO::Compress::Adapter::Bzip2'
=>
'2.042'
,
'IO::Compress::Adapter::Deflate'
=>
'2.042'
,
'IO::Compress::Adapter::Identity'
=>
'2.042'
,
'IO::Compress::Base'
=>
'2.042'
,
'IO::Compress::Base::Common'
=>
'2.042'
,
'IO::Compress::Bzip2'
=>
'2.042'
,
'IO::Compress::Deflate'
=>
'2.042'
,
'IO::Compress::Gzip'
=>
'2.042'
,
'IO::Compress::Gzip::Constants'
=>
'2.042'
,
'IO::Compress::RawDeflate'
=>
'2.042'
,
'IO::Compress::Zip'
=>
'2.042'
,
'IO::Compress::Zip::Constants'
=>
'2.042'
,
'IO::Compress::Zlib::Constants'
=>
'2.042'
,
'IO::Compress::Zlib::Extra'
=>
'2.042'
,
'IO::Uncompress::Adapter::Bunzip2'
=>
'2.042'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.042'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.042'
,
'IO::Uncompress::AnyInflate'
=>
'2.042'
,
'IO::Uncompress::AnyUncompress'
=>
'2.042'
,
'IO::Uncompress::Base'
=>
'2.042'
,
'IO::Uncompress::Bunzip2'
=>
'2.042'
,
'IO::Uncompress::Gunzip'
=>
'2.042'
,
'IO::Uncompress::Inflate'
=>
'2.042'
,
'IO::Uncompress::RawInflate'
=>
'2.042'
,
'IO::Uncompress::Unzip'
=>
'2.042'
,
'Locale::Maketext'
=>
'1.20'
,
'Locale::Maketext::Guts'
=>
'1.20'
,
'Locale::Maketext::GutsLoader'
=>
'1.20'
,
'Module::CoreList'
=>
'2.58'
,
'Opcode'
=>
'1.21'
,
'Socket'
=>
'1.94_02'
,
'Storable'
=>
'2.33'
,
'UNIVERSAL'
=>
'1.10'
,
'Unicode::Collate'
=>
'0.85'
,
'Unicode::Collate::CJK::Pinyin'
=>
'0.85'
,
'Unicode::Collate::CJK::Stroke'
=>
'0.85'
,
'Unicode::Collate::Locale'
=>
'0.85'
,
'Unicode::UCD'
=>
'0.37'
,
'XS::APItest'
=>
'0.33'
,
'arybase'
=>
'0.01'
,
'charnames'
=>
'1.24'
,
'feature'
=>
'1.23'
,
'perlfaq'
=>
'5.0150036'
,
'strict'
=>
'1.05'
,
'unicore::Name'
=>
undef
,
},
removed
=> {
}
},
5.
015006
=> {
delta_from
=> 5.015005,
changed
=> {
'Archive::Tar'
=>
'1.82'
,
'Archive::Tar::Constant'
=>
'1.82'
,
'Archive::Tar::File'
=>
'1.82'
,
'AutoLoader'
=>
'5.72'
,
'B::Concise'
=>
'0.88'
,
'B::Debug'
=>
'1.17'
,
'B::Deparse'
=>
'1.10'
,
'CPAN::Meta::YAML'
=>
'0.005'
,
'CPANPLUS'
=>
'0.9113'
,
'CPANPLUS::Internals'
=>
'0.9113'
,
'CPANPLUS::Shell::Default'
=>
'0.9113'
,
'Carp'
=>
'1.24'
,
'Compress::Raw::Bzip2'
=>
'2.045'
,
'Compress::Raw::Zlib'
=>
'2.045'
,
'Compress::Zlib'
=>
'2.045'
,
'Cwd'
=>
'3.38'
,
'DB'
=>
'1.04'
,
'Data::Dumper'
=>
'2.135_01'
,
'Digest::SHA'
=>
'5.70'
,
'Dumpvalue'
=>
'1.17'
,
'Exporter'
=>
'5.66'
,
'Exporter::Heavy'
=>
'5.66'
,
'ExtUtils::CBuilder'
=>
'0.280205'
,
'ExtUtils::CBuilder::Platform::os2'
=>
'0.280204'
,
'ExtUtils::Packlist'
=>
'1.45'
,
'ExtUtils::ParseXS'
=>
'3.08'
,
'ExtUtils::ParseXS::Constants'
=>
'3.08'
,
'ExtUtils::ParseXS::CountLines'
=>
'3.08'
,
'ExtUtils::ParseXS::Utilities'
=>
'3.08'
,
'File::Basename'
=>
'2.84'
,
'File::Glob'
=>
'1.15'
,
'File::Spec::Unix'
=>
'3.35'
,
'Getopt::Std'
=>
'1.07'
,
'I18N::LangTags'
=>
'0.38'
,
'IO::Compress::Adapter::Bzip2'
=>
'2.045'
,
'IO::Compress::Adapter::Deflate'
=>
'2.045'
,
'IO::Compress::Adapter::Identity'
=>
'2.045'
,
'IO::Compress::Base'
=>
'2.046'
,
'IO::Compress::Base::Common'
=>
'2.045'
,
'IO::Compress::Bzip2'
=>
'2.045'
,
'IO::Compress::Deflate'
=>
'2.045'
,
'IO::Compress::Gzip'
=>
'2.045'
,
'IO::Compress::Gzip::Constants'
=>
'2.045'
,
'IO::Compress::RawDeflate'
=>
'2.045'
,
'IO::Compress::Zip'
=>
'2.046'
,
'IO::Compress::Zip::Constants'
=>
'2.045'
,
'IO::Compress::Zlib::Constants'
=>
'2.045'
,
'IO::Compress::Zlib::Extra'
=>
'2.045'
,
'IO::Dir'
=>
'1.09'
,
'IO::File'
=>
'1.16'
,
'IO::Uncompress::Adapter::Bunzip2'
=>
'2.045'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.045'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.045'
,
'IO::Uncompress::AnyInflate'
=>
'2.045'
,
'IO::Uncompress::AnyUncompress'
=>
'2.045'
,
'IO::Uncompress::Base'
=>
'2.046'
,
'IO::Uncompress::Bunzip2'
=>
'2.045'
,
'IO::Uncompress::Gunzip'
=>
'2.045'
,
'IO::Uncompress::Inflate'
=>
'2.045'
,
'IO::Uncompress::RawInflate'
=>
'2.045'
,
'IO::Uncompress::Unzip'
=>
'2.046'
,
'Locale::Codes'
=>
'3.20'
,
'Locale::Codes::Constants'
=>
'3.20'
,
'Locale::Codes::Country'
=>
'3.20'
,
'Locale::Codes::Country_Codes'
=>
'3.20'
,
'Locale::Codes::Country_Retired'
=>
'3.20'
,
'Locale::Codes::Currency'
=>
'3.20'
,
'Locale::Codes::Currency_Codes'
=>
'3.20'
,
'Locale::Codes::Currency_Retired'
=>
'3.20'
,
'Locale::Codes::LangExt'
=>
'3.20'
,
'Locale::Codes::LangExt_Codes'
=>
'3.20'
,
'Locale::Codes::LangExt_Retired'
=>
'3.20'
,
'Locale::Codes::LangFam'
=>
'3.20'
,
'Locale::Codes::LangFam_Codes'
=>
'3.20'
,
'Locale::Codes::LangFam_Retired'
=>
'3.20'
,
'Locale::Codes::LangVar'
=>
'3.20'
,
'Locale::Codes::LangVar_Codes'
=>
'3.20'
,
'Locale::Codes::LangVar_Retired'
=>
'3.20'
,
'Locale::Codes::Language'
=>
'3.20'
,
'Locale::Codes::Language_Codes'
=>
'3.20'
,
'Locale::Codes::Language_Retired'
=>
'3.20'
,
'Locale::Codes::Script'
=>
'3.20'
,
'Locale::Codes::Script_Codes'
=>
'3.20'
,
'Locale::Codes::Script_Retired'
=>
'3.20'
,
'Locale::Country'
=>
'3.20'
,
'Locale::Currency'
=>
'3.20'
,
'Locale::Language'
=>
'3.20'
,
'Locale::Maketext'
=>
'1.21'
,
'Locale::Script'
=>
'3.20'
,
'Module::CoreList'
=>
'2.59'
,
'Module::Loaded'
=>
'0.08'
,
'Opcode'
=>
'1.22'
,
'POSIX'
=>
'1.27'
,
'Pod::Html'
=>
'1.12'
,
'Pod::LaTeX'
=>
'0.60'
,
'Pod::Perldoc'
=>
'3.15_08'
,
'Safe'
=>
'2.30'
,
'SelfLoader'
=>
'1.20'
,
'Socket'
=>
'1.97'
,
'Storable'
=>
'2.34'
,
'UNIVERSAL'
=>
'1.11'
,
'Unicode::Collate'
=>
'0.87'
,
'Unicode::Collate::Locale'
=>
'0.87'
,
'XS::APItest'
=>
'0.34'
,
'arybase'
=>
'0.02'
,
'charnames'
=>
'1.27'
,
'diagnostics'
=>
'1.26'
,
'feature'
=>
'1.24'
,
'if'
=>
'0.0602'
,
'overload'
=>
'1.16'
,
'sigtrap'
=>
'1.06'
,
'strict'
=>
'1.06'
,
'threads'
=>
'1.86'
,
'version'
=>
'0.96'
,
},
removed
=> {
}
},
5.
015007
=> {
delta_from
=> 5.015006,
changed
=> {
'B'
=>
'1.33'
,
'B::Deparse'
=>
'1.11'
,
'CGI'
=>
'3.59'
,
'CPAN::Meta'
=>
'2.113640'
,
'CPAN::Meta::Converter'
=>
'2.113640'
,
'CPAN::Meta::Feature'
=>
'2.113640'
,
'CPAN::Meta::History'
=>
'2.113640'
,
'CPAN::Meta::Prereqs'
=>
'2.113640'
,
'CPAN::Meta::Requirements'
=>
'2.113640'
,
'CPAN::Meta::Spec'
=>
'2.113640'
,
'CPAN::Meta::Validator'
=>
'2.113640'
,
'CPANPLUS'
=>
'0.9116'
,
'CPANPLUS::Internals'
=>
'0.9116'
,
'CPANPLUS::Shell::Default'
=>
'0.9116'
,
'Cwd'
=>
'3.39_01'
,
'Data::Dumper'
=>
'2.135_03'
,
'Devel::InnerPackage'
=>
'0.4'
,
'ExtUtils::CBuilder::Base'
=>
'0.280205'
,
'ExtUtils::CBuilder::Platform::Unix'
=>
'0.280205'
,
'ExtUtils::CBuilder::Platform::VMS'
=>
'0.280205'
,
'ExtUtils::CBuilder::Platform::Windows'
=>
'0.280205'
,
'ExtUtils::CBuilder::Platform::Windows::BCC'
=>
'0.280205'
,
'ExtUtils::CBuilder::Platform::Windows::GCC'
=>
'0.280205'
,
'ExtUtils::CBuilder::Platform::Windows::MSVC'
=>
'0.280205'
,
'ExtUtils::CBuilder::Platform::aix'
=>
'0.280205'
,
'ExtUtils::CBuilder::Platform::cygwin'
=>
'0.280205'
,
'ExtUtils::CBuilder::Platform::darwin'
=>
'0.280205'
,
'ExtUtils::CBuilder::Platform::dec_osf'
=>
'0.280205'
,
'ExtUtils::CBuilder::Platform::os2'
=>
'0.280205'
,
'ExtUtils::Manifest'
=>
'1.61'
,
'ExtUtils::Packlist'
=>
'1.46'
,
'ExtUtils::ParseXS'
=>
'3.12'
,
'ExtUtils::ParseXS::Constants'
=>
'3.12'
,
'ExtUtils::ParseXS::CountLines'
=>
'3.12'
,
'ExtUtils::ParseXS::Utilities'
=>
'3.12'
,
'ExtUtils::Typemaps'
=>
'1.03'
,
'ExtUtils::Typemaps::Cmd'
=>
undef
,
'ExtUtils::Typemaps::Type'
=>
'0.06'
,
'File::Glob'
=>
'1.16'
,
'File::Spec'
=>
'3.39_01'
,
'File::Spec::Cygwin'
=>
'3.39_01'
,
'File::Spec::Epoc'
=>
'3.39_01'
,
'File::Spec::Functions'
=>
'3.39_01'
,
'File::Spec::Mac'
=>
'3.39_01'
,
'File::Spec::OS2'
=>
'3.39_01'
,
'File::Spec::Unix'
=>
'3.39_01'
,
'File::Spec::VMS'
=>
'3.39_01'
,
'File::Spec::Win32'
=>
'3.39_01'
,
'IO::Dir'
=>
'1.10'
,
'IO::Pipe'
=>
'1.15'
,
'IO::Poll'
=>
'0.09'
,
'IO::Select'
=>
'1.21'
,
'IO::Socket'
=>
'1.34'
,
'IO::Socket::INET'
=>
'1.33'
,
'IO::Socket::UNIX'
=>
'1.24'
,
'Locale::Maketext'
=>
'1.22'
,
'Math::BigInt'
=>
'1.998'
,
'Module::CoreList'
=>
'2.60'
,
'Module::Pluggable'
=>
'4.0'
,
'POSIX'
=>
'1.28'
,
'PerlIO::scalar'
=>
'0.13'
,
'Pod::Html'
=>
'1.13'
,
'Pod::Perldoc'
=>
'3.15_15'
,
'Pod::Perldoc::BaseTo'
=>
'3.15_15'
,
'Pod::Perldoc::GetOptsOO'
=>
'3.15_15'
,
'Pod::Perldoc::ToANSI'
=>
'3.15_15'
,
'Pod::Perldoc::ToChecker'
=>
'3.15_15'
,
'Pod::Perldoc::ToMan'
=>
'3.15_15'
,
'Pod::Perldoc::ToNroff'
=>
'3.15_15'
,
'Pod::Perldoc::ToPod'
=>
'3.15_15'
,
'Pod::Perldoc::ToRtf'
=>
'3.15_15'
,
'Pod::Perldoc::ToTerm'
=>
'3.15_15'
,
'Pod::Perldoc::ToText'
=>
'3.15_15'
,
'Pod::Perldoc::ToTk'
=>
'3.15_15'
,
'Pod::Perldoc::ToXml'
=>
'3.15_15'
,
'Term::UI'
=>
'0.30'
,
'Tie::File'
=>
'0.98'
,
'Unicode::UCD'
=>
'0.39'
,
'Version::Requirements'
=>
'0.101021'
,
'XS::APItest'
=>
'0.35'
,
'_charnames'
=>
'1.28'
,
'arybase'
=>
'0.03'
,
'autouse'
=>
'1.07'
,
'charnames'
=>
'1.28'
,
'diagnostics'
=>
'1.27'
,
'feature'
=>
'1.25'
,
'overload'
=>
'1.17'
,
'overloading'
=>
'0.02'
,
'perlfaq'
=>
'5.0150038'
,
},
removed
=> {
}
},
5.
015008
=> {
delta_from
=> 5.015007,
changed
=> {
'B'
=>
'1.34'
,
'B::Deparse'
=>
'1.12'
,
'CPAN::Meta'
=>
'2.120351'
,
'CPAN::Meta::Converter'
=>
'2.120351'
,
'CPAN::Meta::Feature'
=>
'2.120351'
,
'CPAN::Meta::History'
=>
'2.120351'
,
'CPAN::Meta::Prereqs'
=>
'2.120351'
,
'CPAN::Meta::Requirements'
=>
'2.120351'
,
'CPAN::Meta::Spec'
=>
'2.120351'
,
'CPAN::Meta::Validator'
=>
'2.120351'
,
'CPAN::Meta::YAML'
=>
'0.007'
,
'CPANPLUS'
=>
'0.9118'
,
'CPANPLUS::Dist::Build'
=>
'0.62'
,
'CPANPLUS::Dist::Build::Constants'
=>
'0.62'
,
'CPANPLUS::Internals'
=>
'0.9118'
,
'CPANPLUS::Shell::Default'
=>
'0.9118'
,
'Carp'
=>
'1.25'
,
'Carp::Heavy'
=>
'1.25'
,
'Compress::Raw::Bzip2'
=>
'2.048'
,
'Compress::Raw::Zlib'
=>
'2.048'
,
'Compress::Zlib'
=>
'2.048'
,
'Cwd'
=>
'3.39_02'
,
'DB_File'
=>
'1.826'
,
'Data::Dumper'
=>
'2.135_05'
,
'English'
=>
'1.05'
,
'ExtUtils::Install'
=>
'1.58'
,
'ExtUtils::ParseXS'
=>
'3.16'
,
'ExtUtils::ParseXS::Constants'
=>
'3.16'
,
'ExtUtils::ParseXS::CountLines'
=>
'3.16'
,
'ExtUtils::ParseXS::Utilities'
=>
'3.16'
,
'ExtUtils::Typemaps'
=>
'3.16'
,
'ExtUtils::Typemaps::Cmd'
=>
'3.16'
,
'ExtUtils::Typemaps::InputMap'
=>
'3.16'
,
'ExtUtils::Typemaps::OutputMap'
=>
'3.16'
,
'ExtUtils::Typemaps::Type'
=>
'3.16'
,
'File::Copy'
=>
'2.23'
,
'File::Glob'
=>
'1.17'
,
'File::Spec'
=>
'3.39_02'
,
'File::Spec::Cygwin'
=>
'3.39_02'
,
'File::Spec::Epoc'
=>
'3.39_02'
,
'File::Spec::Functions'
=>
'3.39_02'
,
'File::Spec::Mac'
=>
'3.39_02'
,
'File::Spec::OS2'
=>
'3.39_02'
,
'File::Spec::Unix'
=>
'3.39_02'
,
'File::Spec::VMS'
=>
'3.39_02'
,
'File::Spec::Win32'
=>
'3.39_02'
,
'Filter::Util::Call'
=>
'1.40'
,
'IO::Compress::Adapter::Bzip2'
=>
'2.048'
,
'IO::Compress::Adapter::Deflate'
=>
'2.048'
,
'IO::Compress::Adapter::Identity'
=>
'2.048'
,
'IO::Compress::Base'
=>
'2.048'
,
'IO::Compress::Base::Common'
=>
'2.048'
,
'IO::Compress::Bzip2'
=>
'2.048'
,
'IO::Compress::Deflate'
=>
'2.048'
,
'IO::Compress::Gzip'
=>
'2.048'
,
'IO::Compress::Gzip::Constants'
=>
'2.048'
,
'IO::Compress::RawDeflate'
=>
'2.048'
,
'IO::Compress::Zip'
=>
'2.048'
,
'IO::Compress::Zip::Constants'
=>
'2.048'
,
'IO::Compress::Zlib::Constants'
=>
'2.048'
,
'IO::Compress::Zlib::Extra'
=>
'2.048'
,
'IO::Uncompress::Adapter::Bunzip2'
=>
'2.048'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.048'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.048'
,
'IO::Uncompress::AnyInflate'
=>
'2.048'
,
'IO::Uncompress::AnyUncompress'
=>
'2.048'
,
'IO::Uncompress::Base'
=>
'2.048'
,
'IO::Uncompress::Bunzip2'
=>
'2.048'
,
'IO::Uncompress::Gunzip'
=>
'2.048'
,
'IO::Uncompress::Inflate'
=>
'2.048'
,
'IO::Uncompress::RawInflate'
=>
'2.048'
,
'IO::Uncompress::Unzip'
=>
'2.048'
,
'IPC::Cmd'
=>
'0.76'
,
'Math::Complex'
=>
'1.59'
,
'Math::Trig'
=>
'1.23'
,
'Module::Metadata'
=>
'1.000009'
,
'Opcode'
=>
'1.23'
,
'POSIX'
=>
'1.30'
,
'Parse::CPAN::Meta'
=>
'1.4402'
,
'PerlIO::mmap'
=>
'0.010'
,
'Pod::Checker'
=>
'1.51'
,
'Pod::Find'
=>
'1.51'
,
'Pod::Functions'
=>
'1.05'
,
'Pod::Functions::Functions'
=>
'1.05'
,
'Pod::Html'
=>
'1.14'
,
'Pod::InputObjects'
=>
'1.51'
,
'Pod::ParseUtils'
=>
'1.51'
,
'Pod::Parser'
=>
'1.51'
,
'Pod::PlainText'
=>
'2.05'
,
'Pod::Select'
=>
'1.51'
,
'Pod::Usage'
=>
'1.51'
,
'Safe'
=>
'2.31'
,
'Socket'
=>
'1.98'
,
'Term::Cap'
=>
'1.13'
,
'Term::ReadLine'
=>
'1.08'
,
'Time::HiRes'
=>
'1.9725'
,
'Unicode'
=>
'6.1.0'
,
'Unicode::UCD'
=>
'0.41'
,
'Version::Requirements'
=>
'0.101022'
,
'XS::APItest'
=>
'0.36'
,
'XS::Typemap'
=>
'0.08'
,
'_charnames'
=>
'1.29'
,
'arybase'
=>
'0.04'
,
'charnames'
=>
'1.29'
,
'diagnostics'
=>
'1.28'
,
'feature'
=>
'1.26'
,
'locale'
=>
'1.01'
,
'overload'
=>
'1.18'
,
'perlfaq'
=>
'5.0150039'
,
're'
=>
'0.19'
,
'subs'
=>
'1.01'
,
'warnings'
=>
'1.13'
,
},
removed
=> {
}
},
5.
015009
=> {
delta_from
=> 5.015008,
changed
=> {
'B::Deparse'
=>
'1.13'
,
'B::Lint'
=>
'1.14'
,
'B::Lint::Debug'
=>
'1.14'
,
'CPAN::Meta'
=>
'2.120630'
,
'CPAN::Meta::Converter'
=>
'2.120630'
,
'CPAN::Meta::Feature'
=>
'2.120630'
,
'CPAN::Meta::History'
=>
'2.120630'
,
'CPAN::Meta::Prereqs'
=>
'2.120630'
,
'CPAN::Meta::Requirements'
=>
'2.120630'
,
'CPAN::Meta::Spec'
=>
'2.120630'
,
'CPAN::Meta::Validator'
=>
'2.120630'
,
'CPANPLUS'
=>
'0.9121'
,
'CPANPLUS::Internals'
=>
'0.9121'
,
'CPANPLUS::Shell::Default'
=>
'0.9121'
,
'Data::Dumper'
=>
'2.135_06'
,
'Digest::SHA'
=>
'5.71'
,
'ExtUtils::CBuilder'
=>
'0.280206'
,
'ExtUtils::CBuilder::Base'
=>
'0.280206'
,
'ExtUtils::CBuilder::Platform::Unix'
=>
'0.280206'
,
'ExtUtils::CBuilder::Platform::VMS'
=>
'0.280206'
,
'ExtUtils::CBuilder::Platform::Windows'
=>
'0.280206'
,
'ExtUtils::CBuilder::Platform::Windows::BCC'
=>
'0.280206'
,
'ExtUtils::CBuilder::Platform::Windows::GCC'
=>
'0.280206'
,
'ExtUtils::CBuilder::Platform::Windows::MSVC'
=>
'0.280206'
,
'ExtUtils::CBuilder::Platform::aix'
=>
'0.280206'
,
'ExtUtils::CBuilder::Platform::cygwin'
=>
'0.280206'
,
'ExtUtils::CBuilder::Platform::darwin'
=>
'0.280206'
,
'ExtUtils::CBuilder::Platform::dec_osf'
=>
'0.280206'
,
'ExtUtils::CBuilder::Platform::os2'
=>
'0.280206'
,
'HTTP::Tiny'
=>
'0.017'
,
'Locale::Codes'
=>
'3.21'
,
'Locale::Codes::Constants'
=>
'3.21'
,
'Locale::Codes::Country'
=>
'3.21'
,
'Locale::Codes::Country_Codes'
=>
'3.21'
,
'Locale::Codes::Country_Retired'
=>
'3.21'
,
'Locale::Codes::Currency'
=>
'3.21'
,
'Locale::Codes::Currency_Codes'
=>
'3.21'
,
'Locale::Codes::Currency_Retired'
=>
'3.21'
,
'Locale::Codes::LangExt'
=>
'3.21'
,
'Locale::Codes::LangExt_Codes'
=>
'3.21'
,
'Locale::Codes::LangExt_Retired'
=>
'3.21'
,
'Locale::Codes::LangFam'
=>
'3.21'
,
'Locale::Codes::LangFam_Codes'
=>
'3.21'
,
'Locale::Codes::LangFam_Retired'
=>
'3.21'
,
'Locale::Codes::LangVar'
=>
'3.21'
,
'Locale::Codes::LangVar_Codes'
=>
'3.21'
,
'Locale::Codes::LangVar_Retired'
=>
'3.21'
,
'Locale::Codes::Language'
=>
'3.21'
,
'Locale::Codes::Language_Codes'
=>
'3.21'
,
'Locale::Codes::Language_Retired'
=>
'3.21'
,
'Locale::Codes::Script'
=>
'3.21'
,
'Locale::Codes::Script_Codes'
=>
'3.21'
,
'Locale::Codes::Script_Retired'
=>
'3.21'
,
'Locale::Country'
=>
'3.21'
,
'Locale::Currency'
=>
'3.21'
,
'Locale::Language'
=>
'3.21'
,
'Locale::Script'
=>
'3.21'
,
'Module::CoreList'
=>
'2.65'
,
'Pod::Html'
=>
'1.1501'
,
'Pod::Perldoc'
=>
'3.17'
,
'Pod::Perldoc::BaseTo'
=>
'3.17'
,
'Pod::Perldoc::GetOptsOO'
=>
'3.17'
,
'Pod::Perldoc::ToANSI'
=>
'3.17'
,
'Pod::Perldoc::ToChecker'
=>
'3.17'
,
'Pod::Perldoc::ToMan'
=>
'3.17'
,
'Pod::Perldoc::ToNroff'
=>
'3.17'
,
'Pod::Perldoc::ToPod'
=>
'3.17'
,
'Pod::Perldoc::ToRtf'
=>
'3.17'
,
'Pod::Perldoc::ToTerm'
=>
'3.17'
,
'Pod::Perldoc::ToText'
=>
'3.17'
,
'Pod::Perldoc::ToTk'
=>
'3.17'
,
'Pod::Perldoc::ToXml'
=>
'3.17'
,
'Pod::Simple'
=>
'3.20'
,
'Pod::Simple::BlackBox'
=>
'3.20'
,
'Pod::Simple::Checker'
=>
'3.20'
,
'Pod::Simple::Debug'
=>
'3.20'
,
'Pod::Simple::DumpAsText'
=>
'3.20'
,
'Pod::Simple::DumpAsXML'
=>
'3.20'
,
'Pod::Simple::HTML'
=>
'3.20'
,
'Pod::Simple::HTMLBatch'
=>
'3.20'
,
'Pod::Simple::LinkSection'
=>
'3.20'
,
'Pod::Simple::Methody'
=>
'3.20'
,
'Pod::Simple::Progress'
=>
'3.20'
,
'Pod::Simple::PullParser'
=>
'3.20'
,
'Pod::Simple::PullParserEndToken'
=>
'3.20'
,
'Pod::Simple::PullParserStartToken'
=>
'3.20'
,
'Pod::Simple::PullParserTextToken'
=>
'3.20'
,
'Pod::Simple::PullParserToken'
=>
'3.20'
,
'Pod::Simple::RTF'
=>
'3.20'
,
'Pod::Simple::Search'
=>
'3.20'
,
'Pod::Simple::SimpleTree'
=>
'3.20'
,
'Pod::Simple::Text'
=>
'3.20'
,
'Pod::Simple::TextContent'
=>
'3.20'
,
'Pod::Simple::TiedOutFH'
=>
'3.20'
,
'Pod::Simple::Transcode'
=>
'3.20'
,
'Pod::Simple::TranscodeDumb'
=>
'3.20'
,
'Pod::Simple::TranscodeSmart'
=>
'3.20'
,
'Pod::Simple::XHTML'
=>
'3.20'
,
'Pod::Simple::XMLOutStream'
=>
'3.20'
,
'Socket'
=>
'2.000'
,
'Term::ReadLine'
=>
'1.09'
,
'Unicode::Collate'
=>
'0.89'
,
'Unicode::Collate::CJK::Korean'
=>
'0.88'
,
'Unicode::Collate::Locale'
=>
'0.89'
,
'Unicode::Normalize'
=>
'1.14'
,
'Unicode::UCD'
=>
'0.42'
,
'XS::APItest'
=>
'0.37'
,
'arybase'
=>
'0.05'
,
'attributes'
=>
'0.18'
,
'charnames'
=>
'1.30'
,
'feature'
=>
'1.27'
,
},
removed
=> {
}
},
5.
016
=> {
delta_from
=> 5.015009,
changed
=> {
'B::Concise'
=>
'0.89'
,
'B::Deparse'
=>
'1.14'
,
'Carp'
=>
'1.26'
,
'Carp::Heavy'
=>
'1.26'
,
'IO::Socket'
=>
'1.35'
,
'Module::CoreList'
=>
'2.66'
,
'PerlIO::scalar'
=>
'0.14'
,
'Pod::Html'
=>
'1.1502'
,
'Safe'
=>
'2.31_01'
,
'Socket'
=>
'2.001'
,
'Unicode::UCD'
=>
'0.43'
,
'XS::APItest'
=>
'0.38'
,
'_charnames'
=>
'1.31'
,
'attributes'
=>
'0.19'
,
'strict'
=>
'1.07'
,
'version'
=>
'0.99'
,
},
removed
=> {
}
},
5.
016001
=> {
delta_from
=> 5.016,
changed
=> {
'B'
=>
'1.35'
,
'B::Deparse'
=>
'1.14_01'
,
'List::Util'
=>
'1.25'
,
'List::Util::PP'
=>
'1.25'
,
'List::Util::XS'
=>
'1.25'
,
'Module::CoreList'
=>
'2.70'
,
'PerlIO::scalar'
=>
'0.14_01'
,
'Scalar::Util'
=>
'1.25'
,
'Scalar::Util::PP'
=>
'1.25'
,
're'
=>
'0.19_01'
,
},
removed
=> {
}
},
5.
016002
=> {
delta_from
=> 5.016001,
changed
=> {
'Module::CoreList'
=>
'2.76'
,
},
removed
=> {
}
},
5.
016003
=> {
delta_from
=> 5.016002,
changed
=> {
'Encode'
=>
'2.44_01'
,
'Module::CoreList'
=>
'2.76_02'
,
'XS::APItest'
=>
'0.39'
,
},
removed
=> {
}
},
5.
017
=> {
delta_from
=> 5.016,
changed
=> {
'B'
=>
'1.35'
,
'B::Concise'
=>
'0.90'
,
'ExtUtils::ParseXS'
=>
'3.17'
,
'ExtUtils::ParseXS::Utilities'
=>
'3.17'
,
'File::DosGlob'
=>
'1.07'
,
'File::Find'
=>
'1.21'
,
'File::stat'
=>
'1.06'
,
'Hash::Util'
=>
'0.12'
,
'IO::Socket'
=>
'1.34'
,
'Module::CoreList'
=>
'2.67'
,
'Pod::Functions'
=>
'1.06'
,
'Pod::Functions::Functions'
=>
'1.06'
,
'Storable'
=>
'2.35'
,
'XS::APItest'
=>
'0.39'
,
'diagnostics'
=>
'1.29'
,
'feature'
=>
'1.28'
,
'overload'
=>
'1.19'
,
'utf8'
=>
'1.10'
,
},
removed
=> {
'Version::Requirements'
=> 1,
}
},
5.
017001
=> {
delta_from
=> 5.017,
changed
=> {
'App::Prove'
=>
'3.25'
,
'App::Prove::State'
=>
'3.25'
,
'App::Prove::State::Result'
=>
'3.25'
,
'App::Prove::State::Result::Test'
=>
'3.25'
,
'Archive::Extract'
=>
'0.60'
,
'Archive::Tar'
=>
'1.88'
,
'Archive::Tar::Constant'
=>
'1.88'
,
'Archive::Tar::File'
=>
'1.88'
,
'B'
=>
'1.36'
,
'B::Deparse'
=>
'1.15'
,
'CPAN::Meta'
=>
'2.120921'
,
'CPAN::Meta::Converter'
=>
'2.120921'
,
'CPAN::Meta::Feature'
=>
'2.120921'
,
'CPAN::Meta::History'
=>
'2.120921'
,
'CPAN::Meta::Prereqs'
=>
'2.120921'
,
'CPAN::Meta::Requirements'
=>
'2.122'
,
'CPAN::Meta::Spec'
=>
'2.120921'
,
'CPAN::Meta::Validator'
=>
'2.120921'
,
'CPAN::Meta::YAML'
=>
'0.008'
,
'CPANPLUS'
=>
'0.9130'
,
'CPANPLUS::Config::HomeEnv'
=>
'0.04'
,
'CPANPLUS::Internals'
=>
'0.9130'
,
'CPANPLUS::Shell::Default'
=>
'0.9130'
,
'Class::Struct'
=>
'0.64'
,
'Compress::Raw::Bzip2'
=>
'2.052'
,
'Compress::Raw::Zlib'
=>
'2.054'
,
'Compress::Zlib'
=>
'2.052'
,
'Digest::MD5'
=>
'2.52'
,
'DynaLoader'
=>
'1.15'
,
'ExtUtils::CBuilder'
=>
'0.280208'
,
'ExtUtils::CBuilder::Base'
=>
'0.280208'
,
'ExtUtils::CBuilder::Platform::Unix'
=>
'0.280208'
,
'ExtUtils::CBuilder::Platform::VMS'
=>
'0.280208'
,
'ExtUtils::CBuilder::Platform::Windows'
=>
'0.280208'
,
'ExtUtils::CBuilder::Platform::Windows::BCC'
=>
'0.280208'
,
'ExtUtils::CBuilder::Platform::Windows::GCC'
=>
'0.280208'
,
'ExtUtils::CBuilder::Platform::Windows::MSVC'
=>
'0.280208'
,
'ExtUtils::CBuilder::Platform::aix'
=>
'0.280208'
,
'ExtUtils::CBuilder::Platform::cygwin'
=>
'0.280208'
,
'ExtUtils::CBuilder::Platform::darwin'
=>
'0.280208'
,
'ExtUtils::CBuilder::Platform::dec_osf'
=>
'0.280208'
,
'ExtUtils::CBuilder::Platform::os2'
=>
'0.280208'
,
'Fatal'
=>
'2.11'
,
'File::DosGlob'
=>
'1.08'
,
'File::Fetch'
=>
'0.34'
,
'File::Spec::Unix'
=>
'3.39_03'
,
'Filter::Util::Call'
=>
'1.45'
,
'HTTP::Tiny'
=>
'0.022'
,
'IO'
=>
'1.25_07'
,
'IO::Compress::Adapter::Bzip2'
=>
'2.052'
,
'IO::Compress::Adapter::Deflate'
=>
'2.052'
,
'IO::Compress::Adapter::Identity'
=>
'2.052'
,
'IO::Compress::Base'
=>
'2.052'
,
'IO::Compress::Base::Common'
=>
'2.052'
,
'IO::Compress::Bzip2'
=>
'2.052'
,
'IO::Compress::Deflate'
=>
'2.052'
,
'IO::Compress::Gzip'
=>
'2.052'
,
'IO::Compress::Gzip::Constants'
=>
'2.052'
,
'IO::Compress::RawDeflate'
=>
'2.052'
,
'IO::Compress::Zip'
=>
'2.052'
,
'IO::Compress::Zip::Constants'
=>
'2.052'
,
'IO::Compress::Zlib::Constants'
=>
'2.052'
,
'IO::Compress::Zlib::Extra'
=>
'2.052'
,
'IO::Uncompress::Adapter::Bunzip2'
=>
'2.052'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.052'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.052'
,
'IO::Uncompress::AnyInflate'
=>
'2.052'
,
'IO::Uncompress::AnyUncompress'
=>
'2.052'
,
'IO::Uncompress::Base'
=>
'2.052'
,
'IO::Uncompress::Bunzip2'
=>
'2.052'
,
'IO::Uncompress::Gunzip'
=>
'2.052'
,
'IO::Uncompress::Inflate'
=>
'2.052'
,
'IO::Uncompress::RawInflate'
=>
'2.052'
,
'IO::Uncompress::Unzip'
=>
'2.052'
,
'IPC::Cmd'
=>
'0.78'
,
'List::Util'
=>
'1.25'
,
'List::Util::XS'
=>
'1.25'
,
'Locale::Codes'
=>
'3.22'
,
'Locale::Codes::Constants'
=>
'3.22'
,
'Locale::Codes::Country'
=>
'3.22'
,
'Locale::Codes::Country_Codes'
=>
'3.22'
,
'Locale::Codes::Country_Retired'
=>
'3.22'
,
'Locale::Codes::Currency'
=>
'3.22'
,
'Locale::Codes::Currency_Codes'
=>
'3.22'
,
'Locale::Codes::Currency_Retired'
=>
'3.22'
,
'Locale::Codes::LangExt'
=>
'3.22'
,
'Locale::Codes::LangExt_Codes'
=>
'3.22'
,
'Locale::Codes::LangExt_Retired'
=>
'3.22'
,
'Locale::Codes::LangFam'
=>
'3.22'
,
'Locale::Codes::LangFam_Codes'
=>
'3.22'
,
'Locale::Codes::LangFam_Retired'
=>
'3.22'
,
'Locale::Codes::LangVar'
=>
'3.22'
,
'Locale::Codes::LangVar_Codes'
=>
'3.22'
,
'Locale::Codes::LangVar_Retired'
=>
'3.22'
,
'Locale::Codes::Language'
=>
'3.22'
,
'Locale::Codes::Language_Codes'
=>
'3.22'
,
'Locale::Codes::Language_Retired'
=>
'3.22'
,
'Locale::Codes::Script'
=>
'3.22'
,
'Locale::Codes::Script_Codes'
=>
'3.22'
,
'Locale::Codes::Script_Retired'
=>
'3.22'
,
'Locale::Country'
=>
'3.22'
,
'Locale::Currency'
=>
'3.22'
,
'Locale::Language'
=>
'3.22'
,
'Locale::Script'
=>
'3.22'
,
'Memoize'
=>
'1.03'
,
'Memoize::AnyDBM_File'
=>
'1.03'
,
'Memoize::Expire'
=>
'1.03'
,
'Memoize::ExpireFile'
=>
'1.03'
,
'Memoize::ExpireTest'
=>
'1.03'
,
'Memoize::NDBM_File'
=>
'1.03'
,
'Memoize::SDBM_File'
=>
'1.03'
,
'Memoize::Storable'
=>
'1.03'
,
'Module::Build'
=>
'0.40'
,
'Module::Build::Base'
=>
'0.40'
,
'Module::Build::Compat'
=>
'0.40'
,
'Module::Build::Config'
=>
'0.40'
,
'Module::Build::Cookbook'
=>
'0.40'
,
'Module::Build::Dumper'
=>
'0.40'
,
'Module::Build::ModuleInfo'
=>
'0.40'
,
'Module::Build::Notes'
=>
'0.40'
,
'Module::Build::PPMMaker'
=>
'0.40'
,
'Module::Build::Platform::Amiga'
=>
'0.40'
,
'Module::Build::Platform::Default'
=>
'0.40'
,
'Module::Build::Platform::EBCDIC'
=>
'0.40'
,
'Module::Build::Platform::MPEiX'
=>
'0.40'
,
'Module::Build::Platform::MacOS'
=>
'0.40'
,
'Module::Build::Platform::RiscOS'
=>
'0.40'
,
'Module::Build::Platform::Unix'
=>
'0.40'
,
'Module::Build::Platform::VMS'
=>
'0.40'
,
'Module::Build::Platform::VOS'
=>
'0.40'
,
'Module::Build::Platform::Windows'
=>
'0.40'
,
'Module::Build::Platform::aix'
=>
'0.40'
,
'Module::Build::Platform::cygwin'
=>
'0.40'
,
'Module::Build::Platform::darwin'
=>
'0.40'
,
'Module::Build::Platform::os2'
=>
'0.40'
,
'Module::Build::PodParser'
=>
'0.40'
,
'Module::CoreList'
=>
'2.68'
,
'Module::Load::Conditional'
=>
'0.50'
,
'Object::Accessor'
=>
'0.44'
,
'POSIX'
=>
'1.31'
,
'Params::Check'
=>
'0.36'
,
'Parse::CPAN::Meta'
=>
'1.4404'
,
'PerlIO::mmap'
=>
'0.011'
,
'PerlIO::via::QuotedPrint'
=>
'0.07'
,
'Pod::Html'
=>
'1.16'
,
'Pod::Man'
=>
'2.26'
,
'Pod::Text'
=>
'3.16'
,
'Safe'
=>
'2.33_01'
,
'Scalar::Util'
=>
'1.25'
,
'Search::Dict'
=>
'1.07'
,
'Storable'
=>
'2.36'
,
'TAP::Base'
=>
'3.25'
,
'TAP::Formatter::Base'
=>
'3.25'
,
'TAP::Formatter::Color'
=>
'3.25'
,
'TAP::Formatter::Console'
=>
'3.25'
,
'TAP::Formatter::Console::ParallelSession'
=>
'3.25'
,
'TAP::Formatter::Console::Session'
=>
'3.25'
,
'TAP::Formatter::File'
=>
'3.25'
,
'TAP::Formatter::File::Session'
=>
'3.25'
,
'TAP::Formatter::Session'
=>
'3.25'
,
'TAP::Harness'
=>
'3.25'
,
'TAP::Object'
=>
'3.25'
,
'TAP::Parser'
=>
'3.25'
,
'TAP::Parser::Aggregator'
=>
'3.25'
,
'TAP::Parser::Grammar'
=>
'3.25'
,
'TAP::Parser::Iterator'
=>
'3.25'
,
'TAP::Parser::Iterator::Array'
=>
'3.25'
,
'TAP::Parser::Iterator::Process'
=>
'3.25'
,
'TAP::Parser::Iterator::Stream'
=>
'3.25'
,
'TAP::Parser::IteratorFactory'
=>
'3.25'
,
'TAP::Parser::Multiplexer'
=>
'3.25'
,
'TAP::Parser::Result'
=>
'3.25'
,
'TAP::Parser::Result::Bailout'
=>
'3.25'
,
'TAP::Parser::Result::Comment'
=>
'3.25'
,
'TAP::Parser::Result::Plan'
=>
'3.25'
,
'TAP::Parser::Result::Pragma'
=>
'3.25'
,
'TAP::Parser::Result::Test'
=>
'3.25'
,
'TAP::Parser::Result::Unknown'
=>
'3.25'
,
'TAP::Parser::Result::Version'
=>
'3.25'
,
'TAP::Parser::Result::YAML'
=>
'3.25'
,
'TAP::Parser::ResultFactory'
=>
'3.25'
,
'TAP::Parser::Scheduler'
=>
'3.25'
,
'TAP::Parser::Scheduler::Job'
=>
'3.25'
,
'TAP::Parser::Scheduler::Spinner'
=>
'3.25'
,
'TAP::Parser::Source'
=>
'3.25'
,
'TAP::Parser::SourceHandler'
=>
'3.25'
,
'TAP::Parser::SourceHandler::Executable'
=>
'3.25'
,
'TAP::Parser::SourceHandler::File'
=>
'3.25'
,
'TAP::Parser::SourceHandler::Handle'
=>
'3.25'
,
'TAP::Parser::SourceHandler::Perl'
=>
'3.25'
,
'TAP::Parser::SourceHandler::RawTAP'
=>
'3.25'
,
'TAP::Parser::Utils'
=>
'3.25'
,
'TAP::Parser::YAMLish::Reader'
=>
'3.25'
,
'TAP::Parser::YAMLish::Writer'
=>
'3.25'
,
'Term::ANSIColor'
=>
'3.02'
,
'Test::Harness'
=>
'3.25'
,
'Unicode'
=>
'6.2.0'
,
'Unicode::UCD'
=>
'0.44'
,
'XS::APItest'
=>
'0.40'
,
'_charnames'
=>
'1.32'
,
'attributes'
=>
'0.2'
,
'autodie'
=>
'2.11'
,
'autodie::exception'
=>
'2.11'
,
'autodie::exception::system'
=>
'2.11'
,
'autodie::hints'
=>
'2.11'
,
'bigint'
=>
'0.30'
,
'charnames'
=>
'1.32'
,
'feature'
=>
'1.29'
,
'inc::latest'
=>
'0.40'
,
'perlfaq'
=>
'5.0150040'
,
're'
=>
'0.20'
,
},
removed
=> {
'List::Util::PP'
=> 1,
'Scalar::Util::PP'
=> 1,
}
},
5.
017002
=> {
delta_from
=> 5.017001,
changed
=> {
'App::Prove'
=>
'3.25_01'
,
'App::Prove::State'
=>
'3.25_01'
,
'App::Prove::State::Result'
=>
'3.25_01'
,
'App::Prove::State::Result::Test'
=>
'3.25_01'
,
'B::Concise'
=>
'0.91'
,
'Compress::Raw::Bzip2'
=>
'2.05201'
,
'Compress::Raw::Zlib'
=>
'2.05401'
,
'Exporter'
=>
'5.67'
,
'Exporter::Heavy'
=>
'5.67'
,
'Fatal'
=>
'2.12'
,
'File::Fetch'
=>
'0.36'
,
'File::stat'
=>
'1.07'
,
'IO'
=>
'1.25_08'
,
'IO::Socket'
=>
'1.35'
,
'Module::CoreList'
=>
'2.69'
,
'PerlIO::scalar'
=>
'0.15'
,
'Socket'
=>
'2.002'
,
'Storable'
=>
'2.37'
,
'TAP::Base'
=>
'3.25_01'
,
'TAP::Formatter::Base'
=>
'3.25_01'
,
'TAP::Formatter::Color'
=>
'3.25_01'
,
'TAP::Formatter::Console'
=>
'3.25_01'
,
'TAP::Formatter::Console::ParallelSession'
=>
'3.25_01'
,
'TAP::Formatter::Console::Session'
=>
'3.25_01'
,
'TAP::Formatter::File'
=>
'3.25_01'
,
'TAP::Formatter::File::Session'
=>
'3.25_01'
,
'TAP::Formatter::Session'
=>
'3.25_01'
,
'TAP::Harness'
=>
'3.25_01'
,
'TAP::Object'
=>
'3.25_01'
,
'TAP::Parser'
=>
'3.25_01'
,
'TAP::Parser::Aggregator'
=>
'3.25_01'
,
'TAP::Parser::Grammar'
=>
'3.25_01'
,
'TAP::Parser::Iterator'
=>
'3.25_01'
,
'TAP::Parser::Iterator::Array'
=>
'3.25_01'
,
'TAP::Parser::Iterator::Process'
=>
'3.25_01'
,
'TAP::Parser::Iterator::Stream'
=>
'3.25_01'
,
'TAP::Parser::IteratorFactory'
=>
'3.25_01'
,
'TAP::Parser::Multiplexer'
=>
'3.25_01'
,
'TAP::Parser::Result'
=>
'3.25_01'
,
'TAP::Parser::Result::Bailout'
=>
'3.25_01'
,
'TAP::Parser::Result::Comment'
=>
'3.25_01'
,
'TAP::Parser::Result::Plan'
=>
'3.25_01'
,
'TAP::Parser::Result::Pragma'
=>
'3.25_01'
,
'TAP::Parser::Result::Test'
=>
'3.25_01'
,
'TAP::Parser::Result::Unknown'
=>
'3.25_01'
,
'TAP::Parser::Result::Version'
=>
'3.25_01'
,
'TAP::Parser::Result::YAML'
=>
'3.25_01'
,
'TAP::Parser::ResultFactory'
=>
'3.25_01'
,
'TAP::Parser::Scheduler'
=>
'3.25_01'
,
'TAP::Parser::Scheduler::Job'
=>
'3.25_01'
,
'TAP::Parser::Scheduler::Spinner'
=>
'3.25_01'
,
'TAP::Parser::Source'
=>
'3.25_01'
,
'TAP::Parser::SourceHandler'
=>
'3.25_01'
,
'TAP::Parser::SourceHandler::Executable'
=>
'3.25_01'
,
'TAP::Parser::SourceHandler::File'
=>
'3.25_01'
,
'TAP::Parser::SourceHandler::Handle'
=>
'3.25_01'
,
'TAP::Parser::SourceHandler::Perl'
=>
'3.25_01'
,
'TAP::Parser::SourceHandler::RawTAP'
=>
'3.25_01'
,
'TAP::Parser::Utils'
=>
'3.25_01'
,
'TAP::Parser::YAMLish::Reader'
=>
'3.25_01'
,
'TAP::Parser::YAMLish::Writer'
=>
'3.25_01'
,
'Test::Harness'
=>
'3.25_01'
,
'Tie::StdHandle'
=>
'4.3'
,
'XS::APItest'
=>
'0.41'
,
'autodie'
=>
'2.12'
,
'autodie::exception'
=>
'2.12'
,
'autodie::exception::system'
=>
'2.12'
,
'autodie::hints'
=>
'2.12'
,
'diagnostics'
=>
'1.30'
,
'overload'
=>
'1.20'
,
're'
=>
'0.21'
,
'vars'
=>
'1.03'
,
},
removed
=> {
}
},
5.
017003
=> {
delta_from
=> 5.017002,
changed
=> {
'B'
=>
'1.37'
,
'B::Concise'
=>
'0.92'
,
'B::Debug'
=>
'1.18'
,
'B::Deparse'
=>
'1.16'
,
'CGI'
=>
'3.60'
,
'Compress::Raw::Bzip2'
=>
'2.055'
,
'Compress::Raw::Zlib'
=>
'2.056'
,
'Compress::Zlib'
=>
'2.055'
,
'Data::Dumper'
=>
'2.135_07'
,
'Devel::Peek'
=>
'1.09'
,
'Encode'
=>
'2.47'
,
'Encode::Alias'
=>
'2.16'
,
'Encode::GSM0338'
=>
'2.02'
,
'Encode::Unicode::UTF7'
=>
'2.06'
,
'IO::Compress::Adapter::Bzip2'
=>
'2.055'
,
'IO::Compress::Adapter::Deflate'
=>
'2.055'
,
'IO::Compress::Adapter::Identity'
=>
'2.055'
,
'IO::Compress::Base'
=>
'2.055'
,
'IO::Compress::Base::Common'
=>
'2.055'
,
'IO::Compress::Bzip2'
=>
'2.055'
,
'IO::Compress::Deflate'
=>
'2.055'
,
'IO::Compress::Gzip'
=>
'2.055'
,
'IO::Compress::Gzip::Constants'
=>
'2.055'
,
'IO::Compress::RawDeflate'
=>
'2.055'
,
'IO::Compress::Zip'
=>
'2.055'
,
'IO::Compress::Zip::Constants'
=>
'2.055'
,
'IO::Compress::Zlib::Constants'
=>
'2.055'
,
'IO::Compress::Zlib::Extra'
=>
'2.055'
,
'IO::Uncompress::Adapter::Bunzip2'
=>
'2.055'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.055'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.055'
,
'IO::Uncompress::AnyInflate'
=>
'2.055'
,
'IO::Uncompress::AnyUncompress'
=>
'2.055'
,
'IO::Uncompress::Base'
=>
'2.055'
,
'IO::Uncompress::Bunzip2'
=>
'2.055'
,
'IO::Uncompress::Gunzip'
=>
'2.055'
,
'IO::Uncompress::Inflate'
=>
'2.055'
,
'IO::Uncompress::RawInflate'
=>
'2.055'
,
'IO::Uncompress::Unzip'
=>
'2.055'
,
'Module::Build'
=>
'0.4003'
,
'Module::Build::Base'
=>
'0.4003'
,
'Module::Build::Compat'
=>
'0.4003'
,
'Module::Build::Config'
=>
'0.4003'
,
'Module::Build::Cookbook'
=>
'0.4003'
,
'Module::Build::Dumper'
=>
'0.4003'
,
'Module::Build::ModuleInfo'
=>
'0.4003'
,
'Module::Build::Notes'
=>
'0.4003'
,
'Module::Build::PPMMaker'
=>
'0.4003'
,
'Module::Build::Platform::Amiga'
=>
'0.4003'
,
'Module::Build::Platform::Default'
=>
'0.4003'
,
'Module::Build::Platform::EBCDIC'
=>
'0.4003'
,
'Module::Build::Platform::MPEiX'
=>
'0.4003'
,
'Module::Build::Platform::MacOS'
=>
'0.4003'
,
'Module::Build::Platform::RiscOS'
=>
'0.4003'
,
'Module::Build::Platform::Unix'
=>
'0.4003'
,
'Module::Build::Platform::VMS'
=>
'0.4003'
,
'Module::Build::Platform::VOS'
=>
'0.4003'
,
'Module::Build::Platform::Windows'
=>
'0.4003'
,
'Module::Build::Platform::aix'
=>
'0.4003'
,
'Module::Build::Platform::cygwin'
=>
'0.4003'
,
'Module::Build::Platform::darwin'
=>
'0.4003'
,
'Module::Build::Platform::os2'
=>
'0.4003'
,
'Module::Build::PodParser'
=>
'0.4003'
,
'Module::CoreList'
=>
'2.71'
,
'Module::CoreList::TieHashDelta'
=>
'2.71'
,
'Module::Load::Conditional'
=>
'0.54'
,
'Module::Metadata'
=>
'1.000011'
,
'Module::Pluggable'
=>
'4.3'
,
'Module::Pluggable::Object'
=>
'4.3'
,
'Pod::Simple'
=>
'3.23'
,
'Pod::Simple::BlackBox'
=>
'3.23'
,
'Pod::Simple::Checker'
=>
'3.23'
,
'Pod::Simple::Debug'
=>
'3.23'
,
'Pod::Simple::DumpAsText'
=>
'3.23'
,
'Pod::Simple::DumpAsXML'
=>
'3.23'
,
'Pod::Simple::HTML'
=>
'3.23'
,
'Pod::Simple::HTMLBatch'
=>
'3.23'
,
'Pod::Simple::LinkSection'
=>
'3.23'
,
'Pod::Simple::Methody'
=>
'3.23'
,
'Pod::Simple::Progress'
=>
'3.23'
,
'Pod::Simple::PullParser'
=>
'3.23'
,
'Pod::Simple::PullParserEndToken'
=>
'3.23'
,
'Pod::Simple::PullParserStartToken'
=>
'3.23'
,
'Pod::Simple::PullParserTextToken'
=>
'3.23'
,
'Pod::Simple::PullParserToken'
=>
'3.23'
,
'Pod::Simple::RTF'
=>
'3.23'
,
'Pod::Simple::Search'
=>
'3.23'
,
'Pod::Simple::SimpleTree'
=>
'3.23'
,
'Pod::Simple::Text'
=>
'3.23'
,
'Pod::Simple::TextContent'
=>
'3.23'
,
'Pod::Simple::TiedOutFH'
=>
'3.23'
,
'Pod::Simple::Transcode'
=>
'3.23'
,
'Pod::Simple::TranscodeDumb'
=>
'3.23'
,
'Pod::Simple::TranscodeSmart'
=>
'3.23'
,
'Pod::Simple::XHTML'
=>
'3.23'
,
'Pod::Simple::XMLOutStream'
=>
'3.23'
,
'Socket'
=>
'2.004'
,
'Storable'
=>
'2.38'
,
'Sys::Syslog'
=>
'0.31'
,
'Term::ReadLine'
=>
'1.10'
,
'Text::Tabs'
=>
'2012.0818'
,
'Text::Wrap'
=>
'2012.0818'
,
'Time::Local'
=>
'1.2300'
,
'Unicode::UCD'
=>
'0.45'
,
'Win32'
=>
'0.45'
,
'Win32CORE'
=>
'0.03'
,
'XS::APItest'
=>
'0.42'
,
'inc::latest'
=>
'0.4003'
,
'perlfaq'
=>
'5.0150041'
,
're'
=>
'0.22'
,
},
removed
=> {
}
},
5.
017004
=> {
delta_from
=> 5.017003,
changed
=> {
'Archive::Tar'
=>
'1.90'
,
'Archive::Tar::Constant'
=>
'1.90'
,
'Archive::Tar::File'
=>
'1.90'
,
'B'
=>
'1.38'
,
'B::Concise'
=>
'0.93'
,
'B::Deparse'
=>
'1.17'
,
'B::Xref'
=>
'1.04'
,
'CPANPLUS'
=>
'0.9131'
,
'CPANPLUS::Internals'
=>
'0.9131'
,
'CPANPLUS::Shell::Default'
=>
'0.9131'
,
'DB_File'
=>
'1.827'
,
'Devel::Peek'
=>
'1.10'
,
'DynaLoader'
=>
'1.16'
,
'Errno'
=>
'1.16'
,
'ExtUtils::ParseXS'
=>
'3.18'
,
'ExtUtils::ParseXS::Constants'
=>
'3.18'
,
'ExtUtils::ParseXS::CountLines'
=>
'3.18'
,
'ExtUtils::ParseXS::Utilities'
=>
'3.18'
,
'File::Copy'
=>
'2.24'
,
'File::Find'
=>
'1.22'
,
'IPC::Open3'
=>
'1.13'
,
'Locale::Codes'
=>
'3.23'
,
'Locale::Codes::Constants'
=>
'3.23'
,
'Locale::Codes::Country'
=>
'3.23'
,
'Locale::Codes::Country_Codes'
=>
'3.23'
,
'Locale::Codes::Country_Retired'
=>
'3.23'
,
'Locale::Codes::Currency'
=>
'3.23'
,
'Locale::Codes::Currency_Codes'
=>
'3.23'
,
'Locale::Codes::Currency_Retired'
=>
'3.23'
,
'Locale::Codes::LangExt'
=>
'3.23'
,
'Locale::Codes::LangExt_Codes'
=>
'3.23'
,
'Locale::Codes::LangExt_Retired'
=>
'3.23'
,
'Locale::Codes::LangFam'
=>
'3.23'
,
'Locale::Codes::LangFam_Codes'
=>
'3.23'
,
'Locale::Codes::LangFam_Retired'
=>
'3.23'
,
'Locale::Codes::LangVar'
=>
'3.23'
,
'Locale::Codes::LangVar_Codes'
=>
'3.23'
,
'Locale::Codes::LangVar_Retired'
=>
'3.23'
,
'Locale::Codes::Language'
=>
'3.23'
,
'Locale::Codes::Language_Codes'
=>
'3.23'
,
'Locale::Codes::Language_Retired'
=>
'3.23'
,
'Locale::Codes::Script'
=>
'3.23'
,
'Locale::Codes::Script_Codes'
=>
'3.23'
,
'Locale::Codes::Script_Retired'
=>
'3.23'
,
'Locale::Country'
=>
'3.23'
,
'Locale::Currency'
=>
'3.23'
,
'Locale::Language'
=>
'3.23'
,
'Locale::Script'
=>
'3.23'
,
'Math::BigFloat::Trace'
=>
'0.30'
,
'Math::BigInt::Trace'
=>
'0.30'
,
'Module::CoreList'
=>
'2.73'
,
'Module::CoreList::TieHashDelta'
=>
'2.73'
,
'Opcode'
=>
'1.24'
,
'Socket'
=>
'2.006'
,
'Storable'
=>
'2.39'
,
'Sys::Syslog'
=>
'0.32'
,
'Unicode::UCD'
=>
'0.46'
,
'XS::APItest'
=>
'0.43'
,
'bignum'
=>
'0.30'
,
'bigrat'
=>
'0.30'
,
'constant'
=>
'1.24'
,
'feature'
=>
'1.30'
,
'threads::shared'
=>
'1.41'
,
'version'
=>
'0.9901'
,
'warnings'
=>
'1.14'
,
},
removed
=> {
}
},
5.
017005
=> {
delta_from
=> 5.017004,
changed
=> {
'AutoLoader'
=>
'5.73'
,
'B'
=>
'1.39'
,
'B::Deparse'
=>
'1.18'
,
'CPANPLUS'
=>
'0.9133'
,
'CPANPLUS::Internals'
=>
'0.9133'
,
'CPANPLUS::Shell::Default'
=>
'0.9133'
,
'Carp'
=>
'1.27'
,
'Carp::Heavy'
=>
'1.27'
,
'Data::Dumper'
=>
'2.136'
,
'Digest::SHA'
=>
'5.72'
,
'ExtUtils::CBuilder'
=>
'0.280209'
,
'ExtUtils::CBuilder::Base'
=>
'0.280209'
,
'ExtUtils::CBuilder::Platform::Unix'
=>
'0.280209'
,
'ExtUtils::CBuilder::Platform::VMS'
=>
'0.280209'
,
'ExtUtils::CBuilder::Platform::Windows'
=>
'0.280209'
,
'ExtUtils::CBuilder::Platform::Windows::BCC'
=>
'0.280209'
,
'ExtUtils::CBuilder::Platform::Windows::GCC'
=>
'0.280209'
,
'ExtUtils::CBuilder::Platform::Windows::MSVC'
=>
'0.280209'
,
'ExtUtils::CBuilder::Platform::aix'
=>
'0.280209'
,
'ExtUtils::CBuilder::Platform::cygwin'
=>
'0.280209'
,
'ExtUtils::CBuilder::Platform::darwin'
=>
'0.280209'
,
'ExtUtils::CBuilder::Platform::dec_osf'
=>
'0.280209'
,
'ExtUtils::CBuilder::Platform::os2'
=>
'0.280209'
,
'File::Copy'
=>
'2.25'
,
'File::Glob'
=>
'1.18'
,
'HTTP::Tiny'
=>
'0.024'
,
'Module::CoreList'
=>
'2.75'
,
'Module::CoreList::TieHashDelta'
=>
'2.75'
,
'PerlIO::encoding'
=>
'0.16'
,
'Unicode::Collate'
=>
'0.90'
,
'Unicode::Collate::Locale'
=>
'0.90'
,
'Unicode::Normalize'
=>
'1.15'
,
'Win32CORE'
=>
'0.04'
,
'XS::APItest'
=>
'0.44'
,
'attributes'
=>
'0.21'
,
'bigint'
=>
'0.31'
,
'bignum'
=>
'0.31'
,
'bigrat'
=>
'0.31'
,
'feature'
=>
'1.31'
,
'threads::shared'
=>
'1.42'
,
'warnings'
=>
'1.15'
,
},
removed
=> {
}
},
5.
017006
=> {
delta_from
=> 5.017005,
changed
=> {
'B'
=>
'1.40'
,
'B::Concise'
=>
'0.94'
,
'B::Deparse'
=>
'1.19'
,
'B::Xref'
=>
'1.05'
,
'CGI'
=>
'3.63'
,
'CGI::Util'
=>
'3.62'
,
'CPAN'
=>
'1.99_51'
,
'CPANPLUS::Dist::Build'
=>
'0.64'
,
'CPANPLUS::Dist::Build::Constants'
=>
'0.64'
,
'Carp'
=>
'1.28'
,
'Carp::Heavy'
=>
'1.28'
,
'Compress::Raw::Bzip2'
=>
'2.058'
,
'Compress::Raw::Zlib'
=>
'2.058'
,
'Compress::Zlib'
=>
'2.058'
,
'Data::Dumper'
=>
'2.137'
,
'Digest::SHA'
=>
'5.73'
,
'DynaLoader'
=>
'1.17'
,
'Env'
=>
'1.04'
,
'Errno'
=>
'1.17'
,
'ExtUtils::Manifest'
=>
'1.62'
,
'ExtUtils::Typemaps'
=>
'3.18'
,
'ExtUtils::Typemaps::Cmd'
=>
'3.18'
,
'ExtUtils::Typemaps::InputMap'
=>
'3.18'
,
'ExtUtils::Typemaps::OutputMap'
=>
'3.18'
,
'ExtUtils::Typemaps::Type'
=>
'3.18'
,
'Fatal'
=>
'2.13'
,
'File::Find'
=>
'1.23'
,
'Hash::Util'
=>
'0.13'
,
'IO::Compress::Adapter::Bzip2'
=>
'2.058'
,
'IO::Compress::Adapter::Deflate'
=>
'2.058'
,
'IO::Compress::Adapter::Identity'
=>
'2.058'
,
'IO::Compress::Base'
=>
'2.058'
,
'IO::Compress::Base::Common'
=>
'2.058'
,
'IO::Compress::Bzip2'
=>
'2.058'
,
'IO::Compress::Deflate'
=>
'2.058'
,
'IO::Compress::Gzip'
=>
'2.058'
,
'IO::Compress::Gzip::Constants'
=>
'2.058'
,
'IO::Compress::RawDeflate'
=>
'2.058'
,
'IO::Compress::Zip'
=>
'2.058'
,
'IO::Compress::Zip::Constants'
=>
'2.058'
,
'IO::Compress::Zlib::Constants'
=>
'2.058'
,
'IO::Compress::Zlib::Extra'
=>
'2.058'
,
'IO::Uncompress::Adapter::Bunzip2'
=>
'2.058'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.058'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.058'
,
'IO::Uncompress::AnyInflate'
=>
'2.058'
,
'IO::Uncompress::AnyUncompress'
=>
'2.058'
,
'IO::Uncompress::Base'
=>
'2.058'
,
'IO::Uncompress::Bunzip2'
=>
'2.058'
,
'IO::Uncompress::Gunzip'
=>
'2.058'
,
'IO::Uncompress::Inflate'
=>
'2.058'
,
'IO::Uncompress::RawInflate'
=>
'2.058'
,
'IO::Uncompress::Unzip'
=>
'2.058'
,
'Module::CoreList'
=>
'2.78'
,
'Module::CoreList::TieHashDelta'
=>
'2.77'
,
'Module::Pluggable'
=>
'4.5'
,
'Module::Pluggable::Object'
=>
'4.5'
,
'Opcode'
=>
'1.25'
,
'Sys::Hostname'
=>
'1.17'
,
'Term::UI'
=>
'0.32'
,
'Thread::Queue'
=>
'3.01'
,
'Tie::Hash::NamedCapture'
=>
'0.09'
,
'Unicode::Collate'
=>
'0.93'
,
'Unicode::Collate::CJK::Korean'
=>
'0.93'
,
'Unicode::Collate::Locale'
=>
'0.93'
,
'Unicode::Normalize'
=>
'1.16'
,
'Unicode::UCD'
=>
'0.47'
,
'XS::APItest'
=>
'0.46'
,
'_charnames'
=>
'1.33'
,
'autodie'
=>
'2.13'
,
'autodie::exception'
=>
'2.13'
,
'autodie::exception::system'
=>
'2.13'
,
'autodie::hints'
=>
'2.13'
,
'charnames'
=>
'1.33'
,
're'
=>
'0.23'
,
},
removed
=> {
}
},
5.
017007
=> {
delta_from
=> 5.017006,
changed
=> {
'B'
=>
'1.41'
,
'CPANPLUS::Dist::Build'
=>
'0.68'
,
'CPANPLUS::Dist::Build::Constants'
=>
'0.68'
,
'Compress::Raw::Bzip2'
=>
'2.059'
,
'Compress::Raw::Zlib'
=>
'2.059'
,
'Compress::Zlib'
=>
'2.059'
,
'Cwd'
=>
'3.39_03'
,
'Data::Dumper'
=>
'2.139'
,
'Devel::Peek'
=>
'1.11'
,
'Digest::SHA'
=>
'5.80'
,
'DynaLoader'
=>
'1.18'
,
'English'
=>
'1.06'
,
'Errno'
=>
'1.18'
,
'ExtUtils::Command::MM'
=>
'6.64'
,
'ExtUtils::Liblist'
=>
'6.64'
,
'ExtUtils::Liblist::Kid'
=>
'6.64'
,
'ExtUtils::MM'
=>
'6.64'
,
'ExtUtils::MM_AIX'
=>
'6.64'
,
'ExtUtils::MM_Any'
=>
'6.64'
,
'ExtUtils::MM_BeOS'
=>
'6.64'
,
'ExtUtils::MM_Cygwin'
=>
'6.64'
,
'ExtUtils::MM_DOS'
=>
'6.64'
,
'ExtUtils::MM_Darwin'
=>
'6.64'
,
'ExtUtils::MM_MacOS'
=>
'6.64'
,
'ExtUtils::MM_NW5'
=>
'6.64'
,
'ExtUtils::MM_OS2'
=>
'6.64'
,
'ExtUtils::MM_QNX'
=>
'6.64'
,
'ExtUtils::MM_UWIN'
=>
'6.64'
,
'ExtUtils::MM_Unix'
=>
'6.64'
,
'ExtUtils::MM_VMS'
=>
'6.64'
,
'ExtUtils::MM_VOS'
=>
'6.64'
,
'ExtUtils::MM_Win32'
=>
'6.64'
,
'ExtUtils::MM_Win95'
=>
'6.64'
,
'ExtUtils::MY'
=>
'6.64'
,
'ExtUtils::MakeMaker'
=>
'6.64'
,
'ExtUtils::MakeMaker::Config'
=>
'6.64'
,
'ExtUtils::Mkbootstrap'
=>
'6.64'
,
'ExtUtils::Mksymlists'
=>
'6.64'
,
'ExtUtils::testlib'
=>
'6.64'
,
'File::DosGlob'
=>
'1.09'
,
'File::Glob'
=>
'1.19'
,
'GDBM_File'
=>
'1.15'
,
'IO::Compress::Adapter::Bzip2'
=>
'2.059'
,
'IO::Compress::Adapter::Deflate'
=>
'2.059'
,
'IO::Compress::Adapter::Identity'
=>
'2.059'
,
'IO::Compress::Base'
=>
'2.059'
,
'IO::Compress::Base::Common'
=>
'2.059'
,
'IO::Compress::Bzip2'
=>
'2.059'
,
'IO::Compress::Deflate'
=>
'2.059'
,
'IO::Compress::Gzip'
=>
'2.059'
,
'IO::Compress::Gzip::Constants'
=>
'2.059'
,
'IO::Compress::RawDeflate'
=>
'2.059'
,
'IO::Compress::Zip'
=>
'2.059'
,
'IO::Compress::Zip::Constants'
=>
'2.059'
,
'IO::Compress::Zlib::Constants'
=>
'2.059'
,
'IO::Compress::Zlib::Extra'
=>
'2.059'
,
'IO::Uncompress::Adapter::Bunzip2'
=>
'2.059'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.059'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.059'
,
'IO::Uncompress::AnyInflate'
=>
'2.059'
,
'IO::Uncompress::AnyUncompress'
=>
'2.059'
,
'IO::Uncompress::Base'
=>
'2.059'
,
'IO::Uncompress::Bunzip2'
=>
'2.059'
,
'IO::Uncompress::Gunzip'
=>
'2.059'
,
'IO::Uncompress::Inflate'
=>
'2.059'
,
'IO::Uncompress::RawInflate'
=>
'2.059'
,
'IO::Uncompress::Unzip'
=>
'2.059'
,
'List::Util'
=>
'1.26'
,
'List::Util::XS'
=>
'1.26'
,
'Locale::Codes'
=>
'3.24'
,
'Locale::Codes::Constants'
=>
'3.24'
,
'Locale::Codes::Country'
=>
'3.24'
,
'Locale::Codes::Country_Codes'
=>
'3.24'
,
'Locale::Codes::Country_Retired'
=>
'3.24'
,
'Locale::Codes::Currency'
=>
'3.24'
,
'Locale::Codes::Currency_Codes'
=>
'3.24'
,
'Locale::Codes::Currency_Retired'
=>
'3.24'
,
'Locale::Codes::LangExt'
=>
'3.24'
,
'Locale::Codes::LangExt_Codes'
=>
'3.24'
,
'Locale::Codes::LangExt_Retired'
=>
'3.24'
,
'Locale::Codes::LangFam'
=>
'3.24'
,
'Locale::Codes::LangFam_Codes'
=>
'3.24'
,
'Locale::Codes::LangFam_Retired'
=>
'3.24'
,
'Locale::Codes::LangVar'
=>
'3.24'
,
'Locale::Codes::LangVar_Codes'
=>
'3.24'
,
'Locale::Codes::LangVar_Retired'
=>
'3.24'
,
'Locale::Codes::Language'
=>
'3.24'
,
'Locale::Codes::Language_Codes'
=>
'3.24'
,
'Locale::Codes::Language_Retired'
=>
'3.24'
,
'Locale::Codes::Script'
=>
'3.24'
,
'Locale::Codes::Script_Codes'
=>
'3.24'
,
'Locale::Codes::Script_Retired'
=>
'3.24'
,
'Locale::Country'
=>
'3.24'
,
'Locale::Currency'
=>
'3.24'
,
'Locale::Language'
=>
'3.24'
,
'Locale::Maketext'
=>
'1.23'
,
'Locale::Script'
=>
'3.24'
,
'Module::CoreList'
=>
'2.79'
,
'Module::CoreList::TieHashDelta'
=>
'2.79'
,
'POSIX'
=>
'1.32'
,
'Scalar::Util'
=>
'1.26'
,
'Socket'
=>
'2.006_001'
,
'Storable'
=>
'2.40'
,
'Term::ReadLine'
=>
'1.11'
,
'Unicode::Collate'
=>
'0.96'
,
'Unicode::Collate::CJK::Stroke'
=>
'0.94'
,
'Unicode::Collate::CJK::Zhuyin'
=>
'0.94'
,
'Unicode::Collate::Locale'
=>
'0.96'
,
'XS::APItest'
=>
'0.48'
,
'XS::Typemap'
=>
'0.09'
,
'_charnames'
=>
'1.34'
,
'charnames'
=>
'1.34'
,
'feature'
=>
'1.32'
,
'mro'
=>
'1.10'
,
'sigtrap'
=>
'1.07'
,
'sort'
=>
'2.02'
,
},
removed
=> {
}
},
5.
017008
=> {
delta_from
=> 5.017007,
changed
=> {
'Archive::Extract'
=>
'0.62'
,
'B'
=>
'1.42'
,
'B::Concise'
=>
'0.95'
,
'Compress::Raw::Bzip2'
=>
'2.060'
,
'Compress::Raw::Zlib'
=>
'2.060'
,
'Compress::Zlib'
=>
'2.060'
,
'Cwd'
=>
'3.40'
,
'Data::Dumper'
=>
'2.141'
,
'Digest::SHA'
=>
'5.81'
,
'ExtUtils::Install'
=>
'1.59'
,
'File::Fetch'
=>
'0.38'
,
'File::Path'
=>
'2.09'
,
'File::Spec'
=>
'3.40'
,
'File::Spec::Cygwin'
=>
'3.40'
,
'File::Spec::Epoc'
=>
'3.40'
,
'File::Spec::Functions'
=>
'3.40'
,
'File::Spec::Mac'
=>
'3.40'
,
'File::Spec::OS2'
=>
'3.40'
,
'File::Spec::Unix'
=>
'3.40'
,
'File::Spec::VMS'
=>
'3.40'
,
'File::Spec::Win32'
=>
'3.40'
,
'HTTP::Tiny'
=>
'0.025'
,
'Hash::Util'
=>
'0.14'
,
'I18N::LangTags'
=>
'0.39'
,
'I18N::LangTags::List'
=>
'0.39'
,
'I18N::Langinfo'
=>
'0.09'
,
'IO'
=>
'1.26'
,
'IO::Compress::Adapter::Bzip2'
=>
'2.060'
,
'IO::Compress::Adapter::Deflate'
=>
'2.060'
,
'IO::Compress::Adapter::Identity'
=>
'2.060'
,
'IO::Compress::Base'
=>
'2.060'
,
'IO::Compress::Base::Common'
=>
'2.060'
,
'IO::Compress::Bzip2'
=>
'2.060'
,
'IO::Compress::Deflate'
=>
'2.060'
,
'IO::Compress::Gzip'
=>
'2.060'
,
'IO::Compress::Gzip::Constants'
=>
'2.060'
,
'IO::Compress::RawDeflate'
=>
'2.060'
,
'IO::Compress::Zip'
=>
'2.060'
,
'IO::Compress::Zip::Constants'
=>
'2.060'
,
'IO::Compress::Zlib::Constants'
=>
'2.060'
,
'IO::Compress::Zlib::Extra'
=>
'2.060'
,
'IO::Uncompress::Adapter::Bunzip2'
=>
'2.060'
,
'IO::Uncompress::Adapter::Identity'
=>
'2.060'
,
'IO::Uncompress::Adapter::Inflate'
=>
'2.060'
,
'IO::Uncompress::AnyInflate'
=>
'2.060'
,
'IO::Uncompress::AnyUncompress'
=>
'2.060'
,
'IO::Uncompress::Base'
=>
'2.060'
,
'IO::Uncompress::Bunzip2'
=>
'2.060'
,
'IO::Uncompress::Gunzip'
=>
'2.060'
,
'IO::Uncompress::Inflate'
=>
'2.060'
,
'IO::Uncompress::RawInflate'
=>
'2.060'
,
'IO::Uncompress::Unzip'
=>
'2.060'
,
'List::Util'
=>
'1.27'
,
'List::Util::XS'
=>
'1.27'
,
'Module::CoreList'
=>
'2.80'
,
'Module::CoreList::TieHashDelta'
=>
'2.80'
,
'Pod::Html'
=>
'1.17'
,
'Pod::LaTeX'
=>
'0.61'
,
'Pod::Man'
=>
'2.27'
,
'Pod::Text'
=>
'3.17'
,
'Pod::Text::Color'
=>
'2.07'
,
'Pod::Text::Overstrike'
=>
'2.05'
,
'Pod::Text::Termcap'
=>
'2.07'
,
'Safe'
=>
'2.34'
,
'Scalar::Util'
=>
'1.27'
,
'Socket'
=>
'2.009'
,
'Term::ANSIColor'
=>
'4.02'
,
'Test'
=>
'1.26'
,
'Unicode::Collate'
=>
'0.97'
,
'XS::APItest'
=>
'0.51'
,
'XS::Typemap'
=>
'0.10'
,
'_charnames'
=>
'1.35'
,
'charnames'
=>
'1.35'
,
'constant'
=>
'1.25'
,
'diagnostics'
=>
'1.31'
,
'threads::shared'
=>
'1.43'
,
'warnings'
=>
'1.16'
,
},
removed
=> {
}
},
5.
017009
=> {
delta_from
=> 5.017008,
changed
=> {
'App::Cpan'
=>
'1.60_02'
,
'App::Prove'
=>
'3.26'
,
'App::Prove::State'
=>
'3.26'
,
'App::Prove::State::Result'
=>
'3.26'
,
'App::Prove::State::Result::Test'
=>
'3.26'
,
'Archive::Extract'
=>
'0.68'
,
'Attribute::Handlers'
=>
'0.94'
,
'B::Lint'
=>
'1.17'
,
'B::Lint::Debug'
=>
'1.17'
,
'Benchmark'
=>
'1.14'
,
'CPAN'
=>
'2.00'
,
'CPAN::Distribution'
=>
'2.00'
,
'CPAN::FirstTime'
=>
'5.5304'
,
'CPAN::Nox'
=>
'5.5001'
,
'CPANPLUS'
=>
'0.9135'
,
'CPANPLUS::Backend'
=>
'0.9135'
,
'CPANPLUS::Backend::RV'
=>
'0.9135'
,
'CPANPLUS::Config'
=>
'0.9135'
,
'CPANPLUS::Config::HomeEnv'
=>
'0.9135'
,
'CPANPLUS::Configure'
=>
'0.9135'
,
'CPANPLUS::Configure::Setup'
=>
'0.9135'
,
'CPANPLUS::Dist'
=>
'0.9135'
,
'CPANPLUS::Dist::Autobundle'
=>
'0.9135'
,
'CPANPLUS::Dist::Base'
=>
'0.9135'
,
'CPANPLUS::Dist::Build'
=>
'0.70'
,
'CPANPLUS::Dist::Build::Constants'
=>
'0.70'
,
'CPANPLUS::Dist::MM'
=>
'0.9135'
,
'CPANPLUS::Dist::Sample'
=>
'0.9135'
,
'CPANPLUS::Error'
=>
'0.9135'
,
'CPANPLUS::Internals'
=>
'0.9135'
,
'CPANPLUS::Internals::Constants'
=>
'0.9135'
,
'CPANPLUS::Internals::Constants::Report'
=>
'0.9135'
,
'CPANPLUS::Internals::Extract'
=>
'0.9135'
,
'CPANPLUS::Internals::Fetch'
=>
'0.9135'
,
'CPANPLUS::Internals::Report'
=>
'0.9135'
,
'CPANPLUS::Internals::Search'
=>
'0.9135'
,
'CPANPLUS::Internals::Source'
=>
'0.9135'
,
'CPANPLUS::Internals::Source::Memory'
=>
'0.9135'
,
'CPANPLUS::Internals::Source::SQLite'
=>
'0.9135'
,
'CPANPLUS::Internals::Source::SQLite::Tie'
=>
'0.9135'
,
'CPANPLUS::Internals::Utils'
=>
'0.9135'
,
'CPANPLUS::Internals::Utils::Autoflush'
=>
'0.9135'
,
'CPANPLUS::Module'
=>
'0.9135'
,
'CPANPLUS::Module::Author'
=>
'0.9135'
,
'CPANPLUS::Module::Author::Fake'
=>
'0.9135'
,
'CPANPLUS::Module::Checksums'
=>
'0.9135'
,
'CPANPLUS::Module::Fake'
=>
'0.9135'
,
'CPANPLUS::Module::Signature'
=>
'0.9135'
,
'CPANPLUS::Selfupdate'
=>
'0.9135'
,
'CPANPLUS::Shell'
=>
'0.9135'
,
'CPANPLUS::Shell::Classic'
=>
'0.9135'
,
'CPANPLUS::Shell::Default'
=>
'0.9135'
,
'CPANPLUS::Shell::Default::Plugins::CustomSource'
=>
'0.9135'
,
'CPANPLUS::Shell::Default::Plugins::Remote'
=>
'0.9135'
,
'CPANPLUS::Shell::Default::Plugins::Source'
=>
'0.9135'
,
'Config::Perl::V'
=>
'0.17'
,
'DBM_Filter'
=>
'0.05'
,
'Data::Dumper'
=>
'2.142'
,
'Digest::SHA'
=>
'5.82'
,
'Encode'
=>
'2.48'
,
'ExtUtils::Installed'
=>
'1.999003'
,
'ExtUtils::Manifest'
=>
'1.63'
,
'ExtUtils::ParseXS::Utilities'
=>
'3.19'
,
'ExtUtils::Typemaps'
=>
'3.19'
,
'File::CheckTree'
=>
'4.42'
,
'File::DosGlob'
=>
'1.10'
,
'File::Temp'
=>
'0.22_90'
,
'Filter::Simple'
=>
'0.89'
,
'IO'
=>
'1.27'
,
'Log::Message'
=>
'0.06'
,
'Log::Message::Config'
=>
'0.06'
,
'Log::Message::Handlers'
=>
'0.06'
,
'Log::Message::Item'
=>
'0.06'
,
'Log::Message::Simple'
=>
'0.10'
,
'Math::BigInt'
=>
'1.999'
,
'Module::CoreList'
=>
'2.82'
,
'Module::CoreList::TieHashDelta'
=>
'2.82'
,
'Module::Load'
=>
'0.24'
,
'Module::Pluggable'
=>
'4.6'
,
'Module::Pluggable::Object'
=>
'4.6'
,
'Object::Accessor'
=>
'0.46'
,
'PerlIO::scalar'
=>
'0.16'
,
'Pod::Checker'
=>
'1.60'
,
'Pod::Find'
=>
'1.60'
,
'Pod::Html'
=>
'1.18'
,
'Pod::InputObjects'
=>
'1.60'
,
'Pod::ParseUtils'
=>
'1.60'
,
'Pod::Parser'
=>
'1.60'
,
'Pod::Perldoc'
=>
'3.19'
,
'Pod::Perldoc::BaseTo'
=>
'3.19'
,
'Pod::Perldoc::GetOptsOO'
=>
'3.19'
,
'Pod::Perldoc::ToANSI'
=>
'3.19'
,
'Pod::Perldoc::ToChecker'
=>
'3.19'
,
'Pod::Perldoc::ToMan'
=>
'3.19'
,
'Pod::Perldoc::ToNroff'
=>
'3.19'
,
'Pod::Perldoc::ToPod'
=>
'3.19'
,
'Pod::Perldoc::ToRtf'
=>
'3.19'
,
'Pod::Perldoc::ToTerm'
=>
'3.19'
,
'Pod::Perldoc::ToText'
=>
'3.19'
,
'Pod::Perldoc::ToTk'
=>
'3.19'
,
'Pod::Perldoc::ToXml'
=>
'3.19'
,
'Pod::PlainText'
=>
'2.06'
,
'Pod::Select'
=>
'1.60'
,
'Pod::Usage'
=>
'1.61'
,
'SelfLoader'
=>
'1.21'
,
'TAP::Base'
=>
'3.26'
,
'TAP::Formatter::Base'
=>
'3.26'
,
'TAP::Formatter::Color'
=>
'3.26'
,
'TAP::Formatter::Console'
=>
'3.26'
,
'TAP::Formatter::Console::ParallelSession'
=>
'3.26'
,
'TAP::Formatter::Console::Session'
=>
'3.26'
,
'TAP::Formatter::File'
=>
'3.26'
,
'TAP::Formatter::File::Session'
=>
'3.26'
,
'TAP::Formatter::Session'
=>
'3.26'
,
'TAP::Harness'
=>
'3.26'
,
'TAP::Object'
=>
'3.26'
,
'TAP::Parser'
=>
'3.26'
,
'TAP::Parser::Aggregator'
=>
'3.26'
,
'TAP::Parser::Grammar'
=>
'3.26'
,
'TAP::Parser::Iterator'
=>
'3.26'
,
'TAP::Parser::Iterator::Array'
=>
'3.26'
,
'TAP::Parser::Iterator::Process'
=>
'3.26'
,
'TAP::Parser::Iterator::Stream'
=>
'3.26'
,
'TAP::Parser::IteratorFactory'
=>
'3.26'
,
'TAP::Parser::Multiplexer'
=>
'3.26'
,
'TAP::Parser::Result'
=>
'3.26'
,
'TAP::Parser::Result::Bailout'
=>
'3.26'
,
'TAP::Parser::Result::Comment'
=>
'3.26'
,
'TAP::Parser::Result::Plan'
=>
'3.26'
,
'TAP::Parser::Result::Pragma'
=>
'3.26'
,
'TAP::Parser::Result::Test'
=>
'3.26'
,
'TAP::Parser::Result::Unknown'
=>
'3.26'
,
'TAP::Parser::Result::Version'
=>
'3.26'
,
'TAP::Parser::Result::YAML'
=>
'3.26'
,
'TAP::Parser::ResultFactory'
=>
'3.26'
,
'TAP::Parser::Scheduler'
=>
'3.26'
,
'TAP::Parser::Scheduler::Job'
=>
'3.26'
,
'TAP::Parser::Scheduler::Spinner'
=>
'3.26'
,
'TAP::Parser::Source'
=>
'3.26'
,
'TAP::Parser::SourceHandler'
=>
'3.26'
,
'TAP::Parser::SourceHandler::Executable'
=>
'3.26'
,
'TAP::Parser::SourceHandler::File'
=>
'3.26'
,
'TAP::Parser::SourceHandler::Handle'
=>
'3.26'
,
'TAP::Parser::SourceHandler::Perl'
=>
'3.26'
,
'TAP::Parser::SourceHandler::RawTAP'
=>
'3.26'
,
'TAP::Parser::Utils'
=>
'3.26'
,
'TAP::Parser::YAMLish::Reader'
=>
'3.26'
,
'TAP::Parser::YAMLish::Writer'
=>
'3.26'
,
'Term::UI'
=>
'0.34'
,
'Test::Harness'
=>
'3.26'
,
'Text::Soundex'
=>
'3.04'
,
'Thread::Queue'
=>
'3.02'
,
'Unicode::UCD'
=>
'0.50'
,
'Win32'
=>
'0.46'
,
'Win32API::File'
=>
'0.1201'
,
'_charnames'
=>
'1.36'
,
'arybase'
=>
'0.06'
,
'bigint'
=>
'0.32'
,
'bignum'
=>
'0.32'
,
'charnames'
=>
'1.36'
,
'filetest'
=>
'1.03'
,
'locale'
=>
'1.02'
,
'overload'
=>
'1.21'
,
'warnings'
=>
'1.17'
,
},
removed
=> {
}
},
5.
017010
=> {
delta_from
=> 5.017009,
changed
=> {
'Benchmark'
=>
'1.15'
,
'Data::Dumper'
=>
'2.145'
,
'Digest::SHA'
=>
'5.84'
,
'Encode'
=>
'2.49'
,
'ExtUtils::Command::MM'
=>
'6.65_01'
,
'ExtUtils::Liblist'
=>
'6.65_01'
,
'ExtUtils::Liblist::Kid'
=>
'6.65_01'
,
'ExtUtils::MM'
=>
'6.65_01'
,
'ExtUtils::MM_AIX'
=>
'6.65_01'
,
'ExtUtils::MM_Any'
=>
'6.65_01'
,
'ExtUtils::MM_BeOS'
=>
'6.65_01'
,
'ExtUtils::MM_Cygwin'
=>
'6.65_01'
,
'ExtUtils::MM_DOS'
=>
'6.65_01'
,
'ExtUtils::MM_Darwin'
=>
'6.65_01'
,
'ExtUtils::MM_MacOS'
=>
'6.65_01'
,
'ExtUtils::MM_NW5'
=>
'6.65_01'
,
'ExtUtils::MM_OS2'
=>
'6.65_01'
,
'ExtUtils::MM_QNX'
=>
'6.65_01'
,
'ExtUtils::MM_UWIN'
=>
'6.65_01'
,
'ExtUtils::MM_Unix'
=>
'6.65_01'
,
'ExtUtils::MM_VMS'
=>
'6.65_01'
,
'ExtUtils::MM_VOS'
=>
'6.65_01'
,
'ExtUtils::MM_Win32'
=>
'6.65_01'
,
'ExtUtils::MM_Win95'
=>
'6.65_01'
,
'ExtUtils::MY'
=>
'6.65_01'
,
'ExtUtils::MakeMaker'
=>
'6.65_01'
,
'ExtUtils::MakeMaker::Config'
=>
'6.65_01'
,
'ExtUtils::Mkbootstrap'
=>
'6.65_01'
,
'ExtUtils::Mksymlists'
=>
'6.65_01'
,
'ExtUtils::testlib'
=>
'6.65_01'
,
'File::Copy'
=>
'2.26'
,
'File::Temp'
=>
'0.23'
,
'Getopt::Long'
=>
'2.39'
,
'Hash::Util'
=>
'0.15'
,
'I18N::Langinfo'
=>
'0.10'
,
'IPC::Cmd'
=>
'0.80'
,
'JSON::PP'
=>
'2.27202'
,
'Locale::Codes'
=>
'3.25'
,
'Locale::Codes::Constants'
=>
'3.25'
,
'Locale::Codes::Country'
=>
'3.25'
,
'Locale::Codes::Country_Codes'
=>
'3.25'
,
'Locale::Codes::Country_Retired'
=>
'3.25'
,
'Locale::Codes::Currency'
=>
'3.25'
,
'Locale::Codes::Currency_Codes'
=>
'3.25'
,
'Locale::Codes::Currency_Retired'
=>
'3.25'
,
'Locale::Codes::LangExt'
=>
'3.25'
,
'Locale::Codes::LangExt_Codes'
=>
'3.25'
,
'Locale::Codes::LangExt_Retired'
=>
'3.25'
,
'Locale::Codes::LangFam'
=>
'3.25'
,
'Locale::Codes::LangFam_Codes'
=>
'3.25'
,
'Locale::Codes::LangFam_Retired'
=>
'3.25'
,
'Locale::Codes::LangVar'
=>
'3.25'
,
'Locale::Codes::LangVar_Codes'
=>
'3.25'
,
'Locale::Codes::LangVar_Retired'
=>
'3.25'
,
'Locale::Codes::Language'
=>
'3.25'
,
'Locale::Codes::Language_Codes'
=>
'3.25'
,
'Locale::Codes::Language_Retired'
=>
'3.25'
,
'Locale::Codes::Script'
=>
'3.25'
,
'Locale::Codes::Script_Codes'
=>
'3.25'
,
'Locale::Codes::Script_Retired'
=>
'3.25'
,
'Locale::Country'
=>
'3.25'
,
'Locale::Currency'
=>
'3.25'
,
'Locale::Language'
=>
'3.25'
,
'Locale::Script'
=>
'3.25'
,
'Math::BigFloat'
=>
'1.998'
,
'Math::BigFloat::Trace'
=>
'0.32'
,
'Math::BigInt'
=>
'1.9991'
,
'Math::BigInt::CalcEmu'
=>
'1.998'
,
'Math::BigInt::Trace'
=>
'0.32'
,
'Math::BigRat'
=>
'0.2604'
,
'Module::CoreList'
=>
'2.84'
,
'Module::CoreList::TieHashDelta'
=>
'2.84'
,
'Module::Pluggable'
=>
'4.7'
,
'Net::Ping'
=>
'2.41'
,
'Perl::OSType'
=>
'1.003'
,
'Pod::Simple'
=>
'3.26'
,
'Pod::Simple::BlackBox'
=>
'3.26'
,
'Pod::Simple::Checker'
=>
'3.26'
,
'Pod::Simple::Debug'
=>
'3.26'
,
'Pod::Simple::DumpAsText'
=>
'3.26'
,
'Pod::Simple::DumpAsXML'
=>
'3.26'
,
'Pod::Simple::HTML'
=>
'3.26'
,
'Pod::Simple::HTMLBatch'
=>
'3.26'
,
'Pod::Simple::LinkSection'
=>
'3.26'
,
'Pod::Simple::Methody'
=>
'3.26'
,
'Pod::Simple::Progress'
=>
'3.26'
,
'Pod::Simple::PullParser'
=>
'3.26'
,
'Pod::Simple::PullParserEndToken'
=>
'3.26'
,
'Pod::Simple::PullParserStartToken'
=>
'3.26'
,
'Pod::Simple::PullParserTextToken'
=>
'3.26'
,
'Pod::Simple::PullParserToken'
=>
'3.26'
,
'Pod::Simple::RTF'
=>
'3.26'
,
'Pod::Simple::Search'
=>
'3.26'
,
'Pod::Simple::SimpleTree'
=>
'3.26'
,
'Pod::Simple::Text'
=>
'3.26'
,
'Pod::Simple::TextContent'
=>
'3.26'
,
'Pod::Simple::TiedOutFH'
=>
'3.26'
,
'Pod::Simple::Transcode'
=>
'3.26'
,
'Pod::Simple::TranscodeDumb'
=>
'3.26'
,
'Pod::Simple::TranscodeSmart'
=>
'3.26'
,
'Pod::Simple::XHTML'
=>
'3.26'
,
'Pod::Simple::XMLOutStream'
=>
'3.26'
,
'Safe'
=>
'2.35'
,
'Term::ReadLine'
=>
'1.12'
,
'Text::ParseWords'
=>
'3.28'
,
'Tie::File'
=>
'0.99'
,
'Unicode::UCD'
=>
'0.51'
,
'Win32'
=>
'0.47'
,
'bigint'
=>
'0.33'
,
'bignum'
=>
'0.33'
,
'bigrat'
=>
'0.33'
,
'constant'
=>
'1.27'
,
'perlfaq'
=>
'5.0150042'
,
'version'
=>
'0.9902'
,
},
removed
=> {
}
},
);
for
my
$version
(
sort
{
$a
<=>
$b
}
keys
%delta
) {
my
$data
=
$delta
{
$version
};
tie
%{
$version
{
$version
}},
'Module::CoreList::TieHashDelta'
,
$data
->{changed},
$data
->{removed},
$data
->{delta_from} ?
$version
{
$data
->{delta_from}} :
undef
;
}
%deprecated
= (
5.
011
=> {
'Class::ISA'
=>
'1'
,
'Pod::Plainer'
=>
'1'
,
'Shell'
=>
'1'
,
'Switch'
=>
'1'
,
},
5.
011001
=> {
'Class::ISA'
=>
'1'
,
'Pod::Plainer'
=>
'1'
,
'Shell'
=>
'1'
,
'Switch'
=>
'1'
,
},
5.
011002
=> {
'Class::ISA'
=>
'1'
,
'Pod::Plainer'
=>
'1'
,
'Shell'
=>
'1'
,
'Switch'
=>
'1'
,
},
5.
011003
=> {
'Class::ISA'
=>
'1'
,
'Pod::Plainer'
=>
'1'
,
'Shell'
=>
'1'
,
'Switch'
=>
'1'
,
},
5.
011004
=> {
'Class::ISA'
=>
'1'
,
'Pod::Plainer'
=>
'1'
,
'Shell'
=>
'1'
,
'Switch'
=>
'1'
,
},
5.
011005
=> {
'Class::ISA'
=>
'1'
,
'Pod::Plainer'
=>
'1'
,
'Shell'
=>
'1'
,
'Switch'
=>
'1'
,
},
5.
012000
=> {
'Class::ISA'
=>
'1'
,
'Pod::Plainer'
=>
'1'
,
'Shell'
=>
'1'
,
'Switch'
=>
'1'
,
},
5.
013000
=> {
'Class::ISA'
=>
'1'
,
'Pod::Plainer'
=>
'1'
,
'Shell'
=>
'1'
,
'Switch'
=>
'1'
,
},
5.
012001
=> {
'Class::ISA'
=>
'1'
,
'Pod::Plainer'
=>
'1'
,
'Shell'
=>
'1'
,
'Switch'
=>
'1'
,
},
5.
013001
=> {
'Shell'
=>
'1'
,
},
5.
013002
=> {
'Shell'
=>
'1'
,
},
5.
013003
=> {
'Shell'
=>
'1'
,
},
5.
013004
=> {
'Shell'
=>
'1'
,
},
5.
012002
=> {
'Class::ISA'
=>
'1'
,
'Pod::Plainer'
=>
'1'
,
'Shell'
=>
'1'
,
'Switch'
=>
'1'
,
},
5.
013005
=> {
'Shell'
=>
'1'
,
},
5.
013006
=> {
'Shell'
=>
'1'
,
},
5.
013007
=> {
'Shell'
=>
'1'
,
},
5.
013008
=> {
'Shell'
=>
'1'
,
},
5.
012003
=> {
'Class::ISA'
=>
'1'
,
'Pod::Plainer'
=>
'1'
,
'Shell'
=>
'1'
,
'Switch'
=>
'1'
,
},
5.
013009
=> {
'Shell'
=>
'1'
,
},
5.
013010
=> {
'Shell'
=>
'1'
,
},
5.
013011
=> {
'Shell'
=>
'1'
,
},
5.
014000
=> {
'Shell'
=>
'1'
,
},
5.
012004
=> {
'Class::ISA'
=>
'1'
,
'Pod::Plainer'
=>
'1'
,
'Shell'
=>
'1'
,
'Switch'
=>
'1'
,
},
5.
012005
=> {
'Class::ISA'
=>
'1'
,
'Pod::Plainer'
=>
'1'
,
'Shell'
=>
'1'
,
'Switch'
=>
'1'
,
},
5.
014001
=> {
'Shell'
=>
'1'
,
},
5.
015000
=> {
'Devel::DProf'
=>
'1'
,
},
5.
015000
=> {
},
5.
015001
=> {
},
5.
015002
=> {
},
5.
014002
=> {
'Shell'
=>
'1'
,
},
5.
015003
=> {
},
5.
015004
=> {
},
5.
015005
=> {
},
5.
015006
=> {
},
5.
015007
=> {
},
5.
015008
=> {
},
5.
015009
=> {
},
5.
016000
=> {
},
5.
016001
=> {
},
5.
016002
=> {
},
5.
017000
=> {
},
5.
017001
=> {
},
5.
017002
=> {
},
5.
017003
=> {
},
5.
017004
=> {
},
5.
014003
=> {
'Shell'
=>
'1'
,
},
5.
017005
=> {
},
5.
017006
=> {
},
5.
017007
=> {
},
5.
017008
=> {
'Pod::LaTeX'
=>
'1'
,
},
5.
017009
=> {
'Archive::Extract'
=>
'1'
,
'B::Lint'
=>
'1'
,
'B::Lint::Debug'
=>
'1'
,
'CPANPLUS'
=>
'1'
,
'CPANPLUS::Backend'
=>
'1'
,
'CPANPLUS::Backend::RV'
=>
'1'
,
'CPANPLUS::Config'
=>
'1'
,
'CPANPLUS::Config::HomeEnv'
=>
'1'
,
'CPANPLUS::Configure'
=>
'1'
,
'CPANPLUS::Configure::Setup'
=>
'1'
,
'CPANPLUS::Dist'
=>
'1'
,
'CPANPLUS::Dist::Autobundle'
=>
'1'
,
'CPANPLUS::Dist::Base'
=>
'1'
,
'CPANPLUS::Dist::Build'
=>
'1'
,
'CPANPLUS::Dist::Build::Constants'
=>
'1'
,
'CPANPLUS::Dist::MM'
=>
'1'
,
'CPANPLUS::Dist::Sample'
=>
'1'
,
'CPANPLUS::Error'
=>
'1'
,
'CPANPLUS::Internals'
=>
'1'
,
'CPANPLUS::Internals::Constants'
=>
'1'
,
'CPANPLUS::Internals::Constants::Report'
=>
'1'
,
'CPANPLUS::Internals::Extract'
=>
'1'
,
'CPANPLUS::Internals::Fetch'
=>
'1'
,
'CPANPLUS::Internals::Report'
=>
'1'
,
'CPANPLUS::Internals::Search'
=>
'1'
,
'CPANPLUS::Internals::Source'
=>
'1'
,
'CPANPLUS::Internals::Source::Memory'
=>
'1'
,
'CPANPLUS::Internals::Source::SQLite'
=>
'1'
,
'CPANPLUS::Internals::Source::SQLite::Tie'
=>
'1'
,
'CPANPLUS::Internals::Utils'
=>
'1'
,
'CPANPLUS::Internals::Utils::Autoflush'
=>
'1'
,
'CPANPLUS::Module'
=>
'1'
,
'CPANPLUS::Module::Author'
=>
'1'
,
'CPANPLUS::Module::Author::Fake'
=>
'1'
,
'CPANPLUS::Module::Checksums'
=>
'1'
,
'CPANPLUS::Module::Fake'
=>
'1'
,
'CPANPLUS::Module::Signature'
=>
'1'
,
'CPANPLUS::Selfupdate'
=>
'1'
,
'CPANPLUS::Shell'
=>
'1'
,
'CPANPLUS::Shell::Classic'
=>
'1'
,
'CPANPLUS::Shell::Default'
=>
'1'
,
'CPANPLUS::Shell::Default::Plugins::CustomSource'
=>
'1'
,
'CPANPLUS::Shell::Default::Plugins::Remote'
=>
'1'
,
'CPANPLUS::Shell::Default::Plugins::Source'
=>
'1'
,
'Devel::InnerPackage'
=>
'1'
,
'Log::Message'
=>
'1'
,
'Log::Message::Config'
=>
'1'
,
'Log::Message::Handlers'
=>
'1'
,
'Log::Message::Item'
=>
'1'
,
'Log::Message::Simple'
=>
'1'
,
'Module::Pluggable'
=>
'1'
,
'Module::Pluggable::Object'
=>
'1'
,
'Object::Accessor'
=>
'1'
,
'Pod::LaTeX'
=>
'1'
,
'Term::UI'
=>
'1'
,
'Term::UI::History'
=>
'1'
,
},
5.
014004
=> {
'Shell'
=>
'1'
,
},
5.
016003
=> {
},
5.
017010
=> {
},
);
%upstream
= (
'App::Cpan'
=>
'cpan'
,
'App::Prove'
=>
'cpan'
,
'App::Prove::State'
=>
'cpan'
,
'App::Prove::State::Result'
=>
'cpan'
,
'App::Prove::State::Result::Test'
=>
'cpan'
,
'Archive::Extract'
=>
'cpan'
,
'Archive::Tar'
=>
'cpan'
,
'Archive::Tar::Constant'
=>
'cpan'
,
'Archive::Tar::File'
=>
'cpan'
,
'Attribute::Handlers'
=>
'blead'
,
'AutoLoader'
=>
'cpan'
,
'AutoSplit'
=>
'cpan'
,
'B::Concise'
=>
'blead'
,
'B::Debug'
=>
'cpan'
,
'B::Deparse'
=>
'blead'
,
'B::Lint'
=>
'cpan'
,
'B::Lint::Debug'
=>
'cpan'
,
'CGI'
=>
'cpan'
,
'CGI::Apache'
=>
'cpan'
,
'CGI::Carp'
=>
'cpan'
,
'CGI::Cookie'
=>
'cpan'
,
'CGI::Fast'
=>
'cpan'
,
'CGI::Pretty'
=>
'cpan'
,
'CGI::Push'
=>
'cpan'
,
'CGI::Switch'
=>
'cpan'
,
'CGI::Util'
=>
'cpan'
,
'CPAN'
=>
'cpan'
,
'CPAN::Author'
=>
'cpan'
,
'CPAN::Bundle'
=>
'cpan'
,
'CPAN::CacheMgr'
=>
'cpan'
,
'CPAN::Complete'
=>
'cpan'
,
'CPAN::Debug'
=>
'cpan'
,
'CPAN::DeferredCode'
=>
'cpan'
,
'CPAN::Distribution'
=>
'cpan'
,
'CPAN::Distroprefs'
=>
'cpan'
,
'CPAN::Distrostatus'
=>
'cpan'
,
'CPAN::Exception::RecursiveDependency'
=>
'cpan'
,
'CPAN::Exception::blocked_urllist'
=>
'cpan'
,
'CPAN::Exception::yaml_not_installed'
=>
'cpan'
,
'CPAN::Exception::yaml_process_error'
=>
'cpan'
,
'CPAN::FTP'
=>
'cpan'
,
'CPAN::FTP::netrc'
=>
'cpan'
,
'CPAN::FirstTime'
=>
'cpan'
,
'CPAN::HTTP::Client'
=>
'cpan'
,
'CPAN::HTTP::Credentials'
=>
'cpan'
,
'CPAN::HandleConfig'
=>
'cpan'
,
'CPAN::Index'
=>
'cpan'
,
'CPAN::InfoObj'
=>
'cpan'
,
'CPAN::Kwalify'
=>
'cpan'
,
'CPAN::LWP::UserAgent'
=>
'cpan'
,
'CPAN::Meta'
=>
'cpan'
,
'CPAN::Meta::Converter'
=>
'cpan'
,
'CPAN::Meta::Feature'
=>
'cpan'
,
'CPAN::Meta::History'
=>
'cpan'
,
'CPAN::Meta::Prereqs'
=>
'cpan'
,
'CPAN::Meta::Requirements'
=>
'cpan'
,
'CPAN::Meta::Spec'
=>
'cpan'
,
'CPAN::Meta::Validator'
=>
'cpan'
,
'CPAN::Meta::YAML'
=>
'cpan'
,
'CPAN::Mirrors'
=>
'cpan'
,
'CPAN::Module'
=>
'cpan'
,
'CPAN::Nox'
=>
'cpan'
,
'CPAN::Prompt'
=>
'cpan'
,
'CPAN::Queue'
=>
'cpan'
,
'CPAN::Shell'
=>
'cpan'
,
'CPAN::Tarzip'
=>
'cpan'
,
'CPAN::URL'
=>
'cpan'
,
'CPAN::Version'
=>
'cpan'
,
'CPANPLUS'
=>
'cpan'
,
'CPANPLUS::Backend'
=>
'cpan'
,
'CPANPLUS::Backend::RV'
=>
'cpan'
,
'CPANPLUS::Config'
=>
'cpan'
,
'CPANPLUS::Config::HomeEnv'
=>
'cpan'
,
'CPANPLUS::Configure'
=>
'cpan'
,
'CPANPLUS::Configure::Setup'
=>
'cpan'
,
'CPANPLUS::Dist'
=>
'cpan'
,
'CPANPLUS::Dist::Autobundle'
=>
'cpan'
,
'CPANPLUS::Dist::Base'
=>
'cpan'
,
'CPANPLUS::Dist::Build'
=>
'cpan'
,
'CPANPLUS::Dist::Build::Constants'
=>
'cpan'
,
'CPANPLUS::Dist::MM'
=>
'cpan'
,
'CPANPLUS::Dist::Sample'
=>
'cpan'
,
'CPANPLUS::Error'
=>
'cpan'
,
'CPANPLUS::Internals'
=>
'cpan'
,
'CPANPLUS::Internals::Constants'
=>
'cpan'
,
'CPANPLUS::Internals::Constants::Report'
=>
'cpan'
,
'CPANPLUS::Internals::Extract'
=>
'cpan'
,
'CPANPLUS::Internals::Fetch'
=>
'cpan'
,
'CPANPLUS::Internals::Report'
=>
'cpan'
,
'CPANPLUS::Internals::Search'
=>
'cpan'
,
'CPANPLUS::Internals::Source'
=>
'cpan'
,
'CPANPLUS::Internals::Source::Memory'
=>
'cpan'
,
'CPANPLUS::Internals::Source::SQLite'
=>
'cpan'
,
'CPANPLUS::Internals::Source::SQLite::Tie'
=>
'cpan'
,
'CPANPLUS::Internals::Utils'
=>
'cpan'
,
'CPANPLUS::Internals::Utils::Autoflush'
=>
'cpan'
,
'CPANPLUS::Module'
=>
'cpan'
,
'CPANPLUS::Module::Author'
=>
'cpan'
,
'CPANPLUS::Module::Author::Fake'
=>
'cpan'
,
'CPANPLUS::Module::Checksums'
=>
'cpan'
,
'CPANPLUS::Module::Fake'
=>
'cpan'
,
'CPANPLUS::Module::Signature'
=>
'cpan'
,
'CPANPLUS::Selfupdate'
=>
'cpan'
,
'CPANPLUS::Shell'
=>
'cpan'
,
'CPANPLUS::Shell::Classic'
=>
'cpan'
,
'CPANPLUS::Shell::Default'
=>
'cpan'
,
'CPANPLUS::Shell::Default::Plugins::CustomSource'
=>
'cpan'
,
'CPANPLUS::Shell::Default::Plugins::Remote'
=>
'cpan'
,
'CPANPLUS::Shell::Default::Plugins::Source'
=>
'cpan'
,
'Carp'
=>
'blead'
,
'Carp::Heavy'
=>
'blead'
,
'Compress::Raw::Bzip2'
=>
'cpan'
,
'Compress::Raw::Zlib'
=>
'cpan'
,
'Compress::Zlib'
=>
'cpan'
,
'Config::Perl::V'
=>
'cpan'
,
'Cwd'
=>
'blead'
,
'DB_File'
=>
'cpan'
,
'Devel::InnerPackage'
=>
'cpan'
,
'Devel::PPPort'
=>
'cpan'
,
'Digest'
=>
'cpan'
,
'Digest::MD5'
=>
'cpan'
,
'Digest::SHA'
=>
'cpan'
,
'Digest::base'
=>
'cpan'
,
'Digest::file'
=>
'cpan'
,
'Encode'
=>
'cpan'
,
'Encode::Alias'
=>
'cpan'
,
'Encode::Byte'
=>
'cpan'
,
'Encode::CJKConstants'
=>
'cpan'
,
'Encode::CN'
=>
'cpan'
,
'Encode::CN::HZ'
=>
'cpan'
,
'Encode::Config'
=>
'cpan'
,
'Encode::EBCDIC'
=>
'cpan'
,
'Encode::Encoder'
=>
'cpan'
,
'Encode::Encoding'
=>
'cpan'
,
'Encode::GSM0338'
=>
'cpan'
,
'Encode::Guess'
=>
'cpan'
,
'Encode::JP'
=>
'cpan'
,
'Encode::JP::H2Z'
=>
'cpan'
,
'Encode::JP::JIS7'
=>
'cpan'
,
'Encode::KR'
=>
'cpan'
,
'Encode::KR::2022_KR'
=>
'cpan'
,
'Encode::MIME::Header'
=>
'cpan'
,
'Encode::MIME::Header::ISO_2022_JP'
=>
'cpan'
,
'Encode::MIME::Name'
=>
'cpan'
,
'Encode::Symbol'
=>
'cpan'
,
'Encode::TW'
=>
'cpan'
,
'Encode::Unicode'
=>
'cpan'
,
'Encode::Unicode::UTF7'
=>
'cpan'
,
'Exporter'
=>
'blead'
,
'Exporter::Heavy'
=>
'blead'
,
'ExtUtils::CBuilder'
=>
'blead'
,
'ExtUtils::CBuilder::Base'
=>
'blead'
,
'ExtUtils::CBuilder::Platform::Unix'
=>
'blead'
,
'ExtUtils::CBuilder::Platform::VMS'
=>
'blead'
,
'ExtUtils::CBuilder::Platform::Windows'
=>
'blead'
,
'ExtUtils::CBuilder::Platform::Windows::BCC'
=>
'blead'
,
'ExtUtils::CBuilder::Platform::Windows::GCC'
=>
'blead'
,
'ExtUtils::CBuilder::Platform::Windows::MSVC'
=>
'blead'
,
'ExtUtils::CBuilder::Platform::aix'
=>
'blead'
,
'ExtUtils::CBuilder::Platform::cygwin'
=>
'blead'
,
'ExtUtils::CBuilder::Platform::darwin'
=>
'blead'
,
'ExtUtils::CBuilder::Platform::dec_osf'
=>
'blead'
,
'ExtUtils::CBuilder::Platform::os2'
=>
'blead'
,
'ExtUtils::Command::MM'
=>
'first-come'
,
'ExtUtils::Constant'
=>
undef
,
'ExtUtils::Constant::Base'
=>
undef
,
'ExtUtils::Constant::ProxySubs'
=>
undef
,
'ExtUtils::Constant::Utils'
=>
undef
,
'ExtUtils::Constant::XS'
=>
undef
,
'ExtUtils::Install'
=>
'blead'
,
'ExtUtils::Installed'
=>
'blead'
,
'ExtUtils::Liblist'
=>
'first-come'
,
'ExtUtils::Liblist::Kid'
=>
'first-come'
,
'ExtUtils::MM'
=>
'first-come'
,
'ExtUtils::MM_AIX'
=>
'first-come'
,
'ExtUtils::MM_Any'
=>
'first-come'
,
'ExtUtils::MM_BeOS'
=>
'first-come'
,
'ExtUtils::MM_Cygwin'
=>
'first-come'
,
'ExtUtils::MM_DOS'
=>
'first-come'
,
'ExtUtils::MM_Darwin'
=>
'first-come'
,
'ExtUtils::MM_MacOS'
=>
'first-come'
,
'ExtUtils::MM_NW5'
=>
'first-come'
,
'ExtUtils::MM_OS2'
=>
'first-come'
,
'ExtUtils::MM_QNX'
=>
'first-come'
,
'ExtUtils::MM_UWIN'
=>
'first-come'
,
'ExtUtils::MM_Unix'
=>
'first-come'
,
'ExtUtils::MM_VMS'
=>
'first-come'
,
'ExtUtils::MM_VOS'
=>
'first-come'
,
'ExtUtils::MM_Win32'
=>
'first-come'
,
'ExtUtils::MM_Win95'
=>
'first-come'
,
'ExtUtils::MY'
=>
'first-come'
,
'ExtUtils::MakeMaker'
=>
'first-come'
,
'ExtUtils::MakeMaker::Config'
=>
'first-come'
,
'ExtUtils::Mkbootstrap'
=>
'first-come'
,
'ExtUtils::Mksymlists'
=>
'first-come'
,
'ExtUtils::Packlist'
=>
'blead'
,
'ExtUtils::ParseXS'
=>
'blead'
,
'ExtUtils::ParseXS::Constants'
=>
'blead'
,
'ExtUtils::ParseXS::CountLines'
=>
'blead'
,
'ExtUtils::ParseXS::Utilities'
=>
'blead'
,
'ExtUtils::Typemaps'
=>
'blead'
,
'ExtUtils::Typemaps::Cmd'
=>
'blead'
,
'ExtUtils::Typemaps::InputMap'
=>
'blead'
,
'ExtUtils::Typemaps::OutputMap'
=>
'blead'
,
'ExtUtils::Typemaps::Type'
=>
'blead'
,
'ExtUtils::testlib'
=>
'first-come'
,
'Fatal'
=>
'cpan'
,
'File::Fetch'
=>
'cpan'
,
'File::GlobMapper'
=>
'cpan'
,
'File::Path'
=>
undef
,
'File::Spec'
=>
'blead'
,
'File::Spec::Cygwin'
=>
'blead'
,
'File::Spec::Epoc'
=>
'blead'
,
'File::Spec::Functions'
=>
'blead'
,
'File::Spec::Mac'
=>
'blead'
,
'File::Spec::OS2'
=>
'blead'
,
'File::Spec::Unix'
=>
'blead'
,
'File::Spec::VMS'
=>
'blead'
,
'File::Spec::Win32'
=>
'blead'
,
'File::Temp'
=>
'cpan'
,
'Filter::Simple'
=>
'blead'
,
'Filter::Util::Call'
=>
'cpan'
,
'Getopt::Long'
=>
'cpan'
,
'HTTP::Tiny'
=>
'cpan'
,
'IO::Compress::Adapter::Bzip2'
=>
'cpan'
,
'IO::Compress::Adapter::Deflate'
=>
'cpan'
,
'IO::Compress::Adapter::Identity'
=>
'cpan'
,
'IO::Compress::Base'
=>
'cpan'
,
'IO::Compress::Base::Common'
=>
'cpan'
,
'IO::Compress::Bzip2'
=>
'cpan'
,
'IO::Compress::Deflate'
=>
'cpan'
,
'IO::Compress::Gzip'
=>
'cpan'
,
'IO::Compress::Gzip::Constants'
=>
'cpan'
,
'IO::Compress::RawDeflate'
=>
'cpan'
,
'IO::Compress::Zip'
=>
'cpan'
,
'IO::Compress::Zip::Constants'
=>
'cpan'
,
'IO::Compress::Zlib::Constants'
=>
'cpan'
,
'IO::Compress::Zlib::Extra'
=>
'cpan'
,
'IO::Uncompress::Adapter::Bunzip2'
=>
'cpan'
,
'IO::Uncompress::Adapter::Identity'
=>
'cpan'
,
'IO::Uncompress::Adapter::Inflate'
=>
'cpan'
,
'IO::Uncompress::AnyInflate'
=>
'cpan'
,
'IO::Uncompress::AnyUncompress'
=>
'cpan'
,
'IO::Uncompress::Base'
=>
'cpan'
,
'IO::Uncompress::Bunzip2'
=>
'cpan'
,
'IO::Uncompress::Gunzip'
=>
'cpan'
,
'IO::Uncompress::Inflate'
=>
'cpan'
,
'IO::Uncompress::RawInflate'
=>
'cpan'
,
'IO::Uncompress::Unzip'
=>
'cpan'
,
'IO::Zlib'
=>
undef
,
'IPC::Cmd'
=>
'cpan'
,
'IPC::Msg'
=>
'cpan'
,
'IPC::Semaphore'
=>
'cpan'
,
'IPC::SharedMem'
=>
'cpan'
,
'IPC::SysV'
=>
'cpan'
,
'JSON::PP'
=>
'cpan'
,
'JSON::PP::Boolean'
=>
'cpan'
,
'List::Util'
=>
'cpan'
,
'List::Util::XS'
=>
'cpan'
,
'Locale::Codes'
=>
'cpan'
,
'Locale::Codes::Constants'
=>
'cpan'
,
'Locale::Codes::Country'
=>
'cpan'
,
'Locale::Codes::Country_Codes'
=>
'cpan'
,
'Locale::Codes::Country_Retired'
=>
'cpan'
,
'Locale::Codes::Currency'
=>
'cpan'
,
'Locale::Codes::Currency_Codes'
=>
'cpan'
,
'Locale::Codes::Currency_Retired'
=>
'cpan'
,
'Locale::Codes::LangExt'
=>
'cpan'
,
'Locale::Codes::LangExt_Codes'
=>
'cpan'
,
'Locale::Codes::LangExt_Retired'
=>
'cpan'
,
'Locale::Codes::LangFam'
=>
'cpan'
,
'Locale::Codes::LangFam_Codes'
=>
'cpan'
,
'Locale::Codes::LangFam_Retired'
=>
'cpan'
,
'Locale::Codes::LangVar'
=>
'cpan'
,
'Locale::Codes::LangVar_Codes'
=>
'cpan'
,
'Locale::Codes::LangVar_Retired'
=>
'cpan'
,
'Locale::Codes::Language'
=>
'cpan'
,
'Locale::Codes::Language_Codes'
=>
'cpan'
,
'Locale::Codes::Language_Retired'
=>
'cpan'
,
'Locale::Codes::Script'
=>
'cpan'
,
'Locale::Codes::Script_Codes'
=>
'cpan'
,
'Locale::Codes::Script_Retired'
=>
'cpan'
,
'Locale::Country'
=>
'cpan'
,
'Locale::Currency'
=>
'cpan'
,
'Locale::Language'
=>
'cpan'
,
'Locale::Maketext'
=>
'blead'
,
'Locale::Maketext::Guts'
=>
'blead'
,
'Locale::Maketext::GutsLoader'
=>
'blead'
,
'Locale::Maketext::Simple'
=>
'cpan'
,
'Locale::Script'
=>
'cpan'
,
'Log::Message'
=>
'cpan'
,
'Log::Message::Config'
=>
'cpan'
,
'Log::Message::Handlers'
=>
'cpan'
,
'Log::Message::Item'
=>
'cpan'
,
'Log::Message::Simple'
=>
'cpan'
,
'MIME::Base64'
=>
'cpan'
,
'MIME::QuotedPrint'
=>
'cpan'
,
'Math::BigFloat'
=>
'blead'
,
'Math::BigFloat::Trace'
=>
'blead'
,
'Math::BigInt'
=>
'blead'
,
'Math::BigInt::Calc'
=>
'blead'
,
'Math::BigInt::CalcEmu'
=>
'blead'
,
'Math::BigInt::FastCalc'
=>
'blead'
,
'Math::BigInt::Trace'
=>
'blead'
,
'Math::BigRat'
=>
'blead'
,
'Math::Complex'
=>
'cpan'
,
'Math::Trig'
=>
'cpan'
,
'Memoize'
=>
'cpan'
,
'Memoize::AnyDBM_File'
=>
'cpan'
,
'Memoize::Expire'
=>
'cpan'
,
'Memoize::ExpireFile'
=>
'cpan'
,
'Memoize::ExpireTest'
=>
'cpan'
,
'Memoize::NDBM_File'
=>
'cpan'
,
'Memoize::SDBM_File'
=>
'cpan'
,
'Memoize::Storable'
=>
'cpan'
,
'Module::Build'
=>
'cpan'
,
'Module::Build::Base'
=>
'cpan'
,
'Module::Build::Compat'
=>
'cpan'
,
'Module::Build::Config'
=>
'cpan'
,
'Module::Build::ConfigData'
=>
'cpan'
,
'Module::Build::Cookbook'
=>
'cpan'
,
'Module::Build::Dumper'
=>
'cpan'
,
'Module::Build::ModuleInfo'
=>
'cpan'
,
'Module::Build::Notes'
=>
'cpan'
,
'Module::Build::PPMMaker'
=>
'cpan'
,
'Module::Build::Platform::Amiga'
=>
'cpan'
,
'Module::Build::Platform::Default'
=>
'cpan'
,
'Module::Build::Platform::EBCDIC'
=>
'cpan'
,
'Module::Build::Platform::MPEiX'
=>
'cpan'
,
'Module::Build::Platform::MacOS'
=>
'cpan'
,
'Module::Build::Platform::RiscOS'
=>
'cpan'
,
'Module::Build::Platform::Unix'
=>
'cpan'
,
'Module::Build::Platform::VMS'
=>
'cpan'
,
'Module::Build::Platform::VOS'
=>
'cpan'
,
'Module::Build::Platform::Windows'
=>
'cpan'
,
'Module::Build::Platform::aix'
=>
'cpan'
,
'Module::Build::Platform::cygwin'
=>
'cpan'
,
'Module::Build::Platform::darwin'
=>
'cpan'
,
'Module::Build::Platform::os2'
=>
'cpan'
,
'Module::Build::PodParser'
=>
'cpan'
,
'Module::Build::Version'
=>
'cpan'
,
'Module::Build::YAML'
=>
'cpan'
,
'Module::CoreList'
=>
'blead'
,
'Module::CoreList::TieHashDelta'
=>
'blead'
,
'Module::Load'
=>
'cpan'
,
'Module::Load::Conditional'
=>
'cpan'
,
'Module::Loaded'
=>
'cpan'
,
'Module::Metadata'
=>
'cpan'
,
'Module::Pluggable'
=>
'cpan'
,
'Module::Pluggable::Object'
=>
'cpan'
,
'NEXT'
=>
'cpan'
,
'Net::Cmd'
=>
undef
,
'Net::Config'
=>
undef
,
'Net::Domain'
=>
undef
,
'Net::FTP'
=>
undef
,
'Net::FTP::A'
=>
undef
,
'Net::FTP::E'
=>
undef
,
'Net::FTP::I'
=>
undef
,
'Net::FTP::L'
=>
undef
,
'Net::FTP::dataconn'
=>
undef
,
'Net::NNTP'
=>
undef
,
'Net::Netrc'
=>
undef
,
'Net::POP3'
=>
undef
,
'Net::Ping'
=>
'blead'
,
'Net::SMTP'
=>
undef
,
'Net::Time'
=>
undef
,
'Object::Accessor'
=>
'cpan'
,
'Package::Constants'
=>
'cpan'
,
'Params::Check'
=>
'cpan'
,
'Parse::CPAN::Meta'
=>
'cpan'
,
'Perl::OSType'
=>
'cpan'
,
'PerlIO::via::QuotedPrint'
=>
undef
,
'Pod::Checker'
=>
'cpan'
,
'Pod::Escapes'
=>
undef
,
'Pod::Find'
=>
'cpan'
,
'Pod::InputObjects'
=>
'cpan'
,
'Pod::LaTeX'
=>
undef
,
'Pod::Man'
=>
'cpan'
,
'Pod::ParseLink'
=>
'cpan'
,
'Pod::ParseUtils'
=>
'cpan'
,
'Pod::Parser'
=>
'cpan'
,
'Pod::Perldoc'
=>
'cpan'
,
'Pod::Perldoc::BaseTo'
=>
'cpan'
,
'Pod::Perldoc::GetOptsOO'
=>
'cpan'
,
'Pod::Perldoc::ToANSI'
=>
'cpan'
,
'Pod::Perldoc::ToChecker'
=>
'cpan'
,
'Pod::Perldoc::ToMan'
=>
'cpan'
,
'Pod::Perldoc::ToNroff'
=>
'cpan'
,
'Pod::Perldoc::ToPod'
=>
'cpan'
,
'Pod::Perldoc::ToRtf'
=>
'cpan'
,
'Pod::Perldoc::ToTerm'
=>
'cpan'
,
'Pod::Perldoc::ToText'
=>
'cpan'
,
'Pod::Perldoc::ToTk'
=>
'cpan'
,
'Pod::Perldoc::ToXml'
=>
'cpan'
,
'Pod::PlainText'
=>
'cpan'
,
'Pod::Select'
=>
'cpan'
,
'Pod::Simple'
=>
'cpan'
,
'Pod::Simple::BlackBox'
=>
'cpan'
,
'Pod::Simple::Checker'
=>
'cpan'
,
'Pod::Simple::Debug'
=>
'cpan'
,
'Pod::Simple::DumpAsText'
=>
'cpan'
,
'Pod::Simple::DumpAsXML'
=>
'cpan'
,
'Pod::Simple::HTML'
=>
'cpan'
,
'Pod::Simple::HTMLBatch'
=>
'cpan'
,
'Pod::Simple::HTMLLegacy'
=>
'cpan'
,
'Pod::Simple::LinkSection'
=>
'cpan'
,
'Pod::Simple::Methody'
=>
'cpan'
,
'Pod::Simple::Progress'
=>
'cpan'
,
'Pod::Simple::PullParser'
=>
'cpan'
,
'Pod::Simple::PullParserEndToken'
=>
'cpan'
,
'Pod::Simple::PullParserStartToken'
=>
'cpan'
,
'Pod::Simple::PullParserTextToken'
=>
'cpan'
,
'Pod::Simple::PullParserToken'
=>
'cpan'
,
'Pod::Simple::RTF'
=>
'cpan'
,
'Pod::Simple::Search'
=>
'cpan'
,
'Pod::Simple::SimpleTree'
=>
'cpan'
,
'Pod::Simple::Text'
=>
'cpan'
,
'Pod::Simple::TextContent'
=>
'cpan'
,
'Pod::Simple::TiedOutFH'
=>
'cpan'
,
'Pod::Simple::Transcode'
=>
'cpan'
,
'Pod::Simple::TranscodeDumb'
=>
'cpan'
,
'Pod::Simple::TranscodeSmart'
=>
'cpan'
,
'Pod::Simple::XHTML'
=>
'cpan'
,
'Pod::Simple::XMLOutStream'
=>
'cpan'
,
'Pod::Text'
=>
'cpan'
,
'Pod::Text::Color'
=>
'cpan'
,
'Pod::Text::Overstrike'
=>
'cpan'
,
'Pod::Text::Termcap'
=>
'cpan'
,
'Pod::Usage'
=>
'cpan'
,
'Safe'
=>
'blead'
,
'Scalar::Util'
=>
'cpan'
,
'SelfLoader'
=>
'blead'
,
'Socket'
=>
'cpan'
,
'Storable'
=>
'blead'
,
'Sys::Syslog'
=>
'cpan'
,
'Sys::Syslog::Win32'
=>
'cpan'
,
'TAP::Base'
=>
'cpan'
,
'TAP::Formatter::Base'
=>
'cpan'
,
'TAP::Formatter::Color'
=>
'cpan'
,
'TAP::Formatter::Console'
=>
'cpan'
,
'TAP::Formatter::Console::ParallelSession'
=>
'cpan'
,
'TAP::Formatter::Console::Session'
=>
'cpan'
,
'TAP::Formatter::File'
=>
'cpan'
,
'TAP::Formatter::File::Session'
=>
'cpan'
,
'TAP::Formatter::Session'
=>
'cpan'
,
'TAP::Harness'
=>
'cpan'
,
'TAP::Object'
=>
'cpan'
,
'TAP::Parser'
=>
'cpan'
,
'TAP::Parser::Aggregator'
=>
'cpan'
,
'TAP::Parser::Grammar'
=>
'cpan'
,
'TAP::Parser::Iterator'
=>
'cpan'
,
'TAP::Parser::Iterator::Array'
=>
'cpan'
,
'TAP::Parser::Iterator::Process'
=>
'cpan'
,
'TAP::Parser::Iterator::Stream'
=>
'cpan'
,
'TAP::Parser::IteratorFactory'
=>
'cpan'
,
'TAP::Parser::Multiplexer'
=>
'cpan'
,
'TAP::Parser::Result'
=>
'cpan'
,
'TAP::Parser::Result::Bailout'
=>
'cpan'
,
'TAP::Parser::Result::Comment'
=>
'cpan'
,
'TAP::Parser::Result::Plan'
=>
'cpan'
,
'TAP::Parser::Result::Pragma'
=>
'cpan'
,
'TAP::Parser::Result::Test'
=>
'cpan'
,
'TAP::Parser::Result::Unknown'
=>
'cpan'
,
'TAP::Parser::Result::Version'
=>
'cpan'
,
'TAP::Parser::Result::YAML'
=>
'cpan'
,
'TAP::Parser::ResultFactory'
=>
'cpan'
,
'TAP::Parser::Scheduler'
=>
'cpan'
,
'TAP::Parser::Scheduler::Job'
=>
'cpan'
,
'TAP::Parser::Scheduler::Spinner'
=>
'cpan'
,
'TAP::Parser::Source'
=>
'cpan'
,
'TAP::Parser::SourceHandler'
=>
'cpan'
,
'TAP::Parser::SourceHandler::Executable'
=>
'cpan'
,
'TAP::Parser::SourceHandler::File'
=>
'cpan'
,
'TAP::Parser::SourceHandler::Handle'
=>
'cpan'
,
'TAP::Parser::SourceHandler::Perl'
=>
'cpan'
,
'TAP::Parser::SourceHandler::RawTAP'
=>
'cpan'
,
'TAP::Parser::Utils'
=>
'cpan'
,
'TAP::Parser::YAMLish::Reader'
=>
'cpan'
,
'TAP::Parser::YAMLish::Writer'
=>
'cpan'
,
'Term::ANSIColor'
=>
'cpan'
,
'Term::Cap'
=>
undef
,
'Term::UI'
=>
'cpan'
,
'Term::UI::History'
=>
'cpan'
,
'Test'
=>
'cpan'
,
'Test::Builder'
=>
'cpan'
,
'Test::Builder::Module'
=>
'cpan'
,
'Test::Builder::Tester'
=>
'cpan'
,
'Test::Builder::Tester::Color'
=>
'cpan'
,
'Test::Harness'
=>
'cpan'
,
'Test::More'
=>
'cpan'
,
'Test::Simple'
=>
'cpan'
,
'Text::Balanced'
=>
'cpan'
,
'Text::ParseWords'
=>
undef
,
'Text::Soundex'
=>
undef
,
'Text::Tabs'
=>
'cpan'
,
'Text::Wrap'
=>
'cpan'
,
'Thread::Queue'
=>
'blead'
,
'Thread::Semaphore'
=>
'blead'
,
'Tie::File'
=>
'blead'
,
'Tie::RefHash'
=>
'cpan'
,
'Time::HiRes'
=>
'cpan'
,
'Time::Local'
=>
'cpan'
,
'Time::Piece'
=>
undef
,
'Time::Seconds'
=>
undef
,
'Unicode::Collate'
=>
'first-come'
,
'Unicode::Collate::CJK::Big5'
=>
'first-come'
,
'Unicode::Collate::CJK::GB2312'
=>
'first-come'
,
'Unicode::Collate::CJK::JISX0208'
=>
'first-come'
,
'Unicode::Collate::CJK::Korean'
=>
'first-come'
,
'Unicode::Collate::CJK::Pinyin'
=>
'first-come'
,
'Unicode::Collate::CJK::Stroke'
=>
'first-come'
,
'Unicode::Collate::CJK::Zhuyin'
=>
'first-come'
,
'Unicode::Collate::Locale'
=>
'first-come'
,
'Unicode::Normalize'
=>
'first-come'
,
'Unicode::UCD'
=>
'blead'
,
'VMS::DCLsym'
=>
undef
,
'VMS::Filespec'
=>
undef
,
'VMS::Stdio'
=>
undef
,
'Win32'
=>
'cpan'
,
'Win32API::File'
=>
'cpan'
,
'Win32API::File::ExtUtils::Myconst2perl'
=>
'cpan'
,
'Win32CORE'
=>
undef
,
'XSLoader'
=>
undef
,
'autodie'
=>
'cpan'
,
'autodie::exception'
=>
'cpan'
,
'autodie::exception::system'
=>
'cpan'
,
'autodie::hints'
=>
'cpan'
,
'base'
=>
'blead'
,
'bigint'
=>
'blead'
,
'bignum'
=>
'blead'
,
'bigrat'
=>
'blead'
,
'constant'
=>
'blead'
,
'encoding'
=>
'cpan'
,
'encoding::warnings'
=>
undef
,
'fields'
=>
'blead'
,
'if'
=>
'blead'
,
'inc::latest'
=>
'cpan'
,
'lib'
=>
'blead'
,
'parent'
=>
undef
,
'perlfaq'
=>
'cpan'
,
'threads'
=>
'blead'
,
'threads::shared'
=>
'blead'
,
'version'
=>
undef
,
'warnings'
=>
'blead'
,
'warnings::register'
=>
'blead'
,
);
%bug_tracker
= (
'App::Cpan'
=>
undef
,
'Archive::Extract'
=>
undef
,
'Archive::Tar'
=>
undef
,
'Archive::Tar::Constant'
=>
undef
,
'Archive::Tar::File'
=>
undef
,
'Attribute::Handlers'
=>
undef
,
'B::Concise'
=>
undef
,
'B::Debug'
=>
undef
,
'B::Deparse'
=>
undef
,
'B::Lint'
=>
undef
,
'B::Lint::Debug'
=>
undef
,
'CGI'
=>
undef
,
'CGI::Apache'
=>
undef
,
'CGI::Carp'
=>
undef
,
'CGI::Cookie'
=>
undef
,
'CGI::Fast'
=>
undef
,
'CGI::Pretty'
=>
undef
,
'CGI::Push'
=>
undef
,
'CGI::Switch'
=>
undef
,
'CGI::Util'
=>
undef
,
'CPAN'
=>
undef
,
'CPAN::Author'
=>
undef
,
'CPAN::Bundle'
=>
undef
,
'CPAN::CacheMgr'
=>
undef
,
'CPAN::Complete'
=>
undef
,
'CPAN::Debug'
=>
undef
,
'CPAN::DeferredCode'
=>
undef
,
'CPAN::Distribution'
=>
undef
,
'CPAN::Distroprefs'
=>
undef
,
'CPAN::Distrostatus'
=>
undef
,
'CPAN::Exception::RecursiveDependency'
=>
undef
,
'CPAN::Exception::blocked_urllist'
=>
undef
,
'CPAN::Exception::yaml_not_installed'
=>
undef
,
'CPAN::Exception::yaml_process_error'
=>
undef
,
'CPAN::FTP'
=>
undef
,
'CPAN::FTP::netrc'
=>
undef
,
'CPAN::FirstTime'
=>
undef
,
'CPAN::HTTP::Client'
=>
undef
,
'CPAN::HTTP::Credentials'
=>
undef
,
'CPAN::HandleConfig'
=>
undef
,
'CPAN::Index'
=>
undef
,
'CPAN::InfoObj'
=>
undef
,
'CPAN::Kwalify'
=>
undef
,
'CPAN::LWP::UserAgent'
=>
undef
,
'CPAN::Mirrors'
=>
undef
,
'CPAN::Module'
=>
undef
,
'CPAN::Nox'
=>
undef
,
'CPAN::Prompt'
=>
undef
,
'CPAN::Queue'
=>
undef
,
'CPAN::Shell'
=>
undef
,
'CPAN::Tarzip'
=>
undef
,
'CPAN::URL'
=>
undef
,
'CPAN::Version'
=>
undef
,
'CPANPLUS'
=>
undef
,
'CPANPLUS::Backend'
=>
undef
,
'CPANPLUS::Backend::RV'
=>
undef
,
'CPANPLUS::Config'
=>
undef
,
'CPANPLUS::Config::HomeEnv'
=>
undef
,
'CPANPLUS::Configure'
=>
undef
,
'CPANPLUS::Configure::Setup'
=>
undef
,
'CPANPLUS::Dist'
=>
undef
,
'CPANPLUS::Dist::Autobundle'
=>
undef
,
'CPANPLUS::Dist::Base'
=>
undef
,
'CPANPLUS::Dist::Build'
=>
undef
,
'CPANPLUS::Dist::Build::Constants'
=>
undef
,
'CPANPLUS::Dist::MM'
=>
undef
,
'CPANPLUS::Dist::Sample'
=>
undef
,
'CPANPLUS::Error'
=>
undef
,
'CPANPLUS::Internals'
=>
undef
,
'CPANPLUS::Internals::Constants'
=>
undef
,
'CPANPLUS::Internals::Constants::Report'
=>
undef
,
'CPANPLUS::Internals::Extract'
=>
undef
,
'CPANPLUS::Internals::Fetch'
=>
undef
,
'CPANPLUS::Internals::Report'
=>
undef
,
'CPANPLUS::Internals::Search'
=>
undef
,
'CPANPLUS::Internals::Source'
=>
undef
,
'CPANPLUS::Internals::Source::Memory'
=>
undef
,
'CPANPLUS::Internals::Source::SQLite'
=>
undef
,
'CPANPLUS::Internals::Source::SQLite::Tie'
=>
undef
,
'CPANPLUS::Internals::Utils'
=>
undef
,
'CPANPLUS::Internals::Utils::Autoflush'
=>
undef
,
'CPANPLUS::Module'
=>
undef
,
'CPANPLUS::Module::Author'
=>
undef
,
'CPANPLUS::Module::Author::Fake'
=>
undef
,
'CPANPLUS::Module::Checksums'
=>
undef
,
'CPANPLUS::Module::Fake'
=>
undef
,
'CPANPLUS::Module::Signature'
=>
undef
,
'CPANPLUS::Selfupdate'
=>
undef
,
'CPANPLUS::Shell'
=>
undef
,
'CPANPLUS::Shell::Classic'
=>
undef
,
'CPANPLUS::Shell::Default'
=>
undef
,
'CPANPLUS::Shell::Default::Plugins::CustomSource'
=>
undef
,
'CPANPLUS::Shell::Default::Plugins::Remote'
=>
undef
,
'CPANPLUS::Shell::Default::Plugins::Source'
=>
undef
,
'Carp'
=>
undef
,
'Carp::Heavy'
=>
undef
,
'Compress::Raw::Bzip2'
=>
undef
,
'Compress::Raw::Zlib'
=>
undef
,
'Compress::Zlib'
=>
undef
,
'Config::Perl::V'
=>
undef
,
'Cwd'
=>
undef
,
'DB_File'
=>
undef
,
'Devel::InnerPackage'
=>
undef
,
'Devel::PPPort'
=>
undef
,
'Digest'
=>
undef
,
'Digest::MD5'
=>
undef
,
'Digest::SHA'
=>
undef
,
'Digest::base'
=>
undef
,
'Digest::file'
=>
undef
,
'Encode'
=>
undef
,
'Encode::Alias'
=>
undef
,
'Encode::Byte'
=>
undef
,
'Encode::CJKConstants'
=>
undef
,
'Encode::CN'
=>
undef
,
'Encode::CN::HZ'
=>
undef
,
'Encode::Config'
=>
undef
,
'Encode::EBCDIC'
=>
undef
,
'Encode::Encoder'
=>
undef
,
'Encode::Encoding'
=>
undef
,
'Encode::GSM0338'
=>
undef
,
'Encode::Guess'
=>
undef
,
'Encode::JP'
=>
undef
,
'Encode::JP::H2Z'
=>
undef
,
'Encode::JP::JIS7'
=>
undef
,
'Encode::KR'
=>
undef
,
'Encode::KR::2022_KR'
=>
undef
,
'Encode::MIME::Header'
=>
undef
,
'Encode::MIME::Header::ISO_2022_JP'
=>
undef
,
'Encode::MIME::Name'
=>
undef
,
'Encode::Symbol'
=>
undef
,
'Encode::TW'
=>
undef
,
'Encode::Unicode'
=>
undef
,
'Encode::Unicode::UTF7'
=>
undef
,
'Exporter'
=>
undef
,
'Exporter::Heavy'
=>
undef
,
'ExtUtils::CBuilder'
=>
undef
,
'ExtUtils::CBuilder::Base'
=>
undef
,
'ExtUtils::CBuilder::Platform::Unix'
=>
undef
,
'ExtUtils::CBuilder::Platform::VMS'
=>
undef
,
'ExtUtils::CBuilder::Platform::Windows'
=>
undef
,
'ExtUtils::CBuilder::Platform::Windows::BCC'
=>
undef
,
'ExtUtils::CBuilder::Platform::Windows::GCC'
=>
undef
,
'ExtUtils::CBuilder::Platform::Windows::MSVC'
=>
undef
,
'ExtUtils::CBuilder::Platform::aix'
=>
undef
,
'ExtUtils::CBuilder::Platform::cygwin'
=>
undef
,
'ExtUtils::CBuilder::Platform::darwin'
=>
undef
,
'ExtUtils::CBuilder::Platform::dec_osf'
=>
undef
,
'ExtUtils::CBuilder::Platform::os2'
=>
undef
,
'ExtUtils::Command::MM'
=>
undef
,
'ExtUtils::Constant'
=>
undef
,
'ExtUtils::Constant::Base'
=>
undef
,
'ExtUtils::Constant::ProxySubs'
=>
undef
,
'ExtUtils::Constant::Utils'
=>
undef
,
'ExtUtils::Constant::XS'
=>
undef
,
'ExtUtils::Install'
=>
undef
,
'ExtUtils::Installed'
=>
undef
,
'ExtUtils::Liblist'
=>
undef
,
'ExtUtils::Liblist::Kid'
=>
undef
,
'ExtUtils::MM'
=>
undef
,
'ExtUtils::MM_AIX'
=>
undef
,
'ExtUtils::MM_Any'
=>
undef
,
'ExtUtils::MM_BeOS'
=>
undef
,
'ExtUtils::MM_Cygwin'
=>
undef
,
'ExtUtils::MM_DOS'
=>
undef
,
'ExtUtils::MM_Darwin'
=>
undef
,
'ExtUtils::MM_MacOS'
=>
undef
,
'ExtUtils::MM_NW5'
=>
undef
,
'ExtUtils::MM_OS2'
=>
undef
,
'ExtUtils::MM_QNX'
=>
undef
,
'ExtUtils::MM_UWIN'
=>
undef
,
'ExtUtils::MM_Unix'
=>
undef
,
'ExtUtils::MM_VMS'
=>
undef
,
'ExtUtils::MM_VOS'
=>
undef
,
'ExtUtils::MM_Win32'
=>
undef
,
'ExtUtils::MM_Win95'
=>
undef
,
'ExtUtils::MY'
=>
undef
,
'ExtUtils::MakeMaker'
=>
undef
,
'ExtUtils::MakeMaker::Config'
=>
undef
,
'ExtUtils::Mkbootstrap'
=>
undef
,
'ExtUtils::Mksymlists'
=>
undef
,
'ExtUtils::Packlist'
=>
undef
,
'ExtUtils::ParseXS'
=>
undef
,
'ExtUtils::ParseXS::Constants'
=>
undef
,
'ExtUtils::ParseXS::CountLines'
=>
undef
,
'ExtUtils::ParseXS::Utilities'
=>
undef
,
'ExtUtils::Typemaps'
=>
undef
,
'ExtUtils::Typemaps::Cmd'
=>
undef
,
'ExtUtils::Typemaps::InputMap'
=>
undef
,
'ExtUtils::Typemaps::OutputMap'
=>
undef
,
'ExtUtils::Typemaps::Type'
=>
undef
,
'ExtUtils::testlib'
=>
undef
,
'File::Fetch'
=>
undef
,
'File::GlobMapper'
=>
undef
,
'File::Path'
=>
undef
,
'File::Spec'
=>
undef
,
'File::Spec::Cygwin'
=>
undef
,
'File::Spec::Epoc'
=>
undef
,
'File::Spec::Functions'
=>
undef
,
'File::Spec::Mac'
=>
undef
,
'File::Spec::OS2'
=>
undef
,
'File::Spec::Unix'
=>
undef
,
'File::Spec::VMS'
=>
undef
,
'File::Spec::Win32'
=>
undef
,
'File::Temp'
=>
undef
,
'Filter::Simple'
=>
undef
,
'Filter::Util::Call'
=>
undef
,
'Getopt::Long'
=>
undef
,
'IO::Compress::Adapter::Bzip2'
=>
undef
,
'IO::Compress::Adapter::Deflate'
=>
undef
,
'IO::Compress::Adapter::Identity'
=>
undef
,
'IO::Compress::Base'
=>
undef
,
'IO::Compress::Base::Common'
=>
undef
,
'IO::Compress::Bzip2'
=>
undef
,
'IO::Compress::Deflate'
=>
undef
,
'IO::Compress::Gzip'
=>
undef
,
'IO::Compress::Gzip::Constants'
=>
undef
,
'IO::Compress::RawDeflate'
=>
undef
,
'IO::Compress::Zip'
=>
undef
,
'IO::Compress::Zip::Constants'
=>
undef
,
'IO::Compress::Zlib::Constants'
=>
undef
,
'IO::Compress::Zlib::Extra'
=>
undef
,
'IO::Uncompress::Adapter::Bunzip2'
=>
undef
,
'IO::Uncompress::Adapter::Identity'
=>
undef
,
'IO::Uncompress::Adapter::Inflate'
=>
undef
,
'IO::Uncompress::AnyInflate'
=>
undef
,
'IO::Uncompress::AnyUncompress'
=>
undef
,
'IO::Uncompress::Base'
=>
undef
,
'IO::Uncompress::Bunzip2'
=>
undef
,
'IO::Uncompress::Gunzip'
=>
undef
,
'IO::Uncompress::Inflate'
=>
undef
,
'IO::Uncompress::RawInflate'
=>
undef
,
'IO::Uncompress::Unzip'
=>
undef
,
'IO::Zlib'
=>
undef
,
'IPC::Cmd'
=>
undef
,
'IPC::Msg'
=>
undef
,
'IPC::Semaphore'
=>
undef
,
'IPC::SharedMem'
=>
undef
,
'IPC::SysV'
=>
undef
,
'JSON::PP'
=>
undef
,
'JSON::PP::Boolean'
=>
undef
,
'List::Util'
=>
undef
,
'List::Util::XS'
=>
undef
,
'Locale::Codes'
=>
undef
,
'Locale::Codes::Constants'
=>
undef
,
'Locale::Codes::Country'
=>
undef
,
'Locale::Codes::Country_Codes'
=>
undef
,
'Locale::Codes::Country_Retired'
=>
undef
,
'Locale::Codes::Currency'
=>
undef
,
'Locale::Codes::Currency_Codes'
=>
undef
,
'Locale::Codes::Currency_Retired'
=>
undef
,
'Locale::Codes::LangExt'
=>
undef
,
'Locale::Codes::LangExt_Codes'
=>
undef
,
'Locale::Codes::LangExt_Retired'
=>
undef
,
'Locale::Codes::LangFam'
=>
undef
,
'Locale::Codes::LangFam_Codes'
=>
undef
,
'Locale::Codes::LangFam_Retired'
=>
undef
,
'Locale::Codes::LangVar'
=>
undef
,
'Locale::Codes::LangVar_Codes'
=>
undef
,
'Locale::Codes::LangVar_Retired'
=>
undef
,
'Locale::Codes::Language'
=>
undef
,
'Locale::Codes::Language_Codes'
=>
undef
,
'Locale::Codes::Language_Retired'
=>
undef
,
'Locale::Codes::Script'
=>
undef
,
'Locale::Codes::Script_Codes'
=>
undef
,
'Locale::Codes::Script_Retired'
=>
undef
,
'Locale::Country'
=>
undef
,
'Locale::Currency'
=>
undef
,
'Locale::Language'
=>
undef
,
'Locale::Maketext'
=>
undef
,
'Locale::Maketext::Guts'
=>
undef
,
'Locale::Maketext::GutsLoader'
=>
undef
,
'Locale::Maketext::Simple'
=>
undef
,
'Locale::Script'
=>
undef
,
'Log::Message'
=>
undef
,
'Log::Message::Config'
=>
undef
,
'Log::Message::Handlers'
=>
undef
,
'Log::Message::Item'
=>
undef
,
'Log::Message::Simple'
=>
undef
,
'MIME::Base64'
=>
undef
,
'MIME::QuotedPrint'
=>
undef
,
'Math::BigFloat'
=>
undef
,
'Math::BigFloat::Trace'
=>
undef
,
'Math::BigInt'
=>
undef
,
'Math::BigInt::Calc'
=>
undef
,
'Math::BigInt::CalcEmu'
=>
undef
,
'Math::BigInt::FastCalc'
=>
undef
,
'Math::BigInt::Trace'
=>
undef
,
'Math::BigRat'
=>
undef
,
'Math::Complex'
=>
undef
,
'Math::Trig'
=>
undef
,
'Memoize'
=>
undef
,
'Memoize::AnyDBM_File'
=>
undef
,
'Memoize::Expire'
=>
undef
,
'Memoize::ExpireFile'
=>
undef
,
'Memoize::ExpireTest'
=>
undef
,
'Memoize::NDBM_File'
=>
undef
,
'Memoize::SDBM_File'
=>
undef
,
'Memoize::Storable'
=>
undef
,
'Module::Build'
=>
undef
,
'Module::Build::Base'
=>
undef
,
'Module::Build::Compat'
=>
undef
,
'Module::Build::Config'
=>
undef
,
'Module::Build::Cookbook'
=>
undef
,
'Module::Build::Dumper'
=>
undef
,
'Module::Build::ModuleInfo'
=>
undef
,
'Module::Build::Notes'
=>
undef
,
'Module::Build::PPMMaker'
=>
undef
,
'Module::Build::Platform::Amiga'
=>
undef
,
'Module::Build::Platform::Default'
=>
undef
,
'Module::Build::Platform::EBCDIC'
=>
undef
,
'Module::Build::Platform::MPEiX'
=>
undef
,
'Module::Build::Platform::MacOS'
=>
undef
,
'Module::Build::Platform::RiscOS'
=>
undef
,
'Module::Build::Platform::Unix'
=>
undef
,
'Module::Build::Platform::VMS'
=>
undef
,
'Module::Build::Platform::VOS'
=>
undef
,
'Module::Build::Platform::Windows'
=>
undef
,
'Module::Build::Platform::aix'
=>
undef
,
'Module::Build::Platform::cygwin'
=>
undef
,
'Module::Build::Platform::darwin'
=>
undef
,
'Module::Build::Platform::os2'
=>
undef
,
'Module::Build::PodParser'
=>
undef
,
'Module::Build::Version'
=>
undef
,
'Module::Build::YAML'
=>
undef
,
'Module::CoreList'
=>
undef
,
'Module::CoreList::TieHashDelta'
=>
undef
,
'Module::Load'
=>
undef
,
'Module::Load::Conditional'
=>
undef
,
'Module::Loaded'
=>
undef
,
'Module::Metadata'
=>
undef
,
'Module::Pluggable'
=>
undef
,
'Module::Pluggable::Object'
=>
undef
,
'NEXT'
=>
undef
,
'Net::Cmd'
=>
undef
,
'Net::Config'
=>
undef
,
'Net::Domain'
=>
undef
,
'Net::FTP'
=>
undef
,
'Net::FTP::A'
=>
undef
,
'Net::FTP::E'
=>
undef
,
'Net::FTP::I'
=>
undef
,
'Net::FTP::L'
=>
undef
,
'Net::FTP::dataconn'
=>
undef
,
'Net::NNTP'
=>
undef
,
'Net::Netrc'
=>
undef
,
'Net::POP3'
=>
undef
,
'Net::Ping'
=>
undef
,
'Net::SMTP'
=>
undef
,
'Net::Time'
=>
undef
,
'Object::Accessor'
=>
undef
,
'Package::Constants'
=>
undef
,
'Params::Check'
=>
undef
,
'Parse::CPAN::Meta'
=>
undef
,
'PerlIO::via::QuotedPrint'
=>
undef
,
'Pod::Checker'
=>
undef
,
'Pod::Escapes'
=>
undef
,
'Pod::Find'
=>
undef
,
'Pod::InputObjects'
=>
undef
,
'Pod::LaTeX'
=>
undef
,
'Pod::Man'
=>
undef
,
'Pod::ParseLink'
=>
undef
,
'Pod::ParseUtils'
=>
undef
,
'Pod::Parser'
=>
undef
,
'Pod::Perldoc'
=>
undef
,
'Pod::Perldoc::BaseTo'
=>
undef
,
'Pod::Perldoc::GetOptsOO'
=>
undef
,
'Pod::Perldoc::ToANSI'
=>
undef
,
'Pod::Perldoc::ToChecker'
=>
undef
,
'Pod::Perldoc::ToMan'
=>
undef
,
'Pod::Perldoc::ToNroff'
=>
undef
,
'Pod::Perldoc::ToPod'
=>
undef
,
'Pod::Perldoc::ToRtf'
=>
undef
,
'Pod::Perldoc::ToTerm'
=>
undef
,
'Pod::Perldoc::ToText'
=>
undef
,
'Pod::Perldoc::ToTk'
=>
undef
,
'Pod::Perldoc::ToXml'
=>
undef
,
'Pod::PlainText'
=>
undef
,
'Pod::Select'
=>
undef
,
'Pod::Simple'
=>
undef
,
'Pod::Simple::BlackBox'
=>
undef
,
'Pod::Simple::Checker'
=>
undef
,
'Pod::Simple::Debug'
=>
undef
,
'Pod::Simple::DumpAsText'
=>
undef
,
'Pod::Simple::DumpAsXML'
=>
undef
,
'Pod::Simple::HTML'
=>
undef
,
'Pod::Simple::HTMLBatch'
=>
undef
,
'Pod::Simple::HTMLLegacy'
=>
undef
,
'Pod::Simple::LinkSection'
=>
undef
,
'Pod::Simple::Methody'
=>
undef
,
'Pod::Simple::Progress'
=>
undef
,
'Pod::Simple::PullParser'
=>
undef
,
'Pod::Simple::PullParserEndToken'
=>
undef
,
'Pod::Simple::PullParserStartToken'
=>
undef
,
'Pod::Simple::PullParserTextToken'
=>
undef
,
'Pod::Simple::PullParserToken'
=>
undef
,
'Pod::Simple::RTF'
=>
undef
,
'Pod::Simple::Search'
=>
undef
,
'Pod::Simple::SimpleTree'
=>
undef
,
'Pod::Simple::Text'
=>
undef
,
'Pod::Simple::TextContent'
=>
undef
,
'Pod::Simple::TiedOutFH'
=>
undef
,
'Pod::Simple::Transcode'
=>
undef
,
'Pod::Simple::TranscodeDumb'
=>
undef
,
'Pod::Simple::TranscodeSmart'
=>
undef
,
'Pod::Simple::XHTML'
=>
undef
,
'Pod::Simple::XMLOutStream'
=>
undef
,
'Pod::Text'
=>
undef
,
'Pod::Text::Color'
=>
undef
,
'Pod::Text::Overstrike'
=>
undef
,
'Pod::Text::Termcap'
=>
undef
,
'Pod::Usage'
=>
undef
,
'Safe'
=>
undef
,
'Scalar::Util'
=>
undef
,
'SelfLoader'
=>
undef
,
'Socket'
=>
undef
,
'Storable'
=>
undef
,
'Sys::Syslog'
=>
undef
,
'Sys::Syslog::Win32'
=>
undef
,
'Term::ANSIColor'
=>
undef
,
'Term::Cap'
=>
undef
,
'Term::UI'
=>
undef
,
'Term::UI::History'
=>
undef
,
'Test'
=>
undef
,
'Text::Balanced'
=>
undef
,
'Text::ParseWords'
=>
undef
,
'Text::Soundex'
=>
undef
,
'Text::Tabs'
=>
undef
,
'Text::Wrap'
=>
undef
,
'Thread::Queue'
=>
undef
,
'Thread::Semaphore'
=>
undef
,
'Tie::File'
=>
undef
,
'Tie::RefHash'
=>
undef
,
'Time::HiRes'
=>
undef
,
'Time::Piece'
=>
undef
,
'Time::Seconds'
=>
undef
,
'Unicode::Collate'
=>
undef
,
'Unicode::Collate::CJK::Big5'
=>
undef
,
'Unicode::Collate::CJK::GB2312'
=>
undef
,
'Unicode::Collate::CJK::JISX0208'
=>
undef
,
'Unicode::Collate::CJK::Korean'
=>
undef
,
'Unicode::Collate::CJK::Pinyin'
=>
undef
,
'Unicode::Collate::CJK::Stroke'
=>
undef
,
'Unicode::Collate::CJK::Zhuyin'
=>
undef
,
'Unicode::Collate::Locale'
=>
undef
,
'Unicode::Normalize'
=>
undef
,
'Unicode::UCD'
=>
undef
,
'VMS::DCLsym'
=>
undef
,
'VMS::Filespec'
=>
undef
,
'VMS::Stdio'
=>
undef
,
'Win32'
=>
undef
,
'Win32API::File'
=>
undef
,
'Win32API::File::ExtUtils::Myconst2perl'
=>
undef
,
'Win32CORE'
=>
undef
,
'base'
=>
undef
,
'bigint'
=>
undef
,
'bignum'
=>
undef
,
'bigrat'
=>
undef
,
'constant'
=>
undef
,
'encoding'
=>
undef
,
'encoding::warnings'
=>
undef
,
'fields'
=>
undef
,
'if'
=>
undef
,
'inc::latest'
=>
undef
,
'lib'
=>
undef
,
'parent'
=>
undef
,
'threads'
=>
undef
,
'threads::shared'
=>
undef
,
'version'
=>
undef
,
'warnings'
=>
undef
,
'warnings::register'
=>
undef
,
);
$released
{
'5.000'
} =
$released
{5};
$version
{
'5.000'
} =
$version
{5};
_create_aliases(\
%released
);
_create_aliases(\
%version
);
_create_aliases(\
%deprecated
);
sub
_create_aliases {
my
(
$hash
) =
@_
;
for
my
$version
(
keys
%$hash
) {
next
unless
$version
>= 5.010;
my
$padded
=
sprintf
"%0.6f"
,
$version
;
if
(
$padded
ne
$version
&&
$version
==
$padded
) {
$hash
->{
$padded
} =
$hash
->{
$version
};
}
}
}
1;