From: Rafael Kitover Date: Fri, 19 Jun 2009 15:42:15 +0000 (+0000) Subject: fix dep, new release X-Git-Tag: v0.26~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Model-DBIC-Schema.git;a=commitdiff_plain;h=35d1e41557c88463226e3c08ce67f9c3013d0109 fix dep, new release --- diff --git a/Changes b/Changes index bf937f4..4d6eb4e 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension Catalyst::Model::DBIC::Schema +0.25 Fri Jun 19 08:35:38 PDT 2009 + - fix dep on Tie::IxHash that made tests fail + - add more attributes to ::Replicated trait - Fixed infinte loop if SQLite connect_info has only a DSN (dandv, RT #47101) 0.24 Tue Jun 16 06:18:58 PDT 2009 diff --git a/Makefile.PL b/Makefile.PL index a0f7f2b..faa185d 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -12,6 +12,7 @@ requires 'MooseX::Types'; requires 'namespace::autoclean'; requires 'Carp::Clan'; requires 'List::MoreUtils'; +requires 'Tie::IxHash'; test_requires 'Test::More'; test_requires 'Test::Exception'; @@ -19,7 +20,6 @@ test_requires 'Test::Exception'; feature 'Catalyst::Helper support', -default => 0, 'Catalyst::Devel' => '1.0', - 'Tie::IxHash' => 0, 'DBIx::Class::Schema::Loader' => '0.04005'; feature 'Caching support', diff --git a/lib/Catalyst/Helper/Model/DBIC/Schema.pm b/lib/Catalyst/Helper/Model/DBIC/Schema.pm index 1b7f591..b078a33 100644 --- a/lib/Catalyst/Helper/Model/DBIC/Schema.pm +++ b/lib/Catalyst/Helper/Model/DBIC/Schema.pm @@ -4,7 +4,7 @@ use namespace::autoclean; use Moose; no warnings 'uninitialized'; -our $VERSION = '0.24'; +our $VERSION = '0.25'; use Carp; use Tie::IxHash (); diff --git a/lib/Catalyst/Model/DBIC/Schema.pm b/lib/Catalyst/Model/DBIC/Schema.pm index e4d8e91..dece52f 100644 --- a/lib/Catalyst/Model/DBIC/Schema.pm +++ b/lib/Catalyst/Model/DBIC/Schema.pm @@ -5,7 +5,7 @@ use mro 'c3'; extends 'Catalyst::Model'; with 'CatalystX::Component::Traits'; -our $VERSION = '0.24'; +our $VERSION = '0.25'; use namespace::autoclean; use Carp::Clan '^Catalyst::Model::DBIC::Schema';