Skip to content

Commit

Permalink
Bump to version 2.04. Tag and release.
Browse files Browse the repository at this point in the history
  • Loading branch information
pjf committed Jul 2, 2009
1 parent fe193f2 commit 79a10c3
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,7 @@
Revision history for autodie Revision history for autodie


2.04 Thu Jul 2 18:56:57 AUSEST 2009

* TEST: Removed spurious warning about insufficient credit. * TEST: Removed spurious warning about insufficient credit.


* TEST: hints.t produces less debugging output when testing * TEST: hints.t produces less debugging output when testing
Expand Down
4 changes: 2 additions & 2 deletions lib/Fatal.pm
Original file line number Original file line 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; use constant MIN_IPC_SYS_SIMPLE_VER => 0.12;


# All the Fatal/autodie modules share the same version number. # All the Fatal/autodie modules share the same version number.
our $VERSION = '2.03'; our $VERSION = '2.04';


our $Debug ||= 0; our $Debug ||= 0;


Expand Down Expand Up @@ -98,7 +98,7 @@ my %TAGS = (
':2.01' => [qw(:default)], ':2.01' => [qw(:default)],
':2.02' => [qw(:default)], ':2.02' => [qw(:default)],
':2.03' => [qw(:default)], ':2.03' => [qw(:default)],

':2.04' => [qw(:default)],
); );


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


BEGIN { BEGIN {
$VERSION = '2.03'; $VERSION = '2.04';
} }


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


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


our $VERSION = '2.03'; our $VERSION = '2.04';


my $PACKAGE = __PACKAGE__; # Useful to have a scalar for hash keys. 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 Original file line Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use base 'autodie::exception'; use base 'autodie::exception';
use Carp qw(croak); use Carp qw(croak);


our $VERSION = '2.03'; our $VERSION = '2.04';


my $PACKAGE = __PACKAGE__; my $PACKAGE = __PACKAGE__;


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


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


our $VERSION = '2.03'; our $VERSION = '2.04';


=head1 NAME =head1 NAME
Expand Down

0 comments on commit 79a10c3

Please sign in to comment.