Revert autodie version bump
authorDavid Golden <dagolden@cpan.org>
Mon, 20 Jun 2011 18:45:37 +0000 (14:45 -0400)
committerDavid Golden <dagolden@cpan.org>
Mon, 20 Jun 2011 18:45:37 +0000 (14:45 -0400)
autodie has not changed from CPAN, though blead has locally patched
a single test file to avoid a platform specific failure.

This change keeps the original CPAN version numbering, as the
local test file patch is now tracked in Porting/Maintainers.pl

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