[Bast-commits] r5912 - in DBIx-Class/0.08/trunk: . lib/DBIx t t/lib

matthewt at dev.catalyst.perl.org matthewt at dev.catalyst.perl.org
Sun Apr 19 14:52:15 GMT 2009


Author: matthewt
Date: 2009-04-19 15:52:15 +0100 (Sun, 19 Apr 2009)
New Revision: 5912

Modified:
   DBIx-Class/0.08/trunk/Changes
   DBIx-Class/0.08/trunk/MANIFEST.SKIP
   DBIx-Class/0.08/trunk/Makefile.PL
   DBIx-Class/0.08/trunk/lib/DBIx/Class.pm
   DBIx-Class/0.08/trunk/t/39load_namespaces_rt41083.t
   DBIx-Class/0.08/trunk/t/lib/sqlite.sql
Log:
0.08100 release

Modified: DBIx-Class/0.08/trunk/Changes
===================================================================
--- DBIx-Class/0.08/trunk/Changes	2009-04-19 14:07:17 UTC (rev 5911)
+++ DBIx-Class/0.08/trunk/Changes	2009-04-19 14:52:15 UTC (rev 5912)
@@ -1,5 +1,8 @@
 Revision history for DBIx::Class
 
+0.081000 2009-04-19 11:39:35 (UTC)
+        - Todo out the register_extra_source test until after shipping
+
 0.08099_08 2009-03-30 00:00:00 (UTC)
         - Fixed taint mode with load_namespaces
         - Putting IC::DateTime locale, timezone or floating_tz_ok attributes into
@@ -23,7 +26,7 @@
         - Split sql statements for deploy only if SQLT::Producer returned a scalar
           containing all statements to be executed
         - Add as_query() for ResultSet and ResultSetColumn. This makes subqueries
-          possible. See the Cookbook for details. (robkinyon, michaelr)
+          possible. See the Cookbook for details.
         - Massive rewrite of Ordered to properly handle position constraints and
           to make it more matpath-friendly
         - deploy_statements called ddl_filename with the $version and $dir arguments

Modified: DBIx-Class/0.08/trunk/MANIFEST.SKIP
===================================================================
--- DBIx-Class/0.08/trunk/MANIFEST.SKIP	2009-04-19 14:07:17 UTC (rev 5911)
+++ DBIx-Class/0.08/trunk/MANIFEST.SKIP	2009-04-19 14:52:15 UTC (rev 5912)
@@ -1,3 +1,6 @@
+^(?!script/|examples/|lib/|inc/|t/|Makefile.PL$|README$|MANIFEST$|Changes$|META.yml$)
+
+
 # Avoid version control files.
 \bRCS\b
 \bCVS\b

Modified: DBIx-Class/0.08/trunk/Makefile.PL
===================================================================
--- DBIx-Class/0.08/trunk/Makefile.PL	2009-04-19 14:07:17 UTC (rev 5911)
+++ DBIx-Class/0.08/trunk/Makefile.PL	2009-04-19 14:52:15 UTC (rev 5912)
@@ -13,7 +13,6 @@
 requires 'Scalar::Util'             => 0;
 requires 'SQL::Abstract'            => 1.51;
 requires 'SQL::Abstract::Limit'     => 0.13;
-requires 'MRO::Compat'              => 0;
 requires 'Class::C3::Componentised' => 1.0004;
 requires 'Storable'                 => 0;
 requires 'Carp::Clan'               => 0;
@@ -75,7 +74,7 @@
 if ($Module::Install::AUTHOR) {
 
   foreach my $module (keys %force_requires_if_author) {
-    requires ($module => $force_requires_if_author{$module});
+    build_requires ($module => $force_requires_if_author{$module});
   }
 
   system('pod2text lib/DBIx/Class.pm > README');

Modified: DBIx-Class/0.08/trunk/lib/DBIx/Class.pm
===================================================================
--- DBIx-Class/0.08/trunk/lib/DBIx/Class.pm	2009-04-19 14:07:17 UTC (rev 5911)
+++ DBIx-Class/0.08/trunk/lib/DBIx/Class.pm	2009-04-19 14:52:15 UTC (rev 5912)
@@ -24,7 +24,7 @@
 # i.e. first release of 0.XX *must* be 0.XX000. This avoids fBSD ports
 # brain damage and presumably various other packaging systems too
 
-$VERSION = '0.08099_08';
+$VERSION = '0.08100';
 
 $VERSION = eval $VERSION; # numify for warning-free dev releases
 

Modified: DBIx-Class/0.08/trunk/t/39load_namespaces_rt41083.t
===================================================================
--- DBIx-Class/0.08/trunk/t/39load_namespaces_rt41083.t	2009-04-19 14:07:17 UTC (rev 5911)
+++ DBIx-Class/0.08/trunk/t/39load_namespaces_rt41083.t	2009-04-19 14:52:15 UTC (rev 5912)
@@ -2,7 +2,7 @@
 
 use strict;
 use warnings;
-use Test::More;
+use Test::More skip_all => 'Postponed until after 0.08100';
 
 use lib 't/lib';
 

Modified: DBIx-Class/0.08/trunk/t/lib/sqlite.sql
===================================================================
--- DBIx-Class/0.08/trunk/t/lib/sqlite.sql	2009-04-19 14:07:17 UTC (rev 5911)
+++ DBIx-Class/0.08/trunk/t/lib/sqlite.sql	2009-04-19 14:52:15 UTC (rev 5912)
@@ -1,6 +1,6 @@
 -- 
 -- Created by SQL::Translator::Producer::SQLite
--- Created on Sun Feb 22 00:15:06 2009
+-- Created on Sun Apr 19 11:49:48 2009
 -- 
 
 
@@ -232,9 +232,11 @@
 CREATE TABLE genre (
   genreid INTEGER PRIMARY KEY NOT NULL,
   name varchar(100) NOT NULL,
-  demographicid INTEGER NOT NULL
+  demographicid integer NOT NULL
 );
 
+CREATE INDEX genre_idx_demographicid_genre ON genre (demographicid);
+
 CREATE UNIQUE INDEX genre_name_genre ON genre (name);
 
 --




More information about the Bast-commits mailing list