[Catalyst-commits] r13691 - in trunk/Catalyst-Plugin-PageCache: . lib/Catalyst/Plugin

timbunce at dev.catalyst.perl.org timbunce at dev.catalyst.perl.org
Tue Nov 9 17:53:49 GMT 2010


Author: timbunce
Date: 2010-11-09 17:53:49 +0000 (Tue, 09 Nov 2010)
New Revision: 13691

Modified:
   trunk/Catalyst-Plugin-PageCache/Changes
   trunk/Catalyst-Plugin-PageCache/Makefile.PL
   trunk/Catalyst-Plugin-PageCache/lib/Catalyst/Plugin/PageCache.pm
Log:
Fixed module version number.  Require File::Path 2.07.


Modified: trunk/Catalyst-Plugin-PageCache/Changes
===================================================================
--- trunk/Catalyst-Plugin-PageCache/Changes	2010-11-05 11:03:47 UTC (rev 13690)
+++ trunk/Catalyst-Plugin-PageCache/Changes	2010-11-09 17:53:49 UTC (rev 13691)
@@ -1,6 +1,11 @@
 Revision history for Perl extension Catalyst::Plugin::PageCache
 
-0.30    2010-11-01 21:03  r13685
+0.31    2010-11-05
+        - Fixed config in test apps to silence warnings from tests.
+        - Fixed module version number.
+        - Require File::Path 2.07.
+
+0.30    2010-11-03 16:03  r13688
         - Updated tests to use Cache::FileCache instead of the deprecated ::FileCache.
           Report and patch by Rod Taylor, RT#53304 & RT#47373.
         - Fixed t/04critic.t to not fail if Test::Perl::Critic is not installed.

Modified: trunk/Catalyst-Plugin-PageCache/Makefile.PL
===================================================================
--- trunk/Catalyst-Plugin-PageCache/Makefile.PL	2010-11-05 11:03:47 UTC (rev 13690)
+++ trunk/Catalyst-Plugin-PageCache/Makefile.PL	2010-11-09 17:53:49 UTC (rev 13691)
@@ -11,6 +11,7 @@
 test_requires 'Catalyst::Plugin::Cache' => '0.10';
 test_requires 'Cache::FileCache' => 0;
 test_requires 'Cache::Cache' => '1.04'; # for Cache::FileCache (which has no version)
+test_requires 'File::Path' => '2.07';
 
 auto_install;
 resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/trunk/Catalyst-Plugin-PageCache/';

Modified: trunk/Catalyst-Plugin-PageCache/lib/Catalyst/Plugin/PageCache.pm
===================================================================
--- trunk/Catalyst-Plugin-PageCache/lib/Catalyst/Plugin/PageCache.pm	2010-11-05 11:03:47 UTC (rev 13690)
+++ trunk/Catalyst-Plugin-PageCache/lib/Catalyst/Plugin/PageCache.pm	2010-11-09 17:53:49 UTC (rev 13691)
@@ -5,7 +5,7 @@
 use MRO::Compat;
 use Digest::SHA1 ();
 
-our $VERSION = '0.23';
+our $VERSION = '0.30';
 
 # Do we need to cache the current page?
 __PACKAGE__->mk_accessors('_cache_page');




More information about the Catalyst-commits mailing list