Skip to content

Commit

Permalink
bump version to 2.24
Browse files Browse the repository at this point in the history
  • Loading branch information
autarch committed Sep 13, 2009
1 parent 8a97251 commit d6dca8b
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion lib/Log/Dispatch.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use base qw( Log::Dispatch::Base );
use Params::Validate qw(validate_with ARRAYREF CODEREF);
use Carp ();

our $VERSION = '2.23';
our $VERSION = '2.24';
our %LEVELS;


Expand Down
2 changes: 1 addition & 1 deletion lib/Log/Dispatch/ApacheLog.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use base qw( Log::Dispatch::Output );
use Params::Validate qw(validate);
Params::Validate::validation_options( allow_extra => 1 );

our $VERSION = '2.23';
our $VERSION = '2.24';


BEGIN
Expand Down
2 changes: 1 addition & 1 deletion lib/Log/Dispatch/Base.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Log::Dispatch::Base;
use strict;
use warnings;

our $VERSION = '2.23';
our $VERSION = '2.24';


sub _get_callbacks
Expand Down
2 changes: 1 addition & 1 deletion lib/Log/Dispatch/Email.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use base qw( Log::Dispatch::Output );
use Params::Validate qw(validate SCALAR ARRAYREF BOOLEAN);
Params::Validate::validation_options( allow_extra => 1 );

our $VERSION = '2.23';
our $VERSION = '2.24';

# need to untaint this value
my ($program) = $0 =~ /(.+)/;
Expand Down
2 changes: 1 addition & 1 deletion lib/Log/Dispatch/Email/MIMELite.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use base qw( Log::Dispatch::Email );

use MIME::Lite;

our $VERSION = '2.23';
our $VERSION = '2.24';


sub send_email
Expand Down
2 changes: 1 addition & 1 deletion lib/Log/Dispatch/Email/MailSend.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use base qw( Log::Dispatch::Email );

use Mail::Send;

our $VERSION = '2.23';
our $VERSION = '2.24';

sub send_email
{
Expand Down
2 changes: 1 addition & 1 deletion lib/Log/Dispatch/Email/MailSender.pm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use base qw( Log::Dispatch::Email );

use Mail::Sender ();

our $VERSION = '2.23';
our $VERSION = '2.24';

sub new
{
Expand Down
2 changes: 1 addition & 1 deletion lib/Log/Dispatch/Email/MailSendmail.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use base qw( Log::Dispatch::Email );

use Mail::Sendmail ();

our $VERSION = '2.23';
our $VERSION = '2.24';


sub send_email
Expand Down
2 changes: 1 addition & 1 deletion lib/Log/Dispatch/File.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use base qw( Log::Dispatch::Output );
use Params::Validate qw(validate SCALAR BOOLEAN);
Params::Validate::validation_options( allow_extra => 1 );

our $VERSION = '2.23';
our $VERSION = '2.24';

# Prevents death later on if IO::File can't export this constant.
*O_APPEND = \&APPEND unless defined &O_APPEND;
Expand Down
2 changes: 1 addition & 1 deletion lib/Log/Dispatch/File/Locked.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use base qw( Log::Dispatch::File );

use Fcntl qw(:DEFAULT :flock);

our $VERSION = '2.23';
our $VERSION = '2.24';


sub _open_file
Expand Down
2 changes: 1 addition & 1 deletion lib/Log/Dispatch/Handle.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use base qw( Log::Dispatch::Output );
use Params::Validate qw(validate SCALAR ARRAYREF BOOLEAN);
Params::Validate::validation_options( allow_extra => 1 );

our $VERSION = '2.23';
our $VERSION = '2.24';

sub new
{
Expand Down
2 changes: 1 addition & 1 deletion lib/Log/Dispatch/Null.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Log::Dispatch::Output;

use base qw( Log::Dispatch::Output );

our $VERSION = '2.23';
our $VERSION = '2.24';


sub new
Expand Down
2 changes: 1 addition & 1 deletion lib/Log/Dispatch/Output.pm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Params::Validate::validation_options( allow_extra => 1 );

use Carp ();

our $VERSION = '2.23';
our $VERSION = '2.24';

my $level_names = [ qw( debug info notice warning error critical alert emergency ) ];
my $ln = 0;
Expand Down
2 changes: 1 addition & 1 deletion lib/Log/Dispatch/Screen.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use base qw( Log::Dispatch::Output );
use Params::Validate qw(validate BOOLEAN);
Params::Validate::validation_options( allow_extra => 1 );

our $VERSION = '2.23';
our $VERSION = '2.24';


sub new
Expand Down
2 changes: 1 addition & 1 deletion lib/Log/Dispatch/Syslog.pm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Params::Validate::validation_options( allow_extra => 1 );

use Sys::Syslog 0.16 ();

our $VERSION = '2.23';
our $VERSION = '2.24';

sub new
{
Expand Down

0 comments on commit d6dca8b

Please sign in to comment.