Re: [cpan #17773] Bug in Term::ReadKey being trigger by a bug in Term::ReadLine
[p5sagit/p5-mst-13.2.git] / ext / Devel / DProf / DProf.pm
index 1a22b75..49ba6bc 100644 (file)
@@ -6,7 +6,7 @@ Devel::DProf - a Perl code profiler
 
 =head1 SYNOPSIS
 
-       perl5 -d:DProf test.pl
+       perl -d:DProf test.pl
 
 =head1 DESCRIPTION
 
@@ -21,7 +21,7 @@ To profile a Perl script run the perl interpreter with the B<-d> debugging
 switch.  The profiler uses the debugging hooks.  So to profile script
 F<test.pl> the following command should be used:
 
-       perl5 -d:DProf test.pl
+       perl -d:DProf test.pl
 
 When the script terminates (or when the output buffer is filled) the
 profiler will dump the profile information to a file called
@@ -205,9 +205,8 @@ sub DB {
 
 use XSLoader ();
 
-# Underscore to allow older Perls to access older version from CPAN
-$Devel::DProf::VERSION = '20030801.00_00';  # this version not authorized by
-                                    # Dean Roehrich. See "Changes" file.
+$Devel::DProf::VERSION = '20050603.00';  # this version not authorized by
+                                        # Dean Roehrich. See "Changes" file.
 
 XSLoader::load 'Devel::DProf', $Devel::DProf::VERSION;