Revision: 1157
Author: tim.bunce
Date: Tue Mar  9 02:35:10 2010
Log: Prep for dev release. Bumped version. Added Changes.

http://code.google.com/p/perl-devel-nytprof/source/detail?r=1157

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      Thu Mar  4 16:23:18 2010
+++ /trunk/Changes      Tue Mar  9 02:35:10 2010
@@ -13,6 +13,13 @@
 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.11 (svn 1157) 9th March 2010
+
+  Refactored I/O to create an API that encapsulates the data
+    file format, thanks to Nicholas Clark.
+  Updated and optimized nytprofmerge to use the new API
+    thanks to Nicholas Clark.
+
 =head2 Changes in Devel::NYTProf 3.02 (svn 1094) 5th March 2010

   Fixed handling of usecputime=1 option and updated
=======================================
--- /trunk/bin/nytprofcsv       Sat Feb 20 08:31:12 2010
+++ /trunk/bin/nytprofcsv       Tue Mar  9 02:35:10 2010
@@ -18,7 +18,7 @@

 use Devel::NYTProf::Reader;

-our $VERSION = '3.02';
+our $VERSION = '3.11';

 use constant NUMERIC_PRECISION => 5;

=======================================
--- /trunk/bin/nytprofhtml      Sat Feb 27 14:11:08 2010
+++ /trunk/bin/nytprofhtml      Tue Mar  9 02:35:10 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.02';
+our $VERSION = '3.11';

 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     Mon Mar  8 01:50:46 2010
+++ /trunk/bin/nytprofmerge     Tue Mar  9 02:35:10 2010
@@ -18,7 +18,7 @@
 require Devel::NYTProf::Data;
 use List::Util qw(min);

-our $VERSION = '3.02';
+our $VERSION = '3.11';

 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  Sat Feb 20 08:31:12 2010
+++ /trunk/lib/Devel/NYTProf/Apache.pm  Tue Mar  9 02:35:10 2010
@@ -11,7 +11,7 @@
 ###########################################################
 package Devel::NYTProf::Apache;

-our $VERSION = '3.02';
+our $VERSION = '3.11';

 BEGIN {

=======================================
--- /trunk/lib/Devel/NYTProf/Core.pm    Sat Feb 20 08:31:12 2010
+++ /trunk/lib/Devel/NYTProf/Core.pm    Tue Mar  9 02:35:10 2010
@@ -14,7 +14,7 @@

 use XSLoader;

-our $VERSION = '3.02';    # increment with XS changes too
+our $VERSION = '3.11';    # increment with XS changes too

 XSLoader::load('Devel::NYTProf', $VERSION);

=======================================
--- /trunk/lib/Devel/NYTProf/Data.pm    Sat Feb 20 08:31:12 2010
+++ /trunk/lib/Devel/NYTProf/Data.pm    Tue Mar  9 02:35:10 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.02';
+our $VERSION = '3.11';

my $trace = (($ENV{NYTPROF}||'') =~ m/\b trace=(\d+) /x) && $1; # XXX a hack

=======================================
--- /trunk/lib/Devel/NYTProf/ReadStream.pm      Sat Feb 20 08:31:12 2010
+++ /trunk/lib/Devel/NYTProf/ReadStream.pm      Tue Mar  9 02:35:10 2010
@@ -3,7 +3,7 @@
 use warnings;
 use strict;

-our $VERSION = '3.02';
+our $VERSION = '3.11';

 use base 'Exporter';
 our @EXPORT_OK = qw(
=======================================
--- /trunk/lib/Devel/NYTProf/Reader.pm  Mon Mar  1 12:16:33 2010
+++ /trunk/lib/Devel/NYTProf/Reader.pm  Tue Mar  9 02:35:10 2010
@@ -11,7 +11,7 @@
 ###########################################################
 package Devel::NYTProf::Reader;

-our $VERSION = '3.02';
+our $VERSION = '3.11';

 use warnings;
 use strict;
=======================================
--- /trunk/lib/Devel/NYTProf/Util.pm    Sat Feb 20 08:31:12 2010
+++ /trunk/lib/Devel/NYTProf/Util.pm    Tue Mar  9 02:35:10 2010
@@ -40,7 +40,7 @@
 use List::Util qw(sum);
 #use UNIVERSAL qw( isa can VERSION );

-our $VERSION = '3.02';
+our $VERSION = '3.11';

 our @EXPORT_OK = qw(
     fmt_float
=======================================
--- /trunk/lib/Devel/NYTProf.pm Mon Mar  1 09:18:51 2010
+++ /trunk/lib/Devel/NYTProf.pm Tue Mar  9 02:35:10 2010
@@ -11,7 +11,7 @@
 ###########################################################
 package Devel::NYTProf;

-our $VERSION = '3.02';
+our $VERSION = '3.11';

 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]

Reply via email to