diff --git a/Changes b/Changes index 67cf6cb..6ba461d 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Perl extension Catalyst::View::JSON +0.21 Thu Oct 18 13:53:47 PDT 2007 + - Update JSON::Any dependency to 1.11 + (Thanks to typester and perigrin) + 0.20 Wed Aug 29 03:23:27 PDT 2007 - Fixed POD config 'V::JSON' to 'View::JSON' (Thanks to Matt S Trout) diff --git a/Makefile.PL b/Makefile.PL index 6b01959..baabacd 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -6,7 +6,7 @@ all_from 'lib/Catalyst/View/JSON.pm'; build_requires 'Test::More'; build_requires $_ for qw( JSON JSON::Parser JSON::Converter ); -requires 'JSON::Any'; +requires 'JSON::Any', 1.11; requires 'Catalyst', 5.60; auto_include; diff --git a/lib/Catalyst/View/JSON.pm b/lib/Catalyst/View/JSON.pm index 0c28d78..4498fc7 100644 --- a/lib/Catalyst/View/JSON.pm +++ b/lib/Catalyst/View/JSON.pm @@ -1,7 +1,7 @@ package Catalyst::View::JSON; use strict; -our $VERSION = '0.20'; +our $VERSION = '0.21'; use base qw( Catalyst::View ); use Encode ();