Skip to content

Commit

Permalink
NOT READY FOR MERGING (see below).
Browse files Browse the repository at this point in the history
Keep porting tests happy.  Carp and Carp::Heavy must have same $VERSION.

The significant changes to Carp.pm in this branch are having the effect
of new warnings being generated during dist/Carp/t/stash_deletion.t.
This needs investigation.
  • Loading branch information
jkeenan committed Jan 21, 2019
1 parent 7fe5bb2 commit f7528e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions MANIFEST
Expand Up @@ -2944,6 +2944,7 @@ dist/Carp/t/Carp_overloadless.t See if Carp handles overloads that dont use ove
dist/Carp/t/errno.t See if Carp preserves $! and $^E
dist/Carp/t/heavy.t See if Carp::Heavy works
dist/Carp/t/heavy_mismatch.t See if Carp::Heavy catches version mismatch
dist/Carp/t/rt133776-no-warn-on-undef-args.t Filter undefined values from function arguments
dist/Carp/t/stack_after_err.t Test stack traces after syntax errors
dist/Carp/t/stash_deletion.t See if Carp handles stash deletion
dist/Carp/t/swash.t See if Carp avoids breaking swash loading
Expand Down
2 changes: 1 addition & 1 deletion dist/Carp/lib/Carp.pm
Expand Up @@ -211,7 +211,7 @@ BEGIN {
}


our $VERSION = '1.50';
our $VERSION = '1.51';
$VERSION =~ tr/_//d;

our $MaxEvalLen = 0;
Expand Down
2 changes: 1 addition & 1 deletion dist/Carp/lib/Carp/Heavy.pm
Expand Up @@ -2,7 +2,7 @@ package Carp::Heavy;

use Carp ();

our $VERSION = '1.50';
our $VERSION = '1.51';
$VERSION =~ tr/_//d;

# Carp::Heavy was merged into Carp in version 1.12. Any mismatched versions
Expand Down

0 comments on commit f7528e1

Please sign in to comment.