Checking in changes prior to tagging of version 1.002. Changelog diff is: 1.002
t0m [Sat, 13 Dec 2008 11:11:05 +0000 (11:11 +0000)]
=== Changes
==================================================================
--- Changes (revision 9986)
+++ Changes (local)
@@ -1,7 +1,10 @@
+1.002 2008-12-13
+  - Add 'use Class::C3' so that the module works on the currently
+    released Catalyst version.
 1.001 2008-12-12
   - Add tests for other Accept header cases where the current code
-    will get it wrong (David Dorward)
-  - Fix all of these tests (t0m)
+    will get it wrong. (David Dorward)
+  - Fix all of these tests. (t0m)
 1.000 2008-12-12
   - First working version of the module extracted from the quick hack
     I have in every Catalyst application I've ever written.

Changes
MANIFEST.SKIP
Makefile.PL
lib/Catalyst/View/TT/XHTML.pm

diff --git a/Changes b/Changes
index 1c33147..57d8d3f 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,7 +1,10 @@
+1.002 2008-12-13
+  - Add 'use Class::C3' so that the module works on the currently 
+    released Catalyst version.
 1.001 2008-12-12
   - Add tests for other Accept header cases where the current code
-    will get it wrong (David Dorward)
-  - Fix all of these tests (t0m)
+    will get it wrong. (David Dorward)
+  - Fix all of these tests. (t0m)
 1.000 2008-12-12
   - First working version of the module extracted from the quick hack
     I have in every Catalyst application I've ever written.
index 92c4c95..f77e343 100644 (file)
@@ -6,4 +6,4 @@ MANIFEST.SKIP~
 cover_db
 Makefile$
 Makefile.old$
-.shipt
+.shipit
index 48407cd..e647192 100644 (file)
@@ -6,6 +6,7 @@ all_from 'lib/Catalyst/View/TT/XHTML.pm';
 requires 'Catalyst::Runtime';
 requires 'Catalyst::View::TT';
 requires 'HTTP::Negotiate';
+requires 'Class::C3';
 
 build_requires 'Catalyst::Action::RenderView';
 build_requires 'Test::WWW::Mechanize::Catalyst';
index e256a0f..0d22db4 100644 (file)
@@ -2,9 +2,10 @@ package Catalyst::View::TT::XHTML;
 use strict;
 use warnings;
 use HTTP::Negotiate qw(choose);
+use Class::C3;
 use base qw/Catalyst::View::TT/;
 
-our $VERSION = '1.001';
+our $VERSION = '1.002';
 
 our $variants = [
     [qw| xhtml 1.000 application/xhtml+xml |],