From 9b9d36a91f6863624ca14f8fae0fa7a47ae89091 Mon Sep 17 00:00:00 2001 From: James E Keenan Date: Sat, 7 Oct 2023 22:21:43 -0400 Subject: [PATCH] Bump $VERSION to 6.12_003 due to PAUSE upload problem --- bin/nytprofcalls | 2 +- bin/nytprofcsv | 2 +- bin/nytprofhtml | 2 +- bin/nytprofmerge | 2 +- lib/Devel/NYTProf.pm | 2 +- lib/Devel/NYTProf/Apache.pm | 2 +- lib/Devel/NYTProf/Core.pm | 2 +- lib/Devel/NYTProf/Data.pm | 2 +- lib/Devel/NYTProf/ReadStream.pm | 2 +- lib/Devel/NYTProf/Reader.pm | 2 +- lib/Devel/NYTProf/Util.pm | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/bin/nytprofcalls b/bin/nytprofcalls index 896eaf35..e7735be0 100755 --- a/bin/nytprofcalls +++ b/bin/nytprofcalls @@ -14,7 +14,7 @@ use strict; use Devel::NYTProf::Core; require Devel::NYTProf::Data; -our $VERSION = '6.12_002'; +our $VERSION = '6.12_003'; use Data::Dumper; use Getopt::Long; diff --git a/bin/nytprofcsv b/bin/nytprofcsv index 2a268672..3d6e88f4 100755 --- a/bin/nytprofcsv +++ b/bin/nytprofcsv @@ -16,7 +16,7 @@ use Getopt::Long; use Devel::NYTProf::Reader; -our $VERSION = '6.12_002'; +our $VERSION = '6.12_003'; use constant NUMERIC_PRECISION => 5; diff --git a/bin/nytprofhtml b/bin/nytprofhtml index 79a55050..fb67d5c5 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.12_002'; +our $VERSION = '6.12_003'; 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 15b86c0e..327f41a5 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.12_002'; +our $VERSION = '6.12_003'; 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 924e0f08..7842d65a 100644 --- a/lib/Devel/NYTProf.pm +++ b/lib/Devel/NYTProf.pm @@ -9,7 +9,7 @@ ########################################################### package Devel::NYTProf; -our $VERSION = '6.12_002'; # also change in Devel::NYTProf::Core +our $VERSION = '6.12_003'; # also change in Devel::NYTProf::Core package # hide the package from the PAUSE indexer DB; diff --git a/lib/Devel/NYTProf/Apache.pm b/lib/Devel/NYTProf/Apache.pm index 6f20420f..1edae392 100644 --- a/lib/Devel/NYTProf/Apache.pm +++ b/lib/Devel/NYTProf/Apache.pm @@ -9,7 +9,7 @@ ########################################################### package Devel::NYTProf::Apache; -our $VERSION = '6.12_002'; +our $VERSION = '6.12_003'; BEGIN { diff --git a/lib/Devel/NYTProf/Core.pm b/lib/Devel/NYTProf/Core.pm index 3fa9c205..c97e3b0d 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.12_002'; # increment with XS changes too +our $VERSION = '6.12_003'; # increment with XS changes too XSLoader::load('Devel::NYTProf', $VERSION); diff --git a/lib/Devel/NYTProf/Data.pm b/lib/Devel/NYTProf/Data.pm index 377e324a..68361f82 100644 --- a/lib/Devel/NYTProf/Data.pm +++ b/lib/Devel/NYTProf/Data.pm @@ -55,7 +55,7 @@ use Devel::NYTProf::FileInfo; use Devel::NYTProf::SubInfo; use Devel::NYTProf::Util qw( trace_level _dumper ); -our $VERSION = '6.12_002'; +our $VERSION = '6.12_003'; =head2 new diff --git a/lib/Devel/NYTProf/ReadStream.pm b/lib/Devel/NYTProf/ReadStream.pm index 636380f4..320a7484 100644 --- a/lib/Devel/NYTProf/ReadStream.pm +++ b/lib/Devel/NYTProf/ReadStream.pm @@ -3,7 +3,7 @@ package Devel::NYTProf::ReadStream; use warnings; use strict; -our $VERSION = '6.12_002'; +our $VERSION = '6.12_003'; use base 'Exporter'; our @EXPORT_OK = qw( diff --git a/lib/Devel/NYTProf/Reader.pm b/lib/Devel/NYTProf/Reader.pm index 08124257..cae99179 100644 --- a/lib/Devel/NYTProf/Reader.pm +++ b/lib/Devel/NYTProf/Reader.pm @@ -9,7 +9,7 @@ ########################################################### package Devel::NYTProf::Reader; -our $VERSION = '6.12_002'; +our $VERSION = '6.12_003'; use warnings; use strict; diff --git a/lib/Devel/NYTProf/Util.pm b/lib/Devel/NYTProf/Util.pm index 4e1cea78..24f2e0ed 100644 --- a/lib/Devel/NYTProf/Util.pm +++ b/lib/Devel/NYTProf/Util.pm @@ -40,7 +40,7 @@ use Cwd qw(getcwd); use List::Util qw(sum); use Devel::NYTProf::Core; -our $VERSION = '6.12_002'; +our $VERSION = '6.12_003'; our @EXPORT_OK = qw( fmt_float