From b883887b58733684fc5c9e3330499a2ac0721497 Mon Sep 17 00:00:00 2001 From: Tatsuhiko Miyagawa Date: Thu, 18 Oct 2007 20:55:37 +0000 Subject: [PATCH] Checking in changes prior to tagging of version 0.21. Changelog diff is: === Changes ================================================================== --- Changes (revision 6884) +++ Changes (local) @@ -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) --- Changes | 4 ++++ Makefile.PL | 2 +- lib/Catalyst/View/JSON.pm | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) 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 ();