summaryrefslogtreecommitdiff
path: root/lib/Fatal.pm
diff options
context:
space:
mode:
authorPaul Fenwick <pjf@perltraining.com.au>2009-07-02 23:55:08 +1000
committerH.Merijn Brand <h.m.brand@xs4all.nl>2009-07-02 16:24:04 +0200
commit6c4f9c520f7c863966a9eaf04834a7f12d49a9bc (patch)
treec6c47c67df569c72e97f1207072779725864fdea /lib/Fatal.pm
parentaa51dd4123784e6e747b83403a96885ffb248802 (diff)
downloadperl-6c4f9c520f7c863966a9eaf04834a7f12d49a9bc.tar.gz
Upgrade autodie to 2.04
G'day p5p, Sorry about the slew of autodie patches. This is hopefully the last one you'll see for a while, and merely fixes some nits in the test suite. Generated against the latest blead, but there's a chance some of these changes may already be applied. Apologies for any inconvenience caused. All the best, Paul -- Paul Fenwick <pjf@perltraining.com.au> | http://perltraining.com.au/ Director of Training | Ph: +61 3 9354 6001 Perl Training Australia | Fax: +61 3 9354 2681 From 2ac05f822da3f96c6453dd32570bc76e4a8e1489 Mon Sep 17 00:00:00 2001 From: Paul Fenwick <pjf@perltraining.com.au> Date: Thu, 2 Jul 2009 23:46:53 +1000 Subject: [PATCH] Upgrade autodie to 2.04 * TEST: Removed spurious warning about insufficient credit. * TEST: hints.t produces less debugging output when testing the Perl core. (Thanks to Jerry D. Hedden) * TEST: hints.t no longer spuriously fails when checking the return values from File::Copy under Windows before Perl 5.10.1. (Thanks to Curtis Jewell) Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
Diffstat (limited to 'lib/Fatal.pm')
-rw-r--r--lib/Fatal.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Fatal.pm b/lib/Fatal.pm
index e65cc57049..be20a2b89a 100644
--- a/lib/Fatal.pm
+++ b/lib/Fatal.pm
@@ -39,7 +39,7 @@ use constant ERROR_58_HINTS => q{Non-subroutine %s hints for %s are not supporte
use constant MIN_IPC_SYS_SIMPLE_VER => 0.12;
# All the Fatal/autodie modules share the same version number.
-our $VERSION = '2.03';
+our $VERSION = '2.04';
our $Debug ||= 0;
@@ -98,7 +98,7 @@ my %TAGS = (
':2.01' => [qw(:default)],
':2.02' => [qw(:default)],
':2.03' => [qw(:default)],
-
+ ':2.04' => [qw(:default)],
);
$TAGS{':all'} = [ keys %TAGS ];