http://code.google.com/p/perl-devel-nytprof/source/detail?r=998
Modified:
/trunk/Changes
/trunk/bin/nytprofcsv
/trunk/bin/nytprofhtml
/trunk/lib/Devel/NYTProf/Apache.pm
/trunk/lib/Devel/NYTProf/Core.pm
/trunk/lib/Devel/NYTProf/Data.pm
/trunk/lib/Devel/NYTProf/ReadStream.pm
/trunk/lib/Devel/NYTProf/Reader.pm
/trunk/lib/Devel/NYTProf/Util.pm
/trunk/lib/Devel/NYTProf.pm
=======================================
--- /trunk/Changes Tue Dec 22 11:15:32 2009
+++ /trunk/Changes Thu Dec 24 06:40:14 2009
@@ -4,12 +4,16 @@
(As of $Date$ $Revision$)
-=head2 Changes in Devel::NYTProf 2.11
-
-XXX subroutine profiler docs need update
-XXX add u key to treemap to trigger moving 'up' a level
-XXX add "calls N subs" to treemap mouseover box
-XXX string eval merging - must allow at least viewing of source for called
subs defined in a nested eval
+=cut
+
+TODO soonish
+
+subroutine profiler docs need update
+add u key to treemap to trigger moving 'up' a level
+add "calls N subs" to treemap mouseover box
+string eval merging - must allow at least viewing of source for called
subs defined in a nested eval
+
+=head2 Changes in Devel::NYTProf 3.00 (svn r998) 24th Dec 2009
Note: The file format has changed. Old files can't be read.
=======================================
--- /trunk/bin/nytprofcsv Sat Jun 6 21:43:26 2009
+++ /trunk/bin/nytprofcsv Thu Dec 24 06:40:14 2009
@@ -18,7 +18,7 @@
use Devel::NYTProf::Reader;
-our $VERSION = 1.02;
+our $VERSION = '3.00';
use constant NUMERIC_PRECISION => 5;
=======================================
--- /trunk/bin/nytprofhtml Thu Dec 24 06:27:58 2009
+++ /trunk/bin/nytprofhtml Thu Dec 24 06:40:14 2009
@@ -30,7 +30,7 @@
my $json_any = eval { require JSON::Any; JSON::Any->import; JSON::Any->new
}
or warn "Can't load JSON::Any module - HTML visualizations skipped.\n";
-our $VERSION = '2.11';
+our $VERSION = '3.00';
if ($VERSION != $Devel::NYTProf::Core::VERSION) {
die "$0 version '$VERSION' doesn't match
version '$Devel::NYTProf::Core::VERSION' of
$INC{'Devel/NYTProf/Core.pm'}\n";
=======================================
--- /trunk/lib/Devel/NYTProf/Apache.pm Wed Jan 28 13:55:40 2009
+++ /trunk/lib/Devel/NYTProf/Apache.pm Thu Dec 24 06:40:14 2009
@@ -11,7 +11,7 @@
###########################################################
package Devel::NYTProf::Apache;
-our $VERSION = 0.02;
+our $VERSION = '3.00';
BEGIN {
=======================================
--- /trunk/lib/Devel/NYTProf/Core.pm Thu Oct 22 09:24:17 2009
+++ /trunk/lib/Devel/NYTProf/Core.pm Thu Dec 24 06:40:14 2009
@@ -14,7 +14,7 @@
use XSLoader;
-our $VERSION = '2.11'; # increment with XS changes too
+our $VERSION = '3.00'; # increment with XS changes too
XSLoader::load('Devel::NYTProf', $VERSION);
=======================================
--- /trunk/lib/Devel/NYTProf/Data.pm Thu Dec 10 02:46:54 2009
+++ /trunk/lib/Devel/NYTProf/Data.pm Thu Dec 24 06:40:14 2009
@@ -52,7 +52,7 @@
use Devel::NYTProf::SubInfo;
use Devel::NYTProf::Util qw(make_path_strip_editor strip_prefix_from_paths
get_abs_paths_alternation_regex);
-our $VERSION = '2.11';
+our $VERSION = '3.00';
my $trace = (($ENV{NYTPROF}||'') =~ m/\b trace=(\d+) /x) && $1; # XXX a
hack
=======================================
--- /trunk/lib/Devel/NYTProf/ReadStream.pm Wed Dec 16 09:56:07 2009
+++ /trunk/lib/Devel/NYTProf/ReadStream.pm Thu Dec 24 06:40:14 2009
@@ -3,7 +3,7 @@
use warnings;
use strict;
-our $VERSION = '2.11';
+our $VERSION = '3.00';
use base 'Exporter';
our @EXPORT_OK = qw(
=======================================
--- /trunk/lib/Devel/NYTProf/Reader.pm Tue Dec 22 14:14:33 2009
+++ /trunk/lib/Devel/NYTProf/Reader.pm Thu Dec 24 06:40:14 2009
@@ -11,7 +11,7 @@
###########################################################
package Devel::NYTProf::Reader;
-our $VERSION = '2.11';
+our $VERSION = '3.00';
use warnings;
use strict;
=======================================
--- /trunk/lib/Devel/NYTProf/Util.pm Thu Oct 22 09:24:17 2009
+++ /trunk/lib/Devel/NYTProf/Util.pm Thu Dec 24 06:40:14 2009
@@ -40,7 +40,7 @@
use List::Util qw(sum);
#use UNIVERSAL qw( isa can VERSION );
-our $VERSION = '2.11';
+our $VERSION = '3.00';
our @EXPORT_OK = qw(
fmt_float
=======================================
--- /trunk/lib/Devel/NYTProf.pm Tue Dec 22 14:12:18 2009
+++ /trunk/lib/Devel/NYTProf.pm Thu Dec 24 06:40:14 2009
@@ -11,7 +11,7 @@
###########################################################
package Devel::NYTProf;
-our $VERSION = '2.11';
+our $VERSION = '3.00';
package # hide the package from the PAUSE indexer
DB;