Skip to content

Commit

Permalink
CPAN version 6.11
Browse files Browse the repository at this point in the history
Update $VERSION throughout.  Update Changes.
  • Loading branch information
jkeenan committed Sep 19, 2021
1 parent 80a7ae1 commit fe67391
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 7 deletions.
10 changes: 10 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@

History of significant changes in Devel::NYTProf

=head2 Changes in Devel::NYTProf 6.11 - 19th Sep 2021

Removed F<lib/Devel/NYTProf/js/jquery.floatThead.min.js> in L<GH 194: Remove
jquery.floatThead.min.js|https://github.com/timbunce/devel-nytprof/pull/194>.
In L<GH 192: nytprofhtml - internal anchor links in html pages go to wrong
locations|https://github.com/timbunce/devel-nytprof/issues/192> Shawn Laffan
reported that internal links to anchors in the generated HTML pages were not
correctly positioned in the vertical dimension. Discontinuing use of this
Javascript file appears to correct the problem.

=head2 Changes in Devel::NYTProf 6.10 - 9th May 2021

B<There should be no significant differences in the performance of Devel-NYTProf
Expand Down
2 changes: 1 addition & 1 deletion bin/nytprofcalls
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use strict;
use Devel::NYTProf::Core;
require Devel::NYTProf::Data;

our $VERSION = '6.10';
our $VERSION = '6.11';

use Data::Dumper;
use Getopt::Long;
Expand Down
2 changes: 1 addition & 1 deletion bin/nytprofcsv
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use Getopt::Long;

use Devel::NYTProf::Reader;

our $VERSION = '6.10';
our $VERSION = '6.11';

use constant NUMERIC_PRECISION => 5;

Expand Down
2 changes: 1 addition & 1 deletion bin/nytprofhtml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ use Devel::NYTProf::Util qw(
);
use Devel::NYTProf::Constants qw(NYTP_SCi_CALLING_SUB);

our $VERSION = '6.10';
our $VERSION = '6.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";
Expand Down
2 changes: 1 addition & 1 deletion bin/nytprofmerge
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ require Devel::NYTProf::FileHandle;
require Devel::NYTProf::Data;
use List::Util qw(min sum);

our $VERSION = '6.10';
our $VERSION = '6.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";
Expand Down
2 changes: 1 addition & 1 deletion bin/nytprofpf
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ use Devel::NYTProf::Util qw(
);
use Devel::NYTProf::Constants qw(NYTP_SCi_CALLING_SUB);

our $VERSION = '6.10';
our $VERSION = '6.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";
Expand Down
2 changes: 1 addition & 1 deletion lib/Devel/NYTProf.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
###########################################################
package Devel::NYTProf;

our $VERSION = '6.10'; # also change in Devel::NYTProf::Core
our $VERSION = '6.11'; # also change in Devel::NYTProf::Core

package # hide the package from the PAUSE indexer
DB;
Expand Down
2 changes: 1 addition & 1 deletion lib/Devel/NYTProf/Core.pm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ package Devel::NYTProf::Core;

use XSLoader;

our $VERSION = '6.10'; # increment with XS changes too
our $VERSION = '6.11'; # increment with XS changes too

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

Expand Down

0 comments on commit fe67391

Please sign in to comment.