From: Tomas Doran Date: Tue, 22 Nov 2011 20:36:29 +0000 (+0000) Subject: Version 5.90007 X-Git-Tag: 5.90007^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=00341d8110ed6405a08e717cc38d5931b414e2a0 Version 5.90007 --- diff --git a/Changes b/Changes index ebf1078..b17fa35 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ # This file documents the revision history for Perl extension Catalyst. +5.90007 - 2011-11-22 20:35:00 + New features: - Implement a match_captures hook which, if it exists on an action, is called with the $ctx and \@captures and is expected to return diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index c4d915a..6c32146 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.90006'; +our $VERSION = '5.90007'; sub import { my ( $class, @arguments ) = @_; diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index 7ac1375..34e3edc 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.90006'; +our $VERSION = '5.90007'; =head1 NAME