version bumped, added kwalitee, removed old "first release" notice from pod
Brandon L. Black [Sat, 4 Mar 2006 16:20:26 +0000 (16:20 +0000)]
MANIFEST
META.yml
README
lib/Catalyst/Model/DBIC/Schema.pm
t/04kwalitee.t [new file with mode: 0644]
t/05testapp.t [moved from t/04testapp.t with 100% similarity]

index 50c246f..2c3afd7 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -10,4 +10,5 @@ README
 t/01use.t
 t/02pod.t
 t/03podcoverage.t
-t/04testapp.t
+t/04kwalitee.t
+t/05testapp.t
index 04c1aa7..a0f2aed 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 ---
 name: Catalyst-Model-DBIC-Schema
-version: 0.09
+version: 0.10
 author:
   - 'Brandon L Black, C<blblack@gmail.com>'
 abstract: DBIx::Class::Schema Model Class
@@ -22,5 +22,5 @@ provides:
     file: lib/Catalyst/Helper/Model/DBIC/SchemaLoader.pm
   Catalyst::Model::DBIC::Schema:
     file: lib/Catalyst/Model/DBIC/Schema.pm
-    version: 0.09
+    version: 0.10
 generated_by: Module::Build version 0.2611
diff --git a/README b/README
index de2eead..e35d435 100644 (file)
--- a/README
+++ b/README
@@ -48,9 +48,6 @@ SYNOPSIS
         $newconn->connection(...);
 
 DESCRIPTION
-    NOTE: This is the first public release, there's probably a higher than
-    average chance of random bugs and shortcomings: you've been warned.
-
     This is a Catalyst Model for DBIx::Class::Schema-based Models. See the
     documentation for Catalyst::Helper::Model::DBIC::Schema and
     Catalyst::Helper::Model::DBIC::SchemaLoader for information on
index cc7ed48..712f4a7 100644 (file)
@@ -6,7 +6,7 @@ use NEXT;
 use UNIVERSAL::require;
 use Carp;
 
-our $VERSION = '0.09';
+our $VERSION = '0.10';
 
 __PACKAGE__->mk_classaccessor('composed_schema');
 __PACKAGE__->mk_accessors('schema');
@@ -64,9 +64,6 @@ Catalyst::Model::DBIC::Schema - DBIx::Class::Schema Model Class
 
 =head1 DESCRIPTION
 
-NOTE: This is the first public release, there's probably a higher than
-average chance of random bugs and shortcomings: you've been warned.
-
 This is a Catalyst Model for L<DBIx::Class::Schema>-based Models.  See
 the documentation for L<Catalyst::Helper::Model::DBIC::Schema> and
 L<Catalyst::Helper::Model::DBIC::SchemaLoader> for information
diff --git a/t/04kwalitee.t b/t/04kwalitee.t
new file mode 100644 (file)
index 0000000..7576615
--- /dev/null
@@ -0,0 +1,5 @@
+use Test::More;
+
+eval { require Test::Kwalitee; Test::Kwalitee->import() };
+
+plan( skip_all => 'Test::Kwalitee not installed; skipping' ) if $@;
similarity index 100%
rename from t/04testapp.t
rename to t/05testapp.t