diff options
author | David Golden <dagolden@cpan.org> | 2011-06-20 14:45:37 -0400 |
---|---|---|
committer | David Golden <dagolden@cpan.org> | 2011-06-20 14:45:37 -0400 |
commit | 179490f13138899d9563a8aab958c053d700afad (patch) | |
tree | 5b487555ae722f6d2aefa87bcdb9f5d49acd442b /cpan/autodie | |
parent | 958577e1ff3e20dde33f86e5db0a236ea6869b2c (diff) | |
download | perl-179490f13138899d9563a8aab958c053d700afad.tar.gz |
Revert autodie version bump
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
Diffstat (limited to 'cpan/autodie')
-rw-r--r-- | cpan/autodie/lib/Fatal.pm | 3 | ||||
-rw-r--r-- | cpan/autodie/lib/autodie.pm | 2 | ||||
-rw-r--r-- | cpan/autodie/lib/autodie/exception.pm | 2 | ||||
-rw-r--r-- | cpan/autodie/lib/autodie/exception/system.pm | 2 | ||||
-rw-r--r-- | cpan/autodie/lib/autodie/hints.pm | 2 |
5 files changed, 5 insertions, 6 deletions
diff --git a/cpan/autodie/lib/Fatal.pm b/cpan/autodie/lib/Fatal.pm index 55b920ba5b..aabdf781de 100644 --- a/cpan/autodie/lib/Fatal.pm +++ b/cpan/autodie/lib/Fatal.pm @@ -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 diff --git a/cpan/autodie/lib/autodie.pm b/cpan/autodie/lib/autodie.pm index 25799f0285..cb14fb037b 100644 --- a/cpan/autodie/lib/autodie.pm +++ b/cpan/autodie/lib/autodie.pm @@ -8,7 +8,7 @@ our @ISA = qw(Fatal); our $VERSION; BEGIN { - $VERSION = '2.1001'; + $VERSION = '2.10'; } use constant ERROR_WRONG_FATAL => q{ diff --git a/cpan/autodie/lib/autodie/exception.pm b/cpan/autodie/lib/autodie/exception.pm index 4dd7570ce8..14d5cb0f07 100644 --- a/cpan/autodie/lib/autodie/exception.pm +++ b/cpan/autodie/lib/autodie/exception.pm @@ -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. diff --git a/cpan/autodie/lib/autodie/exception/system.pm b/cpan/autodie/lib/autodie/exception/system.pm index 53e7f95229..747fea7810 100644 --- a/cpan/autodie/lib/autodie/exception/system.pm +++ b/cpan/autodie/lib/autodie/exception/system.pm @@ -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__; diff --git a/cpan/autodie/lib/autodie/hints.pm b/cpan/autodie/lib/autodie/hints.pm index 2c129ec887..89b3bc827b 100644 --- a/cpan/autodie/lib/autodie/hints.pm +++ b/cpan/autodie/lib/autodie/hints.pm @@ -5,7 +5,7 @@ use warnings; use constant PERL58 => ( $] < 5.009 ); -our $VERSION = '2.1001'; +our $VERSION = '2.10'; =head1 NAME |