From fe6739140f826f58cb1f9fcb37a95f01483de954 Mon Sep 17 00:00:00 2001 From: James E Keenan Date: Sun, 19 Sep 2021 16:49:31 -0400 Subject: [PATCH] CPAN version 6.11 Update $VERSION throughout. Update Changes. --- Changes | 10 ++++++++++ bin/nytprofcalls | 2 +- bin/nytprofcsv | 2 +- bin/nytprofhtml | 2 +- bin/nytprofmerge | 2 +- bin/nytprofpf | 2 +- lib/Devel/NYTProf.pm | 2 +- lib/Devel/NYTProf/Core.pm | 2 +- 8 files changed, 17 insertions(+), 7 deletions(-) diff --git a/Changes b/Changes index db7b8cf3..94875c00 100644 --- a/Changes +++ b/Changes @@ -4,6 +4,16 @@ History of significant changes in Devel::NYTProf +=head2 Changes in Devel::NYTProf 6.11 - 19th Sep 2021 + +Removed F in L. +In L 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 5; diff --git a/bin/nytprofhtml b/bin/nytprofhtml index 202cb520..0c02e142 100755 --- a/bin/nytprofhtml +++ b/bin/nytprofhtml @@ -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"; diff --git a/bin/nytprofmerge b/bin/nytprofmerge index 3a726a75..69b31e6b 100755 --- a/bin/nytprofmerge +++ b/bin/nytprofmerge @@ -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"; diff --git a/bin/nytprofpf b/bin/nytprofpf index f2658d18..cb14097b 100755 --- a/bin/nytprofpf +++ b/bin/nytprofpf @@ -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"; diff --git a/lib/Devel/NYTProf.pm b/lib/Devel/NYTProf.pm index be697dc0..07e01595 100644 --- a/lib/Devel/NYTProf.pm +++ b/lib/Devel/NYTProf.pm @@ -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; diff --git a/lib/Devel/NYTProf/Core.pm b/lib/Devel/NYTProf/Core.pm index c4486687..5b4fcc3b 100644 --- a/lib/Devel/NYTProf/Core.pm +++ b/lib/Devel/NYTProf/Core.pm @@ -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);