0.08100 release v0.08100
Matt S Trout [Sun, 19 Apr 2009 14:52:15 +0000 (14:52 +0000)]
Changes
MANIFEST.SKIP
Makefile.PL
lib/DBIx/Class.pm
t/39load_namespaces_rt41083.t
t/lib/sqlite.sql

diff --git a/Changes b/Changes
index f87489e..3967221 100644 (file)
--- a/Changes
+++ b/Changes
@@ -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 @@ Revision history for DBIx::Class
         - 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
index 07a5968..1e9b295 100644 (file)
@@ -1,3 +1,6 @@
+^(?!script/|examples/|lib/|inc/|t/|Makefile.PL$|README$|MANIFEST$|Changes$|META.yml$)
+
+
 # Avoid version control files.
 \bRCS\b
 \bCVS\b
index 15daccf..58c0c56 100644 (file)
@@ -13,7 +13,6 @@ requires 'Data::Page'               => 2.00;
 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 @@ my %force_requires_if_author = (
 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');
index 5a64365..9986746 100644 (file)
@@ -24,7 +24,7 @@ sub component_base_class { 'DBIx::Class' }
 # 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
 
index 3b0fed1..5a6ea82 100644 (file)
@@ -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';
 
index 3932c2b..6c4202a 100644 (file)
@@ -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 INDEX fourkeys_to_twokeys_idx_t_artist_t_cd_fourkeys_to ON fourkeys_to_tw
 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);
 
 --