From: Tomas Doran Date: Sun, 7 Mar 2010 20:44:47 +0000 (+0000) Subject: Checking in changes prior to tagging of version 0.09. Changelog diff is: X-Git-Tag: v0.09^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Plugin-Cache.git;a=commitdiff_plain;h=1c99d822a8a945b775b496d492f87cface32e24c Checking in changes prior to tagging of version 0.09. Changelog diff is: Index: Changes =================================================================== --- Changes (revision 13014) +++ Changes (working copy) @@ -1,3 +1,4 @@ +0.09 - Generate a warning if no config is specified, or config is specified using the old key. - Support the compute() method, and emulate it if the backend --- diff --git a/Changes b/Changes index 3251d1e..01f9817 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,4 @@ +0.09 - Generate a warning if no config is specified, or config is specified using the old key. - Support the compute() method, and emulate it if the backend diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP index d967caa..bc9b819 100644 --- a/MANIFEST.SKIP +++ b/MANIFEST.SKIP @@ -1,3 +1,5 @@ +^Catalyst-Plugin-Cache + # Avoid version control files. \bRCS\b \bCVS\b diff --git a/Makefile.PL b/Makefile.PL index 0db04db..24970e2 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -15,5 +15,4 @@ WriteMakefile( 'INSTALLDIRS' => 'site', 'EXE_FILES' => [], 'PL_FILES' => {}, - 'SIGN' => 1, ); diff --git a/lib/Catalyst/Plugin/Cache.pm b/lib/Catalyst/Plugin/Cache.pm index cf0e373..791cc95 100644 --- a/lib/Catalyst/Plugin/Cache.pm +++ b/lib/Catalyst/Plugin/Cache.pm @@ -6,7 +6,7 @@ use base qw(Class::Accessor::Fast Class::Data::Inheritable); use strict; use warnings; -our $VERSION = "0.08"; +our $VERSION = "0.09"; use Scalar::Util (); use Catalyst::Utils ();