From: Florian Ragwitz Date: Sun, 29 Mar 2009 19:02:59 +0000 (+0000) Subject: Version 5.71001. X-Git-Tag: 5.71001^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=cf0b6c0cb55b65a14f7ed39c0c4dab9db53bf1e5 Version 5.71001. --- diff --git a/Changes b/Changes index 3a2e560..2719493 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ # This file documents the revision history for Perl extension Catalyst. -5.71001 UNRELEASED +5.71001 2009-03-26 22:52:14 - Add the Catalyst::Dispatcher->dispatch_type method (ash) - Support Moose components so that attribute defaults work and BUILD methods are correctly called (t0m) diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 9df1276..5d96074 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -64,7 +64,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.71000'; +our $VERSION = '5.71001'; sub import { my ( $class, @arguments ) = @_; diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index 26861b4..1951a91 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.71000'; +our $VERSION='5.71001'; $VERSION= eval $VERSION;