From: Tomas Doran Date: Sat, 22 Oct 2011 19:35:35 +0000 (-0700) Subject: Version 5.90005 X-Git-Tag: 5.90005^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=849b1b24399427de46fc460c1f87db8508e99535;hp=859ab869f91223b635a515ede9b083df2b964961 Version 5.90005 --- diff --git a/Changes b/Changes index f4817ee..100f2da 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ # This file documents the revision history for Perl extension Catalyst. +5.90005 - 2011-10-22 13:35:00 + New features: - $c->uri_for_action can now take an array of CaptureArgs and Args diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 3e3587a..725445b 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -84,7 +84,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.90004'; +our $VERSION = '5.90005'; sub import { my ( $class, @arguments ) = @_; diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index 5566833..b2c4837 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.90004'; +our $VERSION = '5.90005'; =head1 NAME