Checking in changes prior to tagging of version 1.000. Changelog diff is:
t0m [Fri, 12 Dec 2008 10:40:58 +0000 (10:40 +0000)]
=== Changes
==================================================================
--- Changes (revision 9978)
+++ Changes (local)
@@ -1,4 +1,4 @@
-0.001000
+1.000
   - First working version of the module extracted from the quick hack
     I have in every Catalyst application I've ever written.

\ No newline at end of file

Changes
MANIFEST.SKIP
Makefile.PL
lib/Catalyst/View/TT/XHTML.pm
t/00-load.t
t/live-test.t

diff --git a/Changes b/Changes
index 6690e74..671edc8 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,4 +1,4 @@
-0.001000
+1.000
   - First working version of the module extracted from the quick hack
     I have in every Catalyst application I've ever written.
     
\ No newline at end of file
index 8fb2024..92c4c95 100644 (file)
@@ -6,3 +6,4 @@ MANIFEST.SKIP~
 cover_db
 Makefile$
 Makefile.old$
+.shipt
index bd1d10c..05a03c4 100644 (file)
@@ -9,7 +9,6 @@ requires 'Catalyst::View::TT';
 build_requires 'Catalyst::Action::RenderView';
 build_requires 'Test::WWW::Mechanize::Catalyst';
 build_requires 'Test::More';
-build_requires 'ok';
 
 resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-View-TT-XHTML';
 
index 1a93782..3f3dd3a 100644 (file)
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use base qw/Catalyst::View::TT/;
 
-our $VERSION = '0.001000';
+our $VERSION = '1.000';
 
 sub process {
     my $self = shift;
index 7c87264..815d532 100644 (file)
@@ -3,4 +3,4 @@
 use strict;
 use warnings;
 use Test::More tests => 1;
-use ok 'Catalyst::View::TT::XHTML';
+use_ok 'Catalyst::View::TT::XHTML';
index 2de6e93..fb058e5 100644 (file)
@@ -9,7 +9,7 @@ use FindBin qw($Bin);
 use lib "$Bin/lib";
 
 # 1 make sure testapp works
-use ok 'TestApp';
+use_ok 'TestApp';
 
 # a live test against TestApp, the test application
 use Test::WWW::Mechanize::Catalyst 'TestApp';