From: Nilson Santos Figueiredo JĂșnior Date: Tue, 21 Apr 2009 22:18:57 +0000 (+0000) Subject: Fix attribute constraint issue with newer Catalyst versions X-Git-Tag: 0.07_01~29 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7c937cccd1caf12c59b11f07ee76144f770b3ad8;hp=84616d2a8aa249873c1b4b5524234e30956eee9e;p=catagits%2FCatalyst-View-Component-SubInclude.git Fix attribute constraint issue with newer Catalyst versions Bump to 0.05 --- diff --git a/Changes b/Changes index 8bfac5d..e6a9cdf 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Catalyst-View-Component-SubInclude +0.05 Tue Apr 21 19:16:00 2009 + - Change attribute constraint from ClassName to Str to fix issue with + newer Catalyst versions + 0.04 Wed Feb 11 00:38:02 2009 - Recreate dist because the CPAN indexer doesn't like tarballs generated on Windows. diff --git a/META.yml b/META.yml index 7b13e43..5706a1a 100644 --- a/META.yml +++ b/META.yml @@ -22,4 +22,4 @@ requires: namespace::clean: 0 resources: license: http://dev.perl.org/licenses/ -version: 0.04 +version: 0.05 diff --git a/README b/README index df5db01..b091700 100644 --- a/README +++ b/README @@ -3,7 +3,7 @@ NAME views VERSION - Version 0.04 + Version 0.05 DESCRIPTION "Catalyst::View::Component::SubInclude" allows you to include content in diff --git a/lib/Catalyst/View/Component/SubInclude.pm b/lib/Catalyst/View/Component/SubInclude.pm index 20f3de5..e4505e0 100644 --- a/lib/Catalyst/View/Component/SubInclude.pm +++ b/lib/Catalyst/View/Component/SubInclude.pm @@ -10,11 +10,11 @@ Catalyst::View::Component::SubInclude - Use subincludes in your Catalyst views =head1 VERSION -Version 0.04 +Version 0.05 =cut -our $VERSION = '0.04'; +our $VERSION = '0.05'; =head1 SYNOPSIS @@ -104,7 +104,7 @@ in runtime. It expects a fully qualified class name. has 'subinclude_plugin' => ( is => 'rw', - isa => 'ClassName' + isa => 'Str' ); around 'new' => sub { diff --git a/lib/Catalyst/View/Component/SubInclude/ESI.pm b/lib/Catalyst/View/Component/SubInclude/ESI.pm index 2393c2c..25ca97a 100644 --- a/lib/Catalyst/View/Component/SubInclude/ESI.pm +++ b/lib/Catalyst/View/Component/SubInclude/ESI.pm @@ -8,11 +8,11 @@ Catalyst::View::Component::SubInclude::ESI - Edge Side Includes (ESI) plugin for =head1 VERSION -Version 0.04 +Version 0.05 =cut -our $VERSION = '0.04'; +our $VERSION = '0.05'; =head1 SYNOPSIS diff --git a/lib/Catalyst/View/Component/SubInclude/SubRequest.pm b/lib/Catalyst/View/Component/SubInclude/SubRequest.pm index be96658..4b997c0 100644 --- a/lib/Catalyst/View/Component/SubInclude/SubRequest.pm +++ b/lib/Catalyst/View/Component/SubInclude/SubRequest.pm @@ -11,11 +11,11 @@ Catalyst::View::Component::SubInclude::SubRequest - Sub-requests plugin for C::V =head1 VERSION -Version 0.04 +Version 0.05 =cut -our $VERSION = '0.04'; +our $VERSION = '0.05'; =head1 SYNOPSIS diff --git a/lib/Catalyst/View/Component/SubInclude/Visit.pm b/lib/Catalyst/View/Component/SubInclude/Visit.pm index c50d9ec..52ed67d 100644 --- a/lib/Catalyst/View/Component/SubInclude/Visit.pm +++ b/lib/Catalyst/View/Component/SubInclude/Visit.pm @@ -11,11 +11,11 @@ Catalyst::View::Component::SubInclude::Visit - visit() plugin for C::V::Componen =head1 VERSION -Version 0.04 +Version 0.05 =cut -our $VERSION = '0.04'; +our $VERSION = '0.05'; =head1 SYNOPSIS