add dep for MooseX::NonMoose for the use_moose=1 option, release v0.43
Rafael Kitover [Sun, 25 Jul 2010 01:01:17 +0000 (01:01 +0000)]
Changes
Makefile.PL
lib/Catalyst/Helper/Model/DBIC/Schema.pm
lib/Catalyst/Model/DBIC/Schema.pm

diff --git a/Changes b/Changes
index 09ed79a..477216a 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension Catalyst::Model::DBIC::Schema
 
+0.43  Sun Jul 25 01:00:34 UTC 2010
+        - add dep for MooseX::NonMoose for the use_moose=1 option
+
 0.42  Sat Jul 24 23:14:27 UTC 2010
         - add use_moose=1 to loader options by default for create=static
 
index 05410c4..5b8aba6 100644 (file)
@@ -21,7 +21,9 @@ test_requires 'Test::Exception';
 feature 'Catalyst::Helper support',
     -default                      => 0,
     'Catalyst::Devel'             => '1.0',
-    'DBIx::Class::Schema::Loader' => '0.04005';
+    'DBIx::Class::Schema::Loader' => '0.04005',
+    'MooseX::NonMoose'            => 0,
+;
 
 feature 'Caching support',
     -default                      => 0,
index d10e76a..32a663a 100644 (file)
@@ -4,7 +4,7 @@ use namespace::autoclean;
 use Moose;
 no warnings 'uninitialized';
 
-our $VERSION = '0.42';
+our $VERSION = '0.43';
 $VERSION = eval $VERSION;
 
 use Carp;
index 3de4782..427e867 100644 (file)
@@ -5,7 +5,7 @@ use mro 'c3';
 extends 'Catalyst::Model';
 with 'CatalystX::Component::Traits';
 
-our $VERSION = '0.42';
+our $VERSION = '0.43';
 $VERSION = eval $VERSION;
 
 use namespace::autoclean;