Revision: 1005 Author: tim.bunce Date: Mon Jan 4 12:33:17 2010 Log: 3.01, as released (forgot to check this in - D'oh!)
http://code.google.com/p/perl-devel-nytprof/source/detail?r=1005 Modified: /trunk/Changes /trunk/HACKING /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 Mon Dec 28 14:29:41 2009 +++ /trunk/Changes Mon Jan 4 12:33:17 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.01 +=head2 Changes in Devel::NYTProf 3.01 (svn r1005) 28th Dec 2009 Fixed (removed) use of vfscanf() which broke on Windows. Fixed version number in nytprofmerge. ======================================= --- /trunk/HACKING Thu Dec 17 16:01:26 2009 +++ /trunk/HACKING Mon Jan 4 12:33:17 2010 @@ -381,3 +381,7 @@ That would be handy because currently calls from xsubs & opcodes appear in the reports at the line of the last _perl_ statement executed, and not in the fake 'stub' that we add to the end of the package source. + +Use gethrtime() on platforms that support it. +http://developers.sun.com/solaris/articles/time_stamp.html +http://www.informit.com/guides/content.aspx?g=cplusplus&seqNum=332 ======================================= --- /trunk/bin/nytprofcsv Fri Dec 25 11:09:40 2009 +++ /trunk/bin/nytprofcsv Mon Jan 4 12:33:17 2010 @@ -18,7 +18,7 @@ use Devel::NYTProf::Reader; -our $VERSION = '3.00'; +our $VERSION = '3.01'; use constant NUMERIC_PRECISION => 5; ======================================= --- /trunk/bin/nytprofhtml Thu Dec 24 06:40:14 2009 +++ /trunk/bin/nytprofhtml Mon Jan 4 12:33:17 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.00'; +our $VERSION = '3.01'; 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 Fri Dec 25 11:37:03 2009 +++ /trunk/bin/nytprofmerge Mon Jan 4 12:33:17 2010 @@ -17,7 +17,7 @@ require Devel::NYTProf::FileHandle; use Devel::NYTProf::ReadStream qw(for_chunks); -our $VERSION = '3.00'; +our $VERSION = '3.01'; 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 Thu Dec 24 06:40:14 2009 +++ /trunk/lib/Devel/NYTProf/Apache.pm Mon Jan 4 12:33:17 2010 @@ -11,7 +11,7 @@ ########################################################### package Devel::NYTProf::Apache; -our $VERSION = '3.00'; +our $VERSION = '3.01'; BEGIN { ======================================= --- /trunk/lib/Devel/NYTProf/Core.pm Thu Dec 24 06:40:14 2009 +++ /trunk/lib/Devel/NYTProf/Core.pm Mon Jan 4 12:33:17 2010 @@ -14,7 +14,7 @@ use XSLoader; -our $VERSION = '3.00'; # increment with XS changes too +our $VERSION = '3.01'; # increment with XS changes too XSLoader::load('Devel::NYTProf', $VERSION); ======================================= --- /trunk/lib/Devel/NYTProf/Data.pm Thu Dec 24 06:40:14 2009 +++ /trunk/lib/Devel/NYTProf/Data.pm Mon Jan 4 12:33:17 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.00'; +our $VERSION = '3.01'; my $trace = (($ENV{NYTPROF}||'') =~ m/\b trace=(\d+) /x) && $1; # XXX a hack ======================================= --- /trunk/lib/Devel/NYTProf/ReadStream.pm Thu Dec 24 06:40:14 2009 +++ /trunk/lib/Devel/NYTProf/ReadStream.pm Mon Jan 4 12:33:17 2010 @@ -3,7 +3,7 @@ use warnings; use strict; -our $VERSION = '3.00'; +our $VERSION = '3.01'; use base 'Exporter'; our @EXPORT_OK = qw( ======================================= --- /trunk/lib/Devel/NYTProf/Reader.pm Mon Dec 28 03:52:34 2009 +++ /trunk/lib/Devel/NYTProf/Reader.pm Mon Jan 4 12:33:17 2010 @@ -11,7 +11,7 @@ ########################################################### package Devel::NYTProf::Reader; -our $VERSION = '3.00'; +our $VERSION = '3.01'; use warnings; use strict; ======================================= --- /trunk/lib/Devel/NYTProf/Util.pm Thu Dec 24 06:40:14 2009 +++ /trunk/lib/Devel/NYTProf/Util.pm Mon Jan 4 12:33:17 2010 @@ -40,7 +40,7 @@ use List::Util qw(sum); #use UNIVERSAL qw( isa can VERSION ); -our $VERSION = '3.00'; +our $VERSION = '3.01'; our @EXPORT_OK = qw( fmt_float ======================================= --- /trunk/lib/Devel/NYTProf.pm Mon Dec 28 14:29:41 2009 +++ /trunk/lib/Devel/NYTProf.pm Mon Jan 4 12:33:17 2010 @@ -11,7 +11,7 @@ ########################################################### package Devel::NYTProf; -our $VERSION = '3.00'; +our $VERSION = '3.01'; 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]
