Revision: 1076
Author: tim.bunce
Date: Sat Feb 20 08:31:12 2010
Log: Prep for 3.02 (actually 3.01_90) release
http://code.google.com/p/perl-devel-nytprof/source/detail?r=1076
Modified:
/trunk/Changes
/trunk/bin/nytprofcsv
/trunk/bin/nytprofhtml
/trunk/bin/nytprofmerge
/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 Sat Feb 20 08:19:13 2010
+++ /trunk/Changes Sat Feb 20 08:31:12 2010
@@ -13,7 +13,7 @@
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.02
+=head2 Changes in Devel::NYTProf 3.01_90 (svn 1076) 20th Feb 2010
Fixed handling of usecputime=1 option and updated
docs to note the significant limitations.
=======================================
--- /trunk/bin/nytprofcsv Mon Jan 4 12:33:17 2010
+++ /trunk/bin/nytprofcsv Sat Feb 20 08:31:12 2010
@@ -18,7 +18,7 @@
use Devel::NYTProf::Reader;
-our $VERSION = '3.01';
+our $VERSION = '3.02';
use constant NUMERIC_PRECISION => 5;
=======================================
--- /trunk/bin/nytprofhtml Sat Feb 20 08:26:38 2010
+++ /trunk/bin/nytprofhtml Sat Feb 20 08:31:12 2010
@@ -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 = '3.01';
+our $VERSION = '3.02';
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/bin/nytprofmerge Sat Feb 20 07:28:32 2010
+++ /trunk/bin/nytprofmerge Sat Feb 20 08:31:12 2010
@@ -18,7 +18,7 @@
use Devel::NYTProf::ReadStream qw(for_chunks);
use List::Util qw(min);
-our $VERSION = '3.01';
+our $VERSION = '3.02';
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 Mon Jan 4 12:33:17 2010
+++ /trunk/lib/Devel/NYTProf/Apache.pm Sat Feb 20 08:31:12 2010
@@ -11,7 +11,7 @@
###########################################################
package Devel::NYTProf::Apache;
-our $VERSION = '3.01';
+our $VERSION = '3.02';
BEGIN {
=======================================
--- /trunk/lib/Devel/NYTProf/Core.pm Mon Jan 4 12:33:17 2010
+++ /trunk/lib/Devel/NYTProf/Core.pm Sat Feb 20 08:31:12 2010
@@ -14,7 +14,7 @@
use XSLoader;
-our $VERSION = '3.01'; # increment with XS changes too
+our $VERSION = '3.02'; # increment with XS changes too
XSLoader::load('Devel::NYTProf', $VERSION);
=======================================
--- /trunk/lib/Devel/NYTProf/Data.pm Sat Feb 20 07:28:32 2010
+++ /trunk/lib/Devel/NYTProf/Data.pm Sat Feb 20 08:31:12 2010
@@ -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 = '3.01';
+our $VERSION = '3.02';
my $trace = (($ENV{NYTPROF}||'') =~ m/\b trace=(\d+) /x) && $1; # XXX a
hack
=======================================
--- /trunk/lib/Devel/NYTProf/ReadStream.pm Mon Jan 4 12:33:17 2010
+++ /trunk/lib/Devel/NYTProf/ReadStream.pm Sat Feb 20 08:31:12 2010
@@ -3,7 +3,7 @@
use warnings;
use strict;
-our $VERSION = '3.01';
+our $VERSION = '3.02';
use base 'Exporter';
our @EXPORT_OK = qw(
=======================================
--- /trunk/lib/Devel/NYTProf/Reader.pm Thu Jan 21 04:24:04 2010
+++ /trunk/lib/Devel/NYTProf/Reader.pm Sat Feb 20 08:31:12 2010
@@ -11,7 +11,7 @@
###########################################################
package Devel::NYTProf::Reader;
-our $VERSION = '3.01';
+our $VERSION = '3.02';
use warnings;
use strict;
=======================================
--- /trunk/lib/Devel/NYTProf/Util.pm Mon Jan 4 12:33:17 2010
+++ /trunk/lib/Devel/NYTProf/Util.pm Sat Feb 20 08:31:12 2010
@@ -40,7 +40,7 @@
use List::Util qw(sum);
#use UNIVERSAL qw( isa can VERSION );
-our $VERSION = '3.01';
+our $VERSION = '3.02';
our @EXPORT_OK = qw(
fmt_float
=======================================
--- /trunk/lib/Devel/NYTProf.pm Sat Feb 20 05:21:47 2010
+++ /trunk/lib/Devel/NYTProf.pm Sat Feb 20 08:31:12 2010
@@ -11,7 +11,7 @@
###########################################################
package Devel::NYTProf;
-our $VERSION = '3.01';
+our $VERSION = '3.02';
package # hide the package from the PAUSE indexer
DB;
--
You've received this message because you are subscribed to
the Devel::NYTProf Development User group.
Group hosted at: http://groups.google.com/group/develnytprof-dev
Project hosted at: http://perl-devel-nytprof.googlecode.com
CPAN distribution: http://search.cpan.org/dist/Devel-NYTProf
To post, email: [email protected]
To unsubscribe, email: [email protected]