From: Matt S Trout Date: Sun, 19 Apr 2009 14:52:15 +0000 (+0000) Subject: 0.08100 release X-Git-Tag: v0.08100^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=commitdiff_plain;h=6882de2b334aac0a278b1984e82ddaca2ddff2b4 0.08100 release --- diff --git a/Changes b/Changes index f87489e..3967221 100644 --- 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 diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP index 07a5968..1e9b295 100644 --- a/MANIFEST.SKIP +++ b/MANIFEST.SKIP @@ -1,3 +1,6 @@ +^(?!script/|examples/|lib/|inc/|t/|Makefile.PL$|README$|MANIFEST$|Changes$|META.yml$) + + # Avoid version control files. \bRCS\b \bCVS\b diff --git a/Makefile.PL b/Makefile.PL index 15daccf..58c0c56 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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'); diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index 5a64365..9986746 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -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 diff --git a/t/39load_namespaces_rt41083.t b/t/39load_namespaces_rt41083.t index 3b0fed1..5a6ea82 100644 --- a/t/39load_namespaces_rt41083.t +++ b/t/39load_namespaces_rt41083.t @@ -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'; diff --git a/t/lib/sqlite.sql b/t/lib/sqlite.sql index 3932c2b..6c4202a 100644 --- a/t/lib/sqlite.sql +++ b/t/lib/sqlite.sql @@ -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); --