Skip to content

Commit

Permalink
Bump version and update Changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
timbunce committed Mar 23, 2018
1 parent b7d273f commit 4880e57
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 7 deletions.
13 changes: 13 additions & 0 deletions Changes
Expand Up @@ -4,6 +4,19 @@ Devel::NYTProf::Changes - History of significant changes in Devel::NYTProf

=cut

=head2 Changes in Devel::NYTProf 6.05 - 23rd March 2018

Fix test failures on Perl 5.27.6+ #113

Fix to prevent memory corruption in incr_sub_inclusive_time
thanks to lucrocha #115

Fix test failures on Perl 5.26 w/ PERL_USE_UNSAFE_INC=0,
thanks to Kent Fredric #112

Fix for the double opening of the web browser with --open,
thanks to trizen #107

=head2 Changes in Devel::NYTProf 6.04 - 24th November 2016

Fixed build on perl 5.25+ due to OpSIBLING, thanks to Dan Collins #102
Expand Down
2 changes: 1 addition & 1 deletion bin/nytprofcalls
Expand Up @@ -14,7 +14,7 @@ use strict;
use Devel::NYTProf::Core;
require Devel::NYTProf::Data;

our $VERSION = '6.04';
our $VERSION = '6.05';

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

use Devel::NYTProf::Reader;

our $VERSION = '6.04';
our $VERSION = '6.05';

use constant NUMERIC_PRECISION => 5;

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

our $VERSION = '6.04';
our $VERSION = '6.05';

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
Expand Up @@ -16,7 +16,7 @@ require Devel::NYTProf::FileHandle;
require Devel::NYTProf::Data;
use List::Util qw(min sum);

our $VERSION = '6.04';
our $VERSION = '6.05';

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
Expand Up @@ -54,7 +54,7 @@ use Devel::NYTProf::Util qw(
);
use Devel::NYTProf::Constants qw(NYTP_SCi_CALLING_SUB);

our $VERSION = '6.04';
our $VERSION = '6.05';

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
Expand Up @@ -9,7 +9,7 @@
###########################################################
package Devel::NYTProf;

our $VERSION = '6.04'; # also change in Devel::NYTProf::Core
our $VERSION = '6.05'; # 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
Expand Up @@ -12,7 +12,7 @@ package Devel::NYTProf::Core;

use XSLoader;

our $VERSION = '6.04'; # increment with XS changes too
our $VERSION = '6.05'; # increment with XS changes too

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

Expand Down

0 comments on commit 4880e57

Please sign in to comment.