Checking in changes prior to tagging of version 0.08. Changelog diff is: v0.08
Tomas Doran [Tue, 10 Feb 2009 09:53:49 +0000 (09:53 +0000)]
Index: Changes
===================================================================
--- Changes (revision 9258)
+++ Changes (working copy)
@@ -1,3 +1,6 @@
+0.08
+        - Forgot to add MRO::Compat to Makefile.PL, fail.
+
0.07
- Switch from NEXT to MRO::Compat.
- Change config key from 'cache' to 'Plugin::Cache', old key

.shipit [new file with mode: 0644]
Changes
MANIFEST.SKIP
Makefile.PL
lib/Catalyst/Plugin/Cache.pm

diff --git a/.shipit b/.shipit
new file mode 100644 (file)
index 0000000..cfbbdb5
--- /dev/null
+++ b/.shipit
@@ -0,0 +1,5 @@
+# auto-generated shipit config file.
+steps = FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit, Tag, MakeDist, UploadCPAN
+
+svn.tagpattern = http://dev.catalyst.perl.org/repos/Catalyst/tags/Catalyst-Plugin-Cache/%v
+CheckChangeLog.files = Changes
diff --git a/Changes b/Changes
index 7a23267..4de27b3 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,6 @@
+0.08
+        - Forgot to add MRO::Compat to Makefile.PL, fail.
+
 0.07
         - Switch from NEXT to MRO::Compat.
         - Change config key from 'cache' to 'Plugin::Cache', old key
index a319ce2..d967caa 100644 (file)
@@ -27,3 +27,5 @@
 
 # Hate M::B
 \bBuild.PL$
+
+^.shipit$
index 1cbef18..0db04db 100644 (file)
@@ -9,6 +9,7 @@ WriteMakefile(
         'Test::Deep'      => 0,
         'Test::Exception' => 0,
         'Test::More'      => 0,
+        'MRO::Compat'     => 0,
        'ok'              => 0,
    },
     'INSTALLDIRS' => 'site',
index 1e14c92..959c480 100644 (file)
@@ -6,7 +6,7 @@ use base qw(Class::Accessor::Fast Class::Data::Inheritable);
 use strict;
 use warnings;
 
-our $VERSION = "0.07";
+our $VERSION = "0.08";
 
 use Scalar::Util ();
 use Catalyst::Utils ();