Skip to content

Commit

Permalink
Increment to 2.06_01 and release
Browse files Browse the repository at this point in the history
  • Loading branch information
pjf committed Jul 24, 2009
1 parent 9a9413c commit 32bdc67
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Revision history for autodie

2.06_01 Thu Jul 23 18:46:47 PDT 2009

* FEATURE: Added ->eval_error to autodie::exception, which
stores the contents of $@ at the time autodie throws its
own exception. This is useful when dealing with modules
Expand Down
3 changes: 2 additions & 1 deletion lib/Fatal.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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.06';
our $VERSION = '2.06_01';

our $Debug ||= 0;

Expand Down Expand Up @@ -101,6 +101,7 @@ my %TAGS = (
':2.04' => [qw(:default)],
':2.05' => [qw(:default)],
':2.06' => [qw(:default)],
':2.06_01' => [qw(:default)],
);

$TAGS{':all'} = [ keys %TAGS ];
Expand Down
2 changes: 1 addition & 1 deletion lib/autodie.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ our @ISA = qw(Fatal);
our $VERSION;

BEGIN {
$VERSION = '2.06';
$VERSION = '2.06_01';
}

use constant ERROR_WRONG_FATAL => q{
Expand Down
2 changes: 1 addition & 1 deletion lib/autodie/exception.pm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use overload

use if ($] >= 5.010), overload => '~~' => "matches";

our $VERSION = '2.06';
our $VERSION = '2.06_01';

my $PACKAGE = __PACKAGE__; # Useful to have a scalar for hash keys.

Expand Down
2 changes: 1 addition & 1 deletion lib/autodie/exception/system.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use base 'autodie::exception';
use Carp qw(croak);

our $VERSION = '2.06';
our $VERSION = '2.06_01';

my $PACKAGE = __PACKAGE__;

Expand Down
2 changes: 1 addition & 1 deletion lib/autodie/hints.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;

use constant PERL58 => ( $] < 5.009 );

our $VERSION = '2.06';
our $VERSION = '2.06_01';

=head1 NAME
Expand Down

0 comments on commit 32bdc67

Please sign in to comment.