From f7528e16d0b40d2dce8c7731d11d11fa35461088 Mon Sep 17 00:00:00 2001 From: James E Keenan Date: Mon, 21 Jan 2019 14:20:40 -0500 Subject: [PATCH] NOT READY FOR MERGING (see below). 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. --- MANIFEST | 1 + dist/Carp/lib/Carp.pm | 2 +- dist/Carp/lib/Carp/Heavy.pm | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/MANIFEST b/MANIFEST index e28245202868..ac74b952c155 100644 --- a/MANIFEST +++ b/MANIFEST @@ -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 diff --git a/dist/Carp/lib/Carp.pm b/dist/Carp/lib/Carp.pm index d53308ac3e0c..c465daa81c5f 100644 --- a/dist/Carp/lib/Carp.pm +++ b/dist/Carp/lib/Carp.pm @@ -211,7 +211,7 @@ BEGIN { } -our $VERSION = '1.50'; +our $VERSION = '1.51'; $VERSION =~ tr/_//d; our $MaxEvalLen = 0; diff --git a/dist/Carp/lib/Carp/Heavy.pm b/dist/Carp/lib/Carp/Heavy.pm index a9b803c76ad6..028d2a206e99 100644 --- a/dist/Carp/lib/Carp/Heavy.pm +++ b/dist/Carp/lib/Carp/Heavy.pm @@ -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