From: Rafael Kitover Date: Thu, 27 Aug 2009 12:18:49 +0000 (+0000) Subject: bump CX::Component::Traits dep, release X-Git-Tag: v0.28^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Model-DBIC-Schema.git;a=commitdiff_plain;h=788c27bea203bf41a44c35c7b2d584b27d86b199 bump CX::Component::Traits dep, release --- diff --git a/Changes b/Changes index a0a4c90..dbebfdb 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Perl extension Catalyst::Model::DBIC::Schema +0.28 Thu Aug 27 08:14:05 EDT 2009 + - autobox issues in dep chain, bump CX::Component::Traits dep + (caelum) + 0.27 Wed Aug 26 09:09:44 EDT 2009 - remove autobox usage due to reports of strange errors (caelum) - make schema a delegate for model, config too (caelum) diff --git a/Makefile.PL b/Makefile.PL index 078482d..72e6648 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,7 +5,7 @@ all_from 'lib/Catalyst/Model/DBIC/Schema.pm'; requires 'DBIx::Class' => '0.08107'; requires 'Catalyst::Runtime' => '5.80005'; -requires 'CatalystX::Component::Traits' => '0.09'; +requires 'CatalystX::Component::Traits' => '0.10'; # XXX remove this once the dep in DBIC is updated, needed for schema # introspection to work. diff --git a/lib/Catalyst/Helper/Model/DBIC/Schema.pm b/lib/Catalyst/Helper/Model/DBIC/Schema.pm index eac33c4..c851d68 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.27'; +our $VERSION = '0.28'; $VERSION = eval $VERSION; use Carp; diff --git a/lib/Catalyst/Model/DBIC/Schema.pm b/lib/Catalyst/Model/DBIC/Schema.pm index 30518fe..6c1c67a 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.27'; +our $VERSION = '0.28'; $VERSION = eval $VERSION; use namespace::autoclean;