From: Florian Ragwitz Date: Thu, 4 Feb 2010 06:18:46 +0000 (+0000) Subject: Version 5.80020. X-Git-Tag: 5.80020^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=1bebcac61bb8a8decc34b48cf823b5004c32fd9c Version 5.80020. --- diff --git a/Changes b/Changes index b0a04fb..9023525 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ # This file documents the revision history for Perl extension Catalyst. +5.80020 2010-02-04 06:51:18 + + New features: + - Allow components to specify additional components to be set up by + overriding the expand_modules method. (Oliver Charles) + 5.80019 2010-01-29 01:04:09 Bug fixed: diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 24e45bd..25f4caf 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -78,7 +78,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.80019'; +our $VERSION = '5.80020'; $VERSION = eval $VERSION; sub import { diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index b1bbaae..cc994d2 100644 --- a/lib/Catalyst/Runtime.pm +++ b/lib/Catalyst/Runtime.pm @@ -7,7 +7,7 @@ BEGIN { require 5.008004; } # Remember to update this in Catalyst as well! -our $VERSION='5.80019'; +our $VERSION='5.80020'; $VERSION = eval $VERSION;