Skip to content

Commit

Permalink
bumping up version, prepping for release!
Browse files Browse the repository at this point in the history
  • Loading branch information
garu committed Aug 20, 2012
1 parent c732294 commit debeb52
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
6 changes: 6 additions & 0 deletions Changes
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,11 @@
Revision history for MojoX-Log-Log4perl Revision history for MojoX-Log-Log4perl


0.06 2012-08-20
Fixed typo in pod example code (Spiros Denaxas)
Updated code to make use of Mojolicious' event emitter
(as a side effect, this module is now only compatible with
Mojolicious 2.0 and greater)

0.05 2012-08-13 0.05 2012-08-13
Log methods now return $self (Thanks Bob "Stocks" Stockdale for reporting) Log methods now return $self (Thanks Bob "Stocks" Stockdale for reporting)


Expand Down
7 changes: 4 additions & 3 deletions MANIFEST
Original file line number Original file line Diff line number Diff line change
@@ -1,10 +1,11 @@
Changes Changes
MANIFEST lib/MojoX/Log/Log4perl.pm
Makefile.PL Makefile.PL
MANIFEST This list of files
README README
lib/MojoX/Log/Log4perl.pm
t/00-load.t t/00-load.t
t/01-standard.t t/01-standard.t
t/02-justworks.t
t/03-events.t
t/pod-coverage.t t/pod-coverage.t
t/pod.t t/pod.t
META.yml Module meta-data (added by MakeMaker)
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ WriteMakefile(
PL_FILES => {}, PL_FILES => {},
PREREQ_PM => { PREREQ_PM => {
'Test::More' => 0.94, 'Test::More' => 0.94,
'Mojolicious' => 0.999920, 'Mojolicious' => 2.0,
'Log::Log4perl' => 1.25, 'Log::Log4perl' => 1.25,
}, },
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
Expand Down
2 changes: 1 addition & 1 deletion lib/MojoX/Log/Log4perl.pm
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Log::Log4perl;
use warnings; use warnings;
use strict; use strict;


our $VERSION = '0.05'; our $VERSION = '0.06';


sub new { sub new {
my ($class, $conf_file, $watch) = (@_); my ($class, $conf_file, $watch) = (@_);
Expand Down

0 comments on commit debeb52

Please sign in to comment.