bump autodie version for blead test fix
authorZefram <zefram@fysh.org>
Sun, 19 Dec 2010 10:49:16 +0000 (10:49 +0000)
committerZefram <zefram@fysh.org>
Sun, 19 Dec 2010 10:49:16 +0000 (10:49 +0000)
cpan/autodie/lib/Fatal.pm
cpan/autodie/lib/autodie.pm
cpan/autodie/lib/autodie/exception.pm
cpan/autodie/lib/autodie/exception/system.pm
cpan/autodie/lib/autodie/hints.pm

index aabdf78..d4be87d 100644 (file)
@@ -40,7 +40,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.10';
+our $VERSION = '2.1001';
 
 our $Debug ||= 0;
 
index cb14fb0..25799f0 100644 (file)
@@ -8,7 +8,7 @@ our @ISA = qw(Fatal);
 our $VERSION;
 
 BEGIN {
-    $VERSION = '2.10';
+    $VERSION = '2.1001';
 }
 
 use constant ERROR_WRONG_FATAL => q{
index 14d5cb0..4dd7570 100644 (file)
@@ -14,7 +14,7 @@ use overload
 
 use if ($] >= 5.010), overload => '~~'  => "matches";
 
-our $VERSION = '2.10';
+our $VERSION = '2.1001';
 
 my $PACKAGE = __PACKAGE__;  # Useful to have a scalar for hash keys.
 
index 747fea7..53e7f95 100644 (file)
@@ -5,7 +5,7 @@ use warnings;
 use base 'autodie::exception';
 use Carp qw(croak);
 
-our $VERSION = '2.10';
+our $VERSION = '2.1001';
 
 my $PACKAGE = __PACKAGE__;
 
index 89b3bc8..2c129ec 100644 (file)
@@ -5,7 +5,7 @@ use warnings;
 
 use constant PERL58 => ( $] < 5.009 );
 
-our $VERSION = '2.10';
+our $VERSION = '2.1001';
 
 =head1 NAME