Skip to content

Commit

Permalink
Increment $VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeenan committed May 9, 2021
1 parent 487b044 commit 1941fd4
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
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.09';
our $VERSION = '6.10';

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.09';
our $VERSION = '6.10';

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.09';
our $VERSION = '6.10';

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.09';
our $VERSION = '6.10';

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.09';
our $VERSION = '6.10';

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.09'; # also change in Devel::NYTProf::Core
our $VERSION = '6.10'; # 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/Apache.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
###########################################################
package Devel::NYTProf::Apache;

our $VERSION = '6.09';
our $VERSION = '6.10';

BEGIN {

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.09'; # increment with XS changes too
our $VERSION = '6.10'; # increment with XS changes too

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

Expand Down
2 changes: 1 addition & 1 deletion lib/Devel/NYTProf/Data.pm
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ use Devel::NYTProf::FileInfo;
use Devel::NYTProf::SubInfo;
use Devel::NYTProf::Util qw( trace_level _dumper );

our $VERSION = '6.09';
our $VERSION = '6.10';


=head2 new
Expand Down
2 changes: 1 addition & 1 deletion lib/Devel/NYTProf/ReadStream.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Devel::NYTProf::ReadStream;
use warnings;
use strict;

our $VERSION = '6.09';
our $VERSION = '6.10';

use base 'Exporter';
our @EXPORT_OK = qw(
Expand Down
2 changes: 1 addition & 1 deletion lib/Devel/NYTProf/Reader.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
###########################################################
package Devel::NYTProf::Reader;

our $VERSION = '6.09';
our $VERSION = '6.10';

use warnings;
use strict;
Expand Down
2 changes: 1 addition & 1 deletion lib/Devel/NYTProf/Util.pm
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ use Cwd qw(getcwd);
use List::Util qw(sum);
use Devel::NYTProf::Core;

our $VERSION = '6.09';
our $VERSION = '6.10';

our @EXPORT_OK = qw(
fmt_float
Expand Down

0 comments on commit 1941fd4

Please sign in to comment.