From: Marcus Ramberg Date: Fri, 17 Oct 2008 12:28:06 +0000 (+0000) Subject: Prepare for new dev release X-Git-Tag: 5.8000_03~16 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=73e131a9b88da13657dbebf049a6c9cf18a31b83 Prepare for new dev release --- diff --git a/Changes b/Changes index 7cc8a47..66f1207 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,6 @@ # This file documents the revision history for Perl extension Catalyst. +5.8000_03 2008-10-14 14:13:00 - Fix forwarding to Catalyst::Action objects (Rafael Kitover). - Fix links to the mailing lists (RT #39754 and Florian Ragwitz). - Use Class::MOP instead of Class::Inspector (Florian Ragwitz). diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 0e95451..66477ec 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -76,7 +76,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.8000_02'; +our $VERSION = '5.8000_03'; sub import { my ( $class, @arguments ) = @_; diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index 0207112..447f440 100644 --- a/lib/Catalyst/Runtime.pm +++ b/lib/Catalyst/Runtime.pm @@ -7,7 +7,7 @@ BEGIN { require 5.008001; } # Remember to update this in Catalyst as well! -our $VERSION='5.8000_02'; +our $VERSION='5.8000_03'; $VERSION= eval $VERSION;